e065cc810eecfd82b6d343be2b59135731cdac9c
[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     (* Key material / passphrase.  Eventually we should treat this
178      * as sensitive and mlock it into physical RAM.  However this
179      * is highly complex because of all the places that XDR-encoded
180      * strings can end up.  So currently the only difference from
181      * 'String' is the way that guestfish requests these parameters
182      * from the user.
183      *)
184   | Key of string
185
186 type flags =
187   | ProtocolLimitWarning  (* display warning about protocol size limits *)
188   | DangerWillRobinson    (* flags particularly dangerous commands *)
189   | FishAlias of string   (* provide an alias for this cmd in guestfish *)
190   | FishOutput of fish_output_t (* how to display output in guestfish *)
191   | NotInFish             (* do not export via guestfish *)
192   | NotInDocs             (* do not add this function to documentation *)
193   | DeprecatedBy of string (* function is deprecated, use .. instead *)
194   | Optional of string    (* function is part of an optional group *)
195
196 and fish_output_t =
197   | FishOutputOctal       (* for int return, print in octal *)
198   | FishOutputHexadecimal (* for int return, print in hex *)
199
200 (* You can supply zero or as many tests as you want per API call.
201  *
202  * Note that the test environment has 3 block devices, of size 500MB,
203  * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc), and
204  * a fourth ISO block device with some known files on it (/dev/sdd).
205  *
206  * Note for partitioning purposes, the 500MB device has 1015 cylinders.
207  * Number of cylinders was 63 for IDE emulated disks with precisely
208  * the same size.  How exactly this is calculated is a mystery.
209  *
210  * The ISO block device (/dev/sdd) comes from images/test.iso.
211  *
212  * To be able to run the tests in a reasonable amount of time,
213  * the virtual machine and block devices are reused between tests.
214  * So don't try testing kill_subprocess :-x
215  *
216  * Between each test we blockdev-setrw, umount-all, lvm-remove-all.
217  *
218  * Don't assume anything about the previous contents of the block
219  * devices.  Use 'Init*' to create some initial scenarios.
220  *
221  * You can add a prerequisite clause to any individual test.  This
222  * is a run-time check, which, if it fails, causes the test to be
223  * skipped.  Useful if testing a command which might not work on
224  * all variations of libguestfs builds.  A test that has prerequisite
225  * of 'Always' is run unconditionally.
226  *
227  * In addition, packagers can skip individual tests by setting the
228  * environment variables:     eg:
229  *   SKIP_TEST_<CMD>_<NUM>=1  SKIP_TEST_COMMAND_3=1  (skips test #3 of command)
230  *   SKIP_TEST_<CMD>=1        SKIP_TEST_ZEROFREE=1   (skips all zerofree tests)
231  *)
232 type tests = (test_init * test_prereq * test) list
233 and test =
234     (* Run the command sequence and just expect nothing to fail. *)
235   | TestRun of seq
236
237     (* Run the command sequence and expect the output of the final
238      * command to be the string.
239      *)
240   | TestOutput of seq * string
241
242     (* Run the command sequence and expect the output of the final
243      * command to be the list of strings.
244      *)
245   | TestOutputList of seq * string list
246
247     (* Run the command sequence and expect the output of the final
248      * command to be the list of block devices (could be either
249      * "/dev/sd.." or "/dev/hd.." form - we don't check the 5th
250      * character of each string).
251      *)
252   | TestOutputListOfDevices of seq * string list
253
254     (* Run the command sequence and expect the output of the final
255      * command to be the integer.
256      *)
257   | TestOutputInt of seq * int
258
259     (* Run the command sequence and expect the output of the final
260      * command to be <op> <int>, eg. ">=", "1".
261      *)
262   | TestOutputIntOp of seq * string * int
263
264     (* Run the command sequence and expect the output of the final
265      * command to be a true value (!= 0 or != NULL).
266      *)
267   | TestOutputTrue of seq
268
269     (* Run the command sequence and expect the output of the final
270      * command to be a false value (== 0 or == NULL, but not an error).
271      *)
272   | TestOutputFalse of seq
273
274     (* Run the command sequence and expect the output of the final
275      * command to be a list of the given length (but don't care about
276      * content).
277      *)
278   | TestOutputLength of seq * int
279
280     (* Run the command sequence and expect the output of the final
281      * command to be a buffer (RBufferOut), ie. string + size.
282      *)
283   | TestOutputBuffer of seq * string
284
285     (* Run the command sequence and expect the output of the final
286      * command to be a structure.
287      *)
288   | TestOutputStruct of seq * test_field_compare list
289
290     (* Run the command sequence and expect the final command (only)
291      * to fail.
292      *)
293   | TestLastFail of seq
294
295 and test_field_compare =
296   | CompareWithInt of string * int
297   | CompareWithIntOp of string * string * int
298   | CompareWithString of string * string
299   | CompareFieldsIntEq of string * string
300   | CompareFieldsStrEq of string * string
301
302 (* Test prerequisites. *)
303 and test_prereq =
304     (* Test always runs. *)
305   | Always
306
307     (* Test is currently disabled - eg. it fails, or it tests some
308      * unimplemented feature.
309      *)
310   | Disabled
311
312     (* 'string' is some C code (a function body) that should return
313      * true or false.  The test will run if the code returns true.
314      *)
315   | If of string
316
317     (* As for 'If' but the test runs _unless_ the code returns true. *)
318   | Unless of string
319
320     (* Run the test only if 'string' is available in the daemon. *)
321   | IfAvailable of string
322
323 (* Some initial scenarios for testing. *)
324 and test_init =
325     (* Do nothing, block devices could contain random stuff including
326      * LVM PVs, and some filesystems might be mounted.  This is usually
327      * a bad idea.
328      *)
329   | InitNone
330
331     (* Block devices are empty and no filesystems are mounted. *)
332   | InitEmpty
333
334     (* /dev/sda contains a single partition /dev/sda1, with random
335      * content.  /dev/sdb and /dev/sdc may have random content.
336      * No LVM.
337      *)
338   | InitPartition
339
340     (* /dev/sda contains a single partition /dev/sda1, which is formatted
341      * as ext2, empty [except for lost+found] and mounted on /.
342      * /dev/sdb and /dev/sdc may have random content.
343      * No LVM.
344      *)
345   | InitBasicFS
346
347     (* /dev/sda:
348      *   /dev/sda1 (is a PV):
349      *     /dev/VG/LV (size 8MB):
350      *       formatted as ext2, empty [except for lost+found], mounted on /
351      * /dev/sdb and /dev/sdc may have random content.
352      *)
353   | InitBasicFSonLVM
354
355     (* /dev/sdd (the ISO, see images/ directory in source)
356      * is mounted on /
357      *)
358   | InitISOFS
359
360 (* Sequence of commands for testing. *)
361 and seq = cmd list
362 and cmd = string list
363
364 (* Note about long descriptions: When referring to another
365  * action, use the format C<guestfs_other> (ie. the full name of
366  * the C function).  This will be replaced as appropriate in other
367  * language bindings.
368  *
369  * Apart from that, long descriptions are just perldoc paragraphs.
370  *)
371
372 (* Generate a random UUID (used in tests). *)
373 let uuidgen () =
374   let chan = open_process_in "uuidgen" in
375   let uuid = input_line chan in
376   (match close_process_in chan with
377    | WEXITED 0 -> ()
378    | WEXITED _ ->
379        failwith "uuidgen: process exited with non-zero status"
380    | WSIGNALED _ | WSTOPPED _ ->
381        failwith "uuidgen: process signalled or stopped by signal"
382   );
383   uuid
384
385 (* These test functions are used in the language binding tests. *)
386
387 let test_all_args = [
388   String "str";
389   OptString "optstr";
390   StringList "strlist";
391   Bool "b";
392   Int "integer";
393   Int64 "integer64";
394   FileIn "filein";
395   FileOut "fileout";
396   BufferIn "bufferin";
397 ]
398
399 let test_all_rets = [
400   (* except for RErr, which is tested thoroughly elsewhere *)
401   "test0rint",         RInt "valout";
402   "test0rint64",       RInt64 "valout";
403   "test0rbool",        RBool "valout";
404   "test0rconststring", RConstString "valout";
405   "test0rconstoptstring", RConstOptString "valout";
406   "test0rstring",      RString "valout";
407   "test0rstringlist",  RStringList "valout";
408   "test0rstruct",      RStruct ("valout", "lvm_pv");
409   "test0rstructlist",  RStructList ("valout", "lvm_pv");
410   "test0rhashtable",   RHashtable "valout";
411 ]
412
413 let test_functions = [
414   ("test0", (RErr, test_all_args), -1, [NotInFish; NotInDocs],
415    [],
416    "internal test function - do not use",
417    "\
418 This is an internal test function which is used to test whether
419 the automatically generated bindings can handle every possible
420 parameter type correctly.
421
422 It echos the contents of each parameter to stdout.
423
424 You probably don't want to call this function.");
425 ] @ List.flatten (
426   List.map (
427     fun (name, ret) ->
428       [(name, (ret, [String "val"]), -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 It converts string C<val> to the return type.
437
438 You probably don't want to call this function.");
439        (name ^ "err", (ret, []), -1, [NotInFish; NotInDocs],
440         [],
441         "internal test function - do not use",
442         "\
443 This is an internal test function which is used to test whether
444 the automatically generated bindings can handle every possible
445 return type correctly.
446
447 This function always returns an error.
448
449 You probably don't want to call this function.")]
450   ) test_all_rets
451 )
452
453 (* non_daemon_functions are any functions which don't get processed
454  * in the daemon, eg. functions for setting and getting local
455  * configuration values.
456  *)
457
458 let non_daemon_functions = test_functions @ [
459   ("launch", (RErr, []), -1, [FishAlias "run"],
460    [],
461    "launch the qemu subprocess",
462    "\
463 Internally libguestfs is implemented by running a virtual machine
464 using L<qemu(1)>.
465
466 You should call this after configuring the handle
467 (eg. adding drives) but before performing any actions.");
468
469   ("wait_ready", (RErr, []), -1, [NotInFish],
470    [],
471    "wait until the qemu subprocess launches (no op)",
472    "\
473 This function is a no op.
474
475 In versions of the API E<lt> 1.0.71 you had to call this function
476 just after calling C<guestfs_launch> to wait for the launch
477 to complete.  However this is no longer necessary because
478 C<guestfs_launch> now does the waiting.
479
480 If you see any calls to this function in code then you can just
481 remove them, unless you want to retain compatibility with older
482 versions of the API.");
483
484   ("kill_subprocess", (RErr, []), -1, [],
485    [],
486    "kill the qemu subprocess",
487    "\
488 This kills the qemu subprocess.  You should never need to call this.");
489
490   ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
491    [],
492    "add an image to examine or modify",
493    "\
494 This function adds a virtual machine disk image C<filename> to the
495 guest.  The first time you call this function, the disk appears as IDE
496 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
497 so on.
498
499 You don't necessarily need to be root when using libguestfs.  However
500 you obviously do need sufficient permissions to access the filename
501 for whatever operations you want to perform (ie. read access if you
502 just want to read the image or write access if you want to modify the
503 image).
504
505 This is equivalent to the qemu parameter
506 C<-drive file=filename,cache=off,if=...>.
507
508 C<cache=off> is omitted in cases where it is not supported by
509 the underlying filesystem.
510
511 C<if=...> is set at compile time by the configuration option
512 C<./configure --with-drive-if=...>.  In the rare case where you
513 might need to change this at run time, use C<guestfs_add_drive_with_if>
514 or C<guestfs_add_drive_ro_with_if>.
515
516 Note that this call checks for the existence of C<filename>.  This
517 stops you from specifying other types of drive which are supported
518 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
519 the general C<guestfs_config> call instead.");
520
521   ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
522    [],
523    "add a CD-ROM disk image to examine",
524    "\
525 This function adds a virtual CD-ROM disk image to the guest.
526
527 This is equivalent to the qemu parameter C<-cdrom filename>.
528
529 Notes:
530
531 =over 4
532
533 =item *
534
535 This call checks for the existence of C<filename>.  This
536 stops you from specifying other types of drive which are supported
537 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
538 the general C<guestfs_config> call instead.
539
540 =item *
541
542 If you just want to add an ISO file (often you use this as an
543 efficient way to transfer large files into the guest), then you
544 should probably use C<guestfs_add_drive_ro> instead.
545
546 =back");
547
548   ("add_drive_ro", (RErr, [String "filename"]), -1, [FishAlias "add-ro"],
549    [],
550    "add a drive in snapshot mode (read-only)",
551    "\
552 This adds a drive in snapshot mode, making it effectively
553 read-only.
554
555 Note that writes to the device are allowed, and will be seen for
556 the duration of the guestfs handle, but they are written
557 to a temporary file which is discarded as soon as the guestfs
558 handle is closed.  We don't currently have any method to enable
559 changes to be committed, although qemu can support this.
560
561 This is equivalent to the qemu parameter
562 C<-drive file=filename,snapshot=on,if=...>.
563
564 C<if=...> is set at compile time by the configuration option
565 C<./configure --with-drive-if=...>.  In the rare case where you
566 might need to change this at run time, use C<guestfs_add_drive_with_if>
567 or C<guestfs_add_drive_ro_with_if>.
568
569 Note that this call checks for the existence of C<filename>.  This
570 stops you from specifying other types of drive which are supported
571 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
572 the general C<guestfs_config> call instead.");
573
574   ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
575    [],
576    "add qemu parameters",
577    "\
578 This can be used to add arbitrary qemu command line parameters
579 of the form C<-param value>.  Actually it's not quite arbitrary - we
580 prevent you from setting some parameters which would interfere with
581 parameters that we use.
582
583 The first character of C<param> string must be a C<-> (dash).
584
585 C<value> can be NULL.");
586
587   ("set_qemu", (RErr, [OptString "qemu"]), -1, [FishAlias "qemu"],
588    [],
589    "set the qemu binary",
590    "\
591 Set the qemu binary that we will use.
592
593 The default is chosen when the library was compiled by the
594 configure script.
595
596 You can also override this by setting the C<LIBGUESTFS_QEMU>
597 environment variable.
598
599 Setting C<qemu> to C<NULL> restores the default qemu binary.
600
601 Note that you should call this function as early as possible
602 after creating the handle.  This is because some pre-launch
603 operations depend on testing qemu features (by running C<qemu -help>).
604 If the qemu binary changes, we don't retest features, and
605 so you might see inconsistent results.  Using the environment
606 variable C<LIBGUESTFS_QEMU> is safest of all since that picks
607 the qemu binary at the same time as the handle is created.");
608
609   ("get_qemu", (RConstString "qemu", []), -1, [],
610    [InitNone, Always, TestRun (
611       [["get_qemu"]])],
612    "get the qemu binary",
613    "\
614 Return the current qemu binary.
615
616 This is always non-NULL.  If it wasn't set already, then this will
617 return the default qemu binary name.");
618
619   ("set_path", (RErr, [OptString "searchpath"]), -1, [FishAlias "path"],
620    [],
621    "set the search path",
622    "\
623 Set the path that libguestfs searches for kernel and initrd.img.
624
625 The default is C<$libdir/guestfs> unless overridden by setting
626 C<LIBGUESTFS_PATH> environment variable.
627
628 Setting C<path> to C<NULL> restores the default path.");
629
630   ("get_path", (RConstString "path", []), -1, [],
631    [InitNone, Always, TestRun (
632       [["get_path"]])],
633    "get the search path",
634    "\
635 Return the current search path.
636
637 This is always non-NULL.  If it wasn't set already, then this will
638 return the default path.");
639
640   ("set_append", (RErr, [OptString "append"]), -1, [FishAlias "append"],
641    [],
642    "add options to kernel command line",
643    "\
644 This function is used to add additional options to the
645 guest kernel command line.
646
647 The default is C<NULL> unless overridden by setting
648 C<LIBGUESTFS_APPEND> environment variable.
649
650 Setting C<append> to C<NULL> means I<no> additional options
651 are passed (libguestfs always adds a few of its own).");
652
653   ("get_append", (RConstOptString "append", []), -1, [],
654    (* This cannot be tested with the current framework.  The
655     * function can return NULL in normal operations, which the
656     * test framework interprets as an error.
657     *)
658    [],
659    "get the additional kernel options",
660    "\
661 Return the additional kernel options which are added to the
662 guest kernel command line.
663
664 If C<NULL> then no options are added.");
665
666   ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
667    [],
668    "set autosync mode",
669    "\
670 If C<autosync> is true, this enables autosync.  Libguestfs will make a
671 best effort attempt to run C<guestfs_umount_all> followed by
672 C<guestfs_sync> when the handle is closed
673 (also if the program exits without closing handles).
674
675 This is disabled by default (except in guestfish where it is
676 enabled by default).");
677
678   ("get_autosync", (RBool "autosync", []), -1, [],
679    [InitNone, Always, TestRun (
680       [["get_autosync"]])],
681    "get autosync mode",
682    "\
683 Get the autosync flag.");
684
685   ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
686    [],
687    "set verbose mode",
688    "\
689 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
690
691 Verbose messages are disabled unless the environment variable
692 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
693
694   ("get_verbose", (RBool "verbose", []), -1, [],
695    [],
696    "get verbose mode",
697    "\
698 This returns the verbose messages flag.");
699
700   ("is_ready", (RBool "ready", []), -1, [],
701    [InitNone, Always, TestOutputTrue (
702       [["is_ready"]])],
703    "is ready to accept commands",
704    "\
705 This returns true iff this handle is ready to accept commands
706 (in the C<READY> state).
707
708 For more information on states, see L<guestfs(3)>.");
709
710   ("is_config", (RBool "config", []), -1, [],
711    [InitNone, Always, TestOutputFalse (
712       [["is_config"]])],
713    "is in configuration state",
714    "\
715 This returns true iff this handle is being configured
716 (in the C<CONFIG> state).
717
718 For more information on states, see L<guestfs(3)>.");
719
720   ("is_launching", (RBool "launching", []), -1, [],
721    [InitNone, Always, TestOutputFalse (
722       [["is_launching"]])],
723    "is launching subprocess",
724    "\
725 This returns true iff this handle is launching the subprocess
726 (in the C<LAUNCHING> state).
727
728 For more information on states, see L<guestfs(3)>.");
729
730   ("is_busy", (RBool "busy", []), -1, [],
731    [InitNone, Always, TestOutputFalse (
732       [["is_busy"]])],
733    "is busy processing a command",
734    "\
735 This returns true iff this handle is busy processing a command
736 (in the C<BUSY> state).
737
738 For more information on states, see L<guestfs(3)>.");
739
740   ("get_state", (RInt "state", []), -1, [],
741    [],
742    "get the current state",
743    "\
744 This returns the current state as an opaque integer.  This is
745 only useful for printing debug and internal error messages.
746
747 For more information on states, see L<guestfs(3)>.");
748
749   ("set_memsize", (RErr, [Int "memsize"]), -1, [FishAlias "memsize"],
750    [InitNone, Always, TestOutputInt (
751       [["set_memsize"; "500"];
752        ["get_memsize"]], 500)],
753    "set memory allocated to the qemu subprocess",
754    "\
755 This sets the memory size in megabytes allocated to the
756 qemu subprocess.  This only has any effect if called before
757 C<guestfs_launch>.
758
759 You can also change this by setting the environment
760 variable C<LIBGUESTFS_MEMSIZE> before the handle is
761 created.
762
763 For more information on the architecture of libguestfs,
764 see L<guestfs(3)>.");
765
766   ("get_memsize", (RInt "memsize", []), -1, [],
767    [InitNone, Always, TestOutputIntOp (
768       [["get_memsize"]], ">=", 256)],
769    "get memory allocated to the qemu subprocess",
770    "\
771 This gets the memory size in megabytes allocated to the
772 qemu subprocess.
773
774 If C<guestfs_set_memsize> was not called
775 on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
776 then this returns the compiled-in default value for memsize.
777
778 For more information on the architecture of libguestfs,
779 see L<guestfs(3)>.");
780
781   ("get_pid", (RInt "pid", []), -1, [FishAlias "pid"],
782    [InitNone, Always, TestOutputIntOp (
783       [["get_pid"]], ">=", 1)],
784    "get PID of qemu subprocess",
785    "\
786 Return the process ID of the qemu subprocess.  If there is no
787 qemu subprocess, then this will return an error.
788
789 This is an internal call used for debugging and testing.");
790
791   ("version", (RStruct ("version", "version"), []), -1, [],
792    [InitNone, Always, TestOutputStruct (
793       [["version"]], [CompareWithInt ("major", 1)])],
794    "get the library version number",
795    "\
796 Return the libguestfs version number that the program is linked
797 against.
798
799 Note that because of dynamic linking this is not necessarily
800 the version of libguestfs that you compiled against.  You can
801 compile the program, and then at runtime dynamically link
802 against a completely different C<libguestfs.so> library.
803
804 This call was added in version C<1.0.58>.  In previous
805 versions of libguestfs there was no way to get the version
806 number.  From C code you can use dynamic linker functions
807 to find out if this symbol exists (if it doesn't, then
808 it's an earlier version).
809
810 The call returns a structure with four elements.  The first
811 three (C<major>, C<minor> and C<release>) are numbers and
812 correspond to the usual version triplet.  The fourth element
813 (C<extra>) is a string and is normally empty, but may be
814 used for distro-specific information.
815
816 To construct the original version string:
817 C<$major.$minor.$release$extra>
818
819 See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>.
820
821 I<Note:> Don't use this call to test for availability
822 of features.  In enterprise distributions we backport
823 features from later versions into earlier versions,
824 making this an unreliable way to test for features.
825 Use C<guestfs_available> instead.");
826
827   ("set_selinux", (RErr, [Bool "selinux"]), -1, [FishAlias "selinux"],
828    [InitNone, Always, TestOutputTrue (
829       [["set_selinux"; "true"];
830        ["get_selinux"]])],
831    "set SELinux enabled or disabled at appliance boot",
832    "\
833 This sets the selinux flag that is passed to the appliance
834 at boot time.  The default is C<selinux=0> (disabled).
835
836 Note that if SELinux is enabled, it is always in
837 Permissive mode (C<enforcing=0>).
838
839 For more information on the architecture of libguestfs,
840 see L<guestfs(3)>.");
841
842   ("get_selinux", (RBool "selinux", []), -1, [],
843    [],
844    "get SELinux enabled flag",
845    "\
846 This returns the current setting of the selinux flag which
847 is passed to the appliance at boot time.  See C<guestfs_set_selinux>.
848
849 For more information on the architecture of libguestfs,
850 see L<guestfs(3)>.");
851
852   ("set_trace", (RErr, [Bool "trace"]), -1, [FishAlias "trace"],
853    [InitNone, Always, TestOutputFalse (
854       [["set_trace"; "false"];
855        ["get_trace"]])],
856    "enable or disable command traces",
857    "\
858 If the command trace flag is set to 1, then commands are
859 printed on stderr before they are executed in a format
860 which is very similar to the one used by guestfish.  In
861 other words, you can run a program with this enabled, and
862 you will get out a script which you can feed to guestfish
863 to perform the same set of actions.
864
865 If you want to trace C API calls into libguestfs (and
866 other libraries) then possibly a better way is to use
867 the external ltrace(1) command.
868
869 Command traces are disabled unless the environment variable
870 C<LIBGUESTFS_TRACE> is defined and set to C<1>.");
871
872   ("get_trace", (RBool "trace", []), -1, [],
873    [],
874    "get command trace enabled flag",
875    "\
876 Return the command trace flag.");
877
878   ("set_direct", (RErr, [Bool "direct"]), -1, [FishAlias "direct"],
879    [InitNone, Always, TestOutputFalse (
880       [["set_direct"; "false"];
881        ["get_direct"]])],
882    "enable or disable direct appliance mode",
883    "\
884 If the direct appliance mode flag is enabled, then stdin and
885 stdout are passed directly through to the appliance once it
886 is launched.
887
888 One consequence of this is that log messages aren't caught
889 by the library and handled by C<guestfs_set_log_message_callback>,
890 but go straight to stdout.
891
892 You probably don't want to use this unless you know what you
893 are doing.
894
895 The default is disabled.");
896
897   ("get_direct", (RBool "direct", []), -1, [],
898    [],
899    "get direct appliance mode flag",
900    "\
901 Return the direct appliance mode flag.");
902
903   ("set_recovery_proc", (RErr, [Bool "recoveryproc"]), -1, [FishAlias "recovery-proc"],
904    [InitNone, Always, TestOutputTrue (
905       [["set_recovery_proc"; "true"];
906        ["get_recovery_proc"]])],
907    "enable or disable the recovery process",
908    "\
909 If this is called with the parameter C<false> then
910 C<guestfs_launch> does not create a recovery process.  The
911 purpose of the recovery process is to stop runaway qemu
912 processes in the case where the main program aborts abruptly.
913
914 This only has any effect if called before C<guestfs_launch>,
915 and the default is true.
916
917 About the only time when you would want to disable this is
918 if the main process will fork itself into the background
919 (\"daemonize\" itself).  In this case the recovery process
920 thinks that the main program has disappeared and so kills
921 qemu, which is not very helpful.");
922
923   ("get_recovery_proc", (RBool "recoveryproc", []), -1, [],
924    [],
925    "get recovery process enabled flag",
926    "\
927 Return the recovery process enabled flag.");
928
929   ("add_drive_with_if", (RErr, [String "filename"; String "iface"]), -1, [],
930    [],
931    "add a drive specifying the QEMU block emulation to use",
932    "\
933 This is the same as C<guestfs_add_drive> but it allows you
934 to specify the QEMU interface emulation to use at run time.");
935
936   ("add_drive_ro_with_if", (RErr, [String "filename"; String "iface"]), -1, [],
937    [],
938    "add a drive read-only specifying the QEMU block emulation to use",
939    "\
940 This is the same as C<guestfs_add_drive_ro> but it allows you
941 to specify the QEMU interface emulation to use at run time.");
942
943 ]
944
945 (* daemon_functions are any functions which cause some action
946  * to take place in the daemon.
947  *)
948
949 let daemon_functions = [
950   ("mount", (RErr, [Device "device"; String "mountpoint"]), 1, [],
951    [InitEmpty, Always, TestOutput (
952       [["part_disk"; "/dev/sda"; "mbr"];
953        ["mkfs"; "ext2"; "/dev/sda1"];
954        ["mount"; "/dev/sda1"; "/"];
955        ["write"; "/new"; "new file contents"];
956        ["cat"; "/new"]], "new file contents")],
957    "mount a guest disk at a position in the filesystem",
958    "\
959 Mount a guest disk at a position in the filesystem.  Block devices
960 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
961 the guest.  If those block devices contain partitions, they will have
962 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
963 names can be used.
964
965 The rules are the same as for L<mount(2)>:  A filesystem must
966 first be mounted on C</> before others can be mounted.  Other
967 filesystems can only be mounted on directories which already
968 exist.
969
970 The mounted filesystem is writable, if we have sufficient permissions
971 on the underlying device.
972
973 B<Important note:>
974 When you use this call, the filesystem options C<sync> and C<noatime>
975 are set implicitly.  This was originally done because we thought it
976 would improve reliability, but it turns out that I<-o sync> has a
977 very large negative performance impact and negligible effect on
978 reliability.  Therefore we recommend that you avoid using
979 C<guestfs_mount> in any code that needs performance, and instead
980 use C<guestfs_mount_options> (use an empty string for the first
981 parameter if you don't want any options).");
982
983   ("sync", (RErr, []), 2, [],
984    [ InitEmpty, Always, TestRun [["sync"]]],
985    "sync disks, writes are flushed through to the disk image",
986    "\
987 This syncs the disk, so that any writes are flushed through to the
988 underlying disk image.
989
990 You should always call this if you have modified a disk image, before
991 closing the handle.");
992
993   ("touch", (RErr, [Pathname "path"]), 3, [],
994    [InitBasicFS, Always, TestOutputTrue (
995       [["touch"; "/new"];
996        ["exists"; "/new"]])],
997    "update file timestamps or create a new file",
998    "\
999 Touch acts like the L<touch(1)> command.  It can be used to
1000 update the timestamps on a file, or, if the file does not exist,
1001 to create a new zero-length file.
1002
1003 This command only works on regular files, and will fail on other
1004 file types such as directories, symbolic links, block special etc.");
1005
1006   ("cat", (RString "content", [Pathname "path"]), 4, [ProtocolLimitWarning],
1007    [InitISOFS, Always, TestOutput (
1008       [["cat"; "/known-2"]], "abcdef\n")],
1009    "list the contents of a file",
1010    "\
1011 Return the contents of the file named C<path>.
1012
1013 Note that this function cannot correctly handle binary files
1014 (specifically, files containing C<\\0> character which is treated
1015 as end of string).  For those you need to use the C<guestfs_read_file>
1016 or C<guestfs_download> functions which have a more complex interface.");
1017
1018   ("ll", (RString "listing", [Pathname "directory"]), 5, [],
1019    [], (* XXX Tricky to test because it depends on the exact format
1020         * of the 'ls -l' command, which changes between F10 and F11.
1021         *)
1022    "list the files in a directory (long format)",
1023    "\
1024 List the files in C<directory> (relative to the root directory,
1025 there is no cwd) in the format of 'ls -la'.
1026
1027 This command is mostly useful for interactive sessions.  It
1028 is I<not> intended that you try to parse the output string.");
1029
1030   ("ls", (RStringList "listing", [Pathname "directory"]), 6, [],
1031    [InitBasicFS, Always, TestOutputList (
1032       [["touch"; "/new"];
1033        ["touch"; "/newer"];
1034        ["touch"; "/newest"];
1035        ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
1036    "list the files in a directory",
1037    "\
1038 List the files in C<directory> (relative to the root directory,
1039 there is no cwd).  The '.' and '..' entries are not returned, but
1040 hidden files are shown.
1041
1042 This command is mostly useful for interactive sessions.  Programs
1043 should probably use C<guestfs_readdir> instead.");
1044
1045   ("list_devices", (RStringList "devices", []), 7, [],
1046    [InitEmpty, Always, TestOutputListOfDevices (
1047       [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"; "/dev/sdd"])],
1048    "list the block devices",
1049    "\
1050 List all the block devices.
1051
1052 The full block device names are returned, eg. C</dev/sda>");
1053
1054   ("list_partitions", (RStringList "partitions", []), 8, [],
1055    [InitBasicFS, Always, TestOutputListOfDevices (
1056       [["list_partitions"]], ["/dev/sda1"]);
1057     InitEmpty, Always, TestOutputListOfDevices (
1058       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1059        ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1060    "list the partitions",
1061    "\
1062 List all the partitions detected on all block devices.
1063
1064 The full partition device names are returned, eg. C</dev/sda1>
1065
1066 This does not return logical volumes.  For that you will need to
1067 call C<guestfs_lvs>.");
1068
1069   ("pvs", (RStringList "physvols", []), 9, [Optional "lvm2"],
1070    [InitBasicFSonLVM, Always, TestOutputListOfDevices (
1071       [["pvs"]], ["/dev/sda1"]);
1072     InitEmpty, Always, TestOutputListOfDevices (
1073       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1074        ["pvcreate"; "/dev/sda1"];
1075        ["pvcreate"; "/dev/sda2"];
1076        ["pvcreate"; "/dev/sda3"];
1077        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1078    "list the LVM physical volumes (PVs)",
1079    "\
1080 List all the physical volumes detected.  This is the equivalent
1081 of the L<pvs(8)> command.
1082
1083 This returns a list of just the device names that contain
1084 PVs (eg. C</dev/sda2>).
1085
1086 See also C<guestfs_pvs_full>.");
1087
1088   ("vgs", (RStringList "volgroups", []), 10, [Optional "lvm2"],
1089    [InitBasicFSonLVM, Always, TestOutputList (
1090       [["vgs"]], ["VG"]);
1091     InitEmpty, Always, TestOutputList (
1092       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1093        ["pvcreate"; "/dev/sda1"];
1094        ["pvcreate"; "/dev/sda2"];
1095        ["pvcreate"; "/dev/sda3"];
1096        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1097        ["vgcreate"; "VG2"; "/dev/sda3"];
1098        ["vgs"]], ["VG1"; "VG2"])],
1099    "list the LVM volume groups (VGs)",
1100    "\
1101 List all the volumes groups detected.  This is the equivalent
1102 of the L<vgs(8)> command.
1103
1104 This returns a list of just the volume group names that were
1105 detected (eg. C<VolGroup00>).
1106
1107 See also C<guestfs_vgs_full>.");
1108
1109   ("lvs", (RStringList "logvols", []), 11, [Optional "lvm2"],
1110    [InitBasicFSonLVM, Always, TestOutputList (
1111       [["lvs"]], ["/dev/VG/LV"]);
1112     InitEmpty, Always, TestOutputList (
1113       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1114        ["pvcreate"; "/dev/sda1"];
1115        ["pvcreate"; "/dev/sda2"];
1116        ["pvcreate"; "/dev/sda3"];
1117        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1118        ["vgcreate"; "VG2"; "/dev/sda3"];
1119        ["lvcreate"; "LV1"; "VG1"; "50"];
1120        ["lvcreate"; "LV2"; "VG1"; "50"];
1121        ["lvcreate"; "LV3"; "VG2"; "50"];
1122        ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
1123    "list the LVM logical volumes (LVs)",
1124    "\
1125 List all the logical volumes detected.  This is the equivalent
1126 of the L<lvs(8)> command.
1127
1128 This returns a list of the logical volume device names
1129 (eg. C</dev/VolGroup00/LogVol00>).
1130
1131 See also C<guestfs_lvs_full>.");
1132
1133   ("pvs_full", (RStructList ("physvols", "lvm_pv"), []), 12, [Optional "lvm2"],
1134    [], (* XXX how to test? *)
1135    "list the LVM physical volumes (PVs)",
1136    "\
1137 List all the physical volumes detected.  This is the equivalent
1138 of the L<pvs(8)> command.  The \"full\" version includes all fields.");
1139
1140   ("vgs_full", (RStructList ("volgroups", "lvm_vg"), []), 13, [Optional "lvm2"],
1141    [], (* XXX how to test? *)
1142    "list the LVM volume groups (VGs)",
1143    "\
1144 List all the volumes groups detected.  This is the equivalent
1145 of the L<vgs(8)> command.  The \"full\" version includes all fields.");
1146
1147   ("lvs_full", (RStructList ("logvols", "lvm_lv"), []), 14, [Optional "lvm2"],
1148    [], (* XXX how to test? *)
1149    "list the LVM logical volumes (LVs)",
1150    "\
1151 List all the logical volumes detected.  This is the equivalent
1152 of the L<lvs(8)> command.  The \"full\" version includes all fields.");
1153
1154   ("read_lines", (RStringList "lines", [Pathname "path"]), 15, [],
1155    [InitISOFS, Always, TestOutputList (
1156       [["read_lines"; "/known-4"]], ["abc"; "def"; "ghi"]);
1157     InitISOFS, Always, TestOutputList (
1158       [["read_lines"; "/empty"]], [])],
1159    "read file as lines",
1160    "\
1161 Return the contents of the file named C<path>.
1162
1163 The file contents are returned as a list of lines.  Trailing
1164 C<LF> and C<CRLF> character sequences are I<not> returned.
1165
1166 Note that this function cannot correctly handle binary files
1167 (specifically, files containing C<\\0> character which is treated
1168 as end of line).  For those you need to use the C<guestfs_read_file>
1169 function which has a more complex interface.");
1170
1171   ("aug_init", (RErr, [Pathname "root"; Int "flags"]), 16, [Optional "augeas"],
1172    [], (* XXX Augeas code needs tests. *)
1173    "create a new Augeas handle",
1174    "\
1175 Create a new Augeas handle for editing configuration files.
1176 If there was any previous Augeas handle associated with this
1177 guestfs session, then it is closed.
1178
1179 You must call this before using any other C<guestfs_aug_*>
1180 commands.
1181
1182 C<root> is the filesystem root.  C<root> must not be NULL,
1183 use C</> instead.
1184
1185 The flags are the same as the flags defined in
1186 E<lt>augeas.hE<gt>, the logical I<or> of the following
1187 integers:
1188
1189 =over 4
1190
1191 =item C<AUG_SAVE_BACKUP> = 1
1192
1193 Keep the original file with a C<.augsave> extension.
1194
1195 =item C<AUG_SAVE_NEWFILE> = 2
1196
1197 Save changes into a file with extension C<.augnew>, and
1198 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
1199
1200 =item C<AUG_TYPE_CHECK> = 4
1201
1202 Typecheck lenses (can be expensive).
1203
1204 =item C<AUG_NO_STDINC> = 8
1205
1206 Do not use standard load path for modules.
1207
1208 =item C<AUG_SAVE_NOOP> = 16
1209
1210 Make save a no-op, just record what would have been changed.
1211
1212 =item C<AUG_NO_LOAD> = 32
1213
1214 Do not load the tree in C<guestfs_aug_init>.
1215
1216 =back
1217
1218 To close the handle, you can call C<guestfs_aug_close>.
1219
1220 To find out more about Augeas, see L<http://augeas.net/>.");
1221
1222   ("aug_close", (RErr, []), 26, [Optional "augeas"],
1223    [], (* XXX Augeas code needs tests. *)
1224    "close the current Augeas handle",
1225    "\
1226 Close the current Augeas handle and free up any resources
1227 used by it.  After calling this, you have to call
1228 C<guestfs_aug_init> again before you can use any other
1229 Augeas functions.");
1230
1231   ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [Optional "augeas"],
1232    [], (* XXX Augeas code needs tests. *)
1233    "define an Augeas variable",
1234    "\
1235 Defines an Augeas variable C<name> whose value is the result
1236 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
1237 undefined.
1238
1239 On success this returns the number of nodes in C<expr>, or
1240 C<0> if C<expr> evaluates to something which is not a nodeset.");
1241
1242   ("aug_defnode", (RStruct ("nrnodescreated", "int_bool"), [String "name"; String "expr"; String "val"]), 18, [Optional "augeas"],
1243    [], (* XXX Augeas code needs tests. *)
1244    "define an Augeas node",
1245    "\
1246 Defines a variable C<name> whose value is the result of
1247 evaluating C<expr>.
1248
1249 If C<expr> evaluates to an empty nodeset, a node is created,
1250 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
1251 C<name> will be the nodeset containing that single node.
1252
1253 On success this returns a pair containing the
1254 number of nodes in the nodeset, and a boolean flag
1255 if a node was created.");
1256
1257   ("aug_get", (RString "val", [String "augpath"]), 19, [Optional "augeas"],
1258    [], (* XXX Augeas code needs tests. *)
1259    "look up the value of an Augeas path",
1260    "\
1261 Look up the value associated with C<path>.  If C<path>
1262 matches exactly one node, the C<value> is returned.");
1263
1264   ("aug_set", (RErr, [String "augpath"; String "val"]), 20, [Optional "augeas"],
1265    [], (* XXX Augeas code needs tests. *)
1266    "set Augeas path to value",
1267    "\
1268 Set the value associated with C<path> to C<val>.
1269
1270 In the Augeas API, it is possible to clear a node by setting
1271 the value to NULL.  Due to an oversight in the libguestfs API
1272 you cannot do that with this call.  Instead you must use the
1273 C<guestfs_aug_clear> call.");
1274
1275   ("aug_insert", (RErr, [String "augpath"; String "label"; Bool "before"]), 21, [Optional "augeas"],
1276    [], (* XXX Augeas code needs tests. *)
1277    "insert a sibling Augeas node",
1278    "\
1279 Create a new sibling C<label> for C<path>, inserting it into
1280 the tree before or after C<path> (depending on the boolean
1281 flag C<before>).
1282
1283 C<path> must match exactly one existing node in the tree, and
1284 C<label> must be a label, ie. not contain C</>, C<*> or end
1285 with a bracketed index C<[N]>.");
1286
1287   ("aug_rm", (RInt "nrnodes", [String "augpath"]), 22, [Optional "augeas"],
1288    [], (* XXX Augeas code needs tests. *)
1289    "remove an Augeas path",
1290    "\
1291 Remove C<path> and all of its children.
1292
1293 On success this returns the number of entries which were removed.");
1294
1295   ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [Optional "augeas"],
1296    [], (* XXX Augeas code needs tests. *)
1297    "move Augeas node",
1298    "\
1299 Move the node C<src> to C<dest>.  C<src> must match exactly
1300 one node.  C<dest> is overwritten if it exists.");
1301
1302   ("aug_match", (RStringList "matches", [String "augpath"]), 24, [Optional "augeas"],
1303    [], (* XXX Augeas code needs tests. *)
1304    "return Augeas nodes which match augpath",
1305    "\
1306 Returns a list of paths which match the path expression C<path>.
1307 The returned paths are sufficiently qualified so that they match
1308 exactly one node in the current tree.");
1309
1310   ("aug_save", (RErr, []), 25, [Optional "augeas"],
1311    [], (* XXX Augeas code needs tests. *)
1312    "write all pending Augeas changes to disk",
1313    "\
1314 This writes all pending changes to disk.
1315
1316 The flags which were passed to C<guestfs_aug_init> affect exactly
1317 how files are saved.");
1318
1319   ("aug_load", (RErr, []), 27, [Optional "augeas"],
1320    [], (* XXX Augeas code needs tests. *)
1321    "load files into the tree",
1322    "\
1323 Load files into the tree.
1324
1325 See C<aug_load> in the Augeas documentation for the full gory
1326 details.");
1327
1328   ("aug_ls", (RStringList "matches", [String "augpath"]), 28, [Optional "augeas"],
1329    [], (* XXX Augeas code needs tests. *)
1330    "list Augeas nodes under augpath",
1331    "\
1332 This is just a shortcut for listing C<guestfs_aug_match>
1333 C<path/*> and sorting the resulting nodes into alphabetical order.");
1334
1335   ("rm", (RErr, [Pathname "path"]), 29, [],
1336    [InitBasicFS, Always, TestRun
1337       [["touch"; "/new"];
1338        ["rm"; "/new"]];
1339     InitBasicFS, Always, TestLastFail
1340       [["rm"; "/new"]];
1341     InitBasicFS, Always, TestLastFail
1342       [["mkdir"; "/new"];
1343        ["rm"; "/new"]]],
1344    "remove a file",
1345    "\
1346 Remove the single file C<path>.");
1347
1348   ("rmdir", (RErr, [Pathname "path"]), 30, [],
1349    [InitBasicFS, Always, TestRun
1350       [["mkdir"; "/new"];
1351        ["rmdir"; "/new"]];
1352     InitBasicFS, Always, TestLastFail
1353       [["rmdir"; "/new"]];
1354     InitBasicFS, Always, TestLastFail
1355       [["touch"; "/new"];
1356        ["rmdir"; "/new"]]],
1357    "remove a directory",
1358    "\
1359 Remove the single directory C<path>.");
1360
1361   ("rm_rf", (RErr, [Pathname "path"]), 31, [],
1362    [InitBasicFS, Always, TestOutputFalse
1363       [["mkdir"; "/new"];
1364        ["mkdir"; "/new/foo"];
1365        ["touch"; "/new/foo/bar"];
1366        ["rm_rf"; "/new"];
1367        ["exists"; "/new"]]],
1368    "remove a file or directory recursively",
1369    "\
1370 Remove the file or directory C<path>, recursively removing the
1371 contents if its a directory.  This is like the C<rm -rf> shell
1372 command.");
1373
1374   ("mkdir", (RErr, [Pathname "path"]), 32, [],
1375    [InitBasicFS, Always, TestOutputTrue
1376       [["mkdir"; "/new"];
1377        ["is_dir"; "/new"]];
1378     InitBasicFS, Always, TestLastFail
1379       [["mkdir"; "/new/foo/bar"]]],
1380    "create a directory",
1381    "\
1382 Create a directory named C<path>.");
1383
1384   ("mkdir_p", (RErr, [Pathname "path"]), 33, [],
1385    [InitBasicFS, Always, TestOutputTrue
1386       [["mkdir_p"; "/new/foo/bar"];
1387        ["is_dir"; "/new/foo/bar"]];
1388     InitBasicFS, Always, TestOutputTrue
1389       [["mkdir_p"; "/new/foo/bar"];
1390        ["is_dir"; "/new/foo"]];
1391     InitBasicFS, Always, TestOutputTrue
1392       [["mkdir_p"; "/new/foo/bar"];
1393        ["is_dir"; "/new"]];
1394     (* Regression tests for RHBZ#503133: *)
1395     InitBasicFS, Always, TestRun
1396       [["mkdir"; "/new"];
1397        ["mkdir_p"; "/new"]];
1398     InitBasicFS, Always, TestLastFail
1399       [["touch"; "/new"];
1400        ["mkdir_p"; "/new"]]],
1401    "create a directory and parents",
1402    "\
1403 Create a directory named C<path>, creating any parent directories
1404 as necessary.  This is like the C<mkdir -p> shell command.");
1405
1406   ("chmod", (RErr, [Int "mode"; Pathname "path"]), 34, [],
1407    [], (* XXX Need stat command to test *)
1408    "change file mode",
1409    "\
1410 Change the mode (permissions) of C<path> to C<mode>.  Only
1411 numeric modes are supported.
1412
1413 I<Note>: When using this command from guestfish, C<mode>
1414 by default would be decimal, unless you prefix it with
1415 C<0> to get octal, ie. use C<0700> not C<700>.
1416
1417 The mode actually set is affected by the umask.");
1418
1419   ("chown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 35, [],
1420    [], (* XXX Need stat command to test *)
1421    "change file owner and group",
1422    "\
1423 Change the file owner to C<owner> and group to C<group>.
1424
1425 Only numeric uid and gid are supported.  If you want to use
1426 names, you will need to locate and parse the password file
1427 yourself (Augeas support makes this relatively easy).");
1428
1429   ("exists", (RBool "existsflag", [Pathname "path"]), 36, [],
1430    [InitISOFS, Always, TestOutputTrue (
1431       [["exists"; "/empty"]]);
1432     InitISOFS, Always, TestOutputTrue (
1433       [["exists"; "/directory"]])],
1434    "test if file or directory exists",
1435    "\
1436 This returns C<true> if and only if there is a file, directory
1437 (or anything) with the given C<path> name.
1438
1439 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
1440
1441   ("is_file", (RBool "fileflag", [Pathname "path"]), 37, [],
1442    [InitISOFS, Always, TestOutputTrue (
1443       [["is_file"; "/known-1"]]);
1444     InitISOFS, Always, TestOutputFalse (
1445       [["is_file"; "/directory"]])],
1446    "test if file exists",
1447    "\
1448 This returns C<true> if and only if there is a file
1449 with the given C<path> name.  Note that it returns false for
1450 other objects like directories.
1451
1452 See also C<guestfs_stat>.");
1453
1454   ("is_dir", (RBool "dirflag", [Pathname "path"]), 38, [],
1455    [InitISOFS, Always, TestOutputFalse (
1456       [["is_dir"; "/known-3"]]);
1457     InitISOFS, Always, TestOutputTrue (
1458       [["is_dir"; "/directory"]])],
1459    "test if file exists",
1460    "\
1461 This returns C<true> if and only if there is a directory
1462 with the given C<path> name.  Note that it returns false for
1463 other objects like files.
1464
1465 See also C<guestfs_stat>.");
1466
1467   ("pvcreate", (RErr, [Device "device"]), 39, [Optional "lvm2"],
1468    [InitEmpty, Always, TestOutputListOfDevices (
1469       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1470        ["pvcreate"; "/dev/sda1"];
1471        ["pvcreate"; "/dev/sda2"];
1472        ["pvcreate"; "/dev/sda3"];
1473        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1474    "create an LVM physical volume",
1475    "\
1476 This creates an LVM physical volume on the named C<device>,
1477 where C<device> should usually be a partition name such
1478 as C</dev/sda1>.");
1479
1480   ("vgcreate", (RErr, [String "volgroup"; DeviceList "physvols"]), 40, [Optional "lvm2"],
1481    [InitEmpty, Always, TestOutputList (
1482       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1483        ["pvcreate"; "/dev/sda1"];
1484        ["pvcreate"; "/dev/sda2"];
1485        ["pvcreate"; "/dev/sda3"];
1486        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1487        ["vgcreate"; "VG2"; "/dev/sda3"];
1488        ["vgs"]], ["VG1"; "VG2"])],
1489    "create an LVM volume group",
1490    "\
1491 This creates an LVM volume group called C<volgroup>
1492 from the non-empty list of physical volumes C<physvols>.");
1493
1494   ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [Optional "lvm2"],
1495    [InitEmpty, Always, TestOutputList (
1496       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1497        ["pvcreate"; "/dev/sda1"];
1498        ["pvcreate"; "/dev/sda2"];
1499        ["pvcreate"; "/dev/sda3"];
1500        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1501        ["vgcreate"; "VG2"; "/dev/sda3"];
1502        ["lvcreate"; "LV1"; "VG1"; "50"];
1503        ["lvcreate"; "LV2"; "VG1"; "50"];
1504        ["lvcreate"; "LV3"; "VG2"; "50"];
1505        ["lvcreate"; "LV4"; "VG2"; "50"];
1506        ["lvcreate"; "LV5"; "VG2"; "50"];
1507        ["lvs"]],
1508       ["/dev/VG1/LV1"; "/dev/VG1/LV2";
1509        "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
1510    "create an LVM logical volume",
1511    "\
1512 This creates an LVM logical volume called C<logvol>
1513 on the volume group C<volgroup>, with C<size> megabytes.");
1514
1515   ("mkfs", (RErr, [String "fstype"; Device "device"]), 42, [],
1516    [InitEmpty, Always, TestOutput (
1517       [["part_disk"; "/dev/sda"; "mbr"];
1518        ["mkfs"; "ext2"; "/dev/sda1"];
1519        ["mount_options"; ""; "/dev/sda1"; "/"];
1520        ["write"; "/new"; "new file contents"];
1521        ["cat"; "/new"]], "new file contents")],
1522    "make a filesystem",
1523    "\
1524 This creates a filesystem on C<device> (usually a partition
1525 or LVM logical volume).  The filesystem type is C<fstype>, for
1526 example C<ext3>.");
1527
1528   ("sfdisk", (RErr, [Device "device";
1529                      Int "cyls"; Int "heads"; Int "sectors";
1530                      StringList "lines"]), 43, [DangerWillRobinson],
1531    [],
1532    "create partitions on a block device",
1533    "\
1534 This is a direct interface to the L<sfdisk(8)> program for creating
1535 partitions on block devices.
1536
1537 C<device> should be a block device, for example C</dev/sda>.
1538
1539 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1540 and sectors on the device, which are passed directly to sfdisk as
1541 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1542 of these, then the corresponding parameter is omitted.  Usually for
1543 'large' disks, you can just pass C<0> for these, but for small
1544 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1545 out the right geometry and you will need to tell it.
1546
1547 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1548 information refer to the L<sfdisk(8)> manpage.
1549
1550 To create a single partition occupying the whole disk, you would
1551 pass C<lines> as a single element list, when the single element being
1552 the string C<,> (comma).
1553
1554 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>,
1555 C<guestfs_part_init>");
1556
1557   ("write_file", (RErr, [Pathname "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning; DeprecatedBy "write"],
1558    (* Regression test for RHBZ#597135. *)
1559    [InitBasicFS, Always, TestLastFail
1560       [["write_file"; "/new"; "abc"; "10000"]]],
1561    "create a file",
1562    "\
1563 This call creates a file called C<path>.  The contents of the
1564 file is the string C<content> (which can contain any 8 bit data),
1565 with length C<size>.
1566
1567 As a special case, if C<size> is C<0>
1568 then the length is calculated using C<strlen> (so in this case
1569 the content cannot contain embedded ASCII NULs).
1570
1571 I<NB.> Owing to a bug, writing content containing ASCII NUL
1572 characters does I<not> work, even if the length is specified.");
1573
1574   ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1575    [InitEmpty, Always, TestOutputListOfDevices (
1576       [["part_disk"; "/dev/sda"; "mbr"];
1577        ["mkfs"; "ext2"; "/dev/sda1"];
1578        ["mount_options"; ""; "/dev/sda1"; "/"];
1579        ["mounts"]], ["/dev/sda1"]);
1580     InitEmpty, Always, TestOutputList (
1581       [["part_disk"; "/dev/sda"; "mbr"];
1582        ["mkfs"; "ext2"; "/dev/sda1"];
1583        ["mount_options"; ""; "/dev/sda1"; "/"];
1584        ["umount"; "/"];
1585        ["mounts"]], [])],
1586    "unmount a filesystem",
1587    "\
1588 This unmounts the given filesystem.  The filesystem may be
1589 specified either by its mountpoint (path) or the device which
1590 contains the filesystem.");
1591
1592   ("mounts", (RStringList "devices", []), 46, [],
1593    [InitBasicFS, Always, TestOutputListOfDevices (
1594       [["mounts"]], ["/dev/sda1"])],
1595    "show mounted filesystems",
1596    "\
1597 This returns the list of currently mounted filesystems.  It returns
1598 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1599
1600 Some internal mounts are not shown.
1601
1602 See also: C<guestfs_mountpoints>");
1603
1604   ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1605    [InitBasicFS, Always, TestOutputList (
1606       [["umount_all"];
1607        ["mounts"]], []);
1608     (* check that umount_all can unmount nested mounts correctly: *)
1609     InitEmpty, Always, TestOutputList (
1610       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1611        ["mkfs"; "ext2"; "/dev/sda1"];
1612        ["mkfs"; "ext2"; "/dev/sda2"];
1613        ["mkfs"; "ext2"; "/dev/sda3"];
1614        ["mount_options"; ""; "/dev/sda1"; "/"];
1615        ["mkdir"; "/mp1"];
1616        ["mount_options"; ""; "/dev/sda2"; "/mp1"];
1617        ["mkdir"; "/mp1/mp2"];
1618        ["mount_options"; ""; "/dev/sda3"; "/mp1/mp2"];
1619        ["mkdir"; "/mp1/mp2/mp3"];
1620        ["umount_all"];
1621        ["mounts"]], [])],
1622    "unmount all filesystems",
1623    "\
1624 This unmounts all mounted filesystems.
1625
1626 Some internal mounts are not unmounted by this call.");
1627
1628   ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson; Optional "lvm2"],
1629    [],
1630    "remove all LVM LVs, VGs and PVs",
1631    "\
1632 This command removes all LVM logical volumes, volume groups
1633 and physical volumes.");
1634
1635   ("file", (RString "description", [Dev_or_Path "path"]), 49, [],
1636    [InitISOFS, Always, TestOutput (
1637       [["file"; "/empty"]], "empty");
1638     InitISOFS, Always, TestOutput (
1639       [["file"; "/known-1"]], "ASCII text");
1640     InitISOFS, Always, TestLastFail (
1641       [["file"; "/notexists"]]);
1642     InitISOFS, Always, TestOutput (
1643       [["file"; "/abssymlink"]], "symbolic link");
1644     InitISOFS, Always, TestOutput (
1645       [["file"; "/directory"]], "directory")],
1646    "determine file type",
1647    "\
1648 This call uses the standard L<file(1)> command to determine
1649 the type or contents of the file.
1650
1651 This call will also transparently look inside various types
1652 of compressed file.
1653
1654 The exact command which runs is C<file -zb path>.  Note in
1655 particular that the filename is not prepended to the output
1656 (the C<-b> option).
1657
1658 This command can also be used on C</dev/> devices
1659 (and partitions, LV names).  You can for example use this
1660 to determine if a device contains a filesystem, although
1661 it's usually better to use C<guestfs_vfs_type>.
1662
1663 If the C<path> does not begin with C</dev/> then
1664 this command only works for the content of regular files.
1665 For other file types (directory, symbolic link etc) it
1666 will just return the string C<directory> etc.");
1667
1668   ("command", (RString "output", [StringList "arguments"]), 50, [ProtocolLimitWarning],
1669    [InitBasicFS, Always, TestOutput (
1670       [["upload"; "test-command"; "/test-command"];
1671        ["chmod"; "0o755"; "/test-command"];
1672        ["command"; "/test-command 1"]], "Result1");
1673     InitBasicFS, Always, TestOutput (
1674       [["upload"; "test-command"; "/test-command"];
1675        ["chmod"; "0o755"; "/test-command"];
1676        ["command"; "/test-command 2"]], "Result2\n");
1677     InitBasicFS, Always, TestOutput (
1678       [["upload"; "test-command"; "/test-command"];
1679        ["chmod"; "0o755"; "/test-command"];
1680        ["command"; "/test-command 3"]], "\nResult3");
1681     InitBasicFS, Always, TestOutput (
1682       [["upload"; "test-command"; "/test-command"];
1683        ["chmod"; "0o755"; "/test-command"];
1684        ["command"; "/test-command 4"]], "\nResult4\n");
1685     InitBasicFS, Always, TestOutput (
1686       [["upload"; "test-command"; "/test-command"];
1687        ["chmod"; "0o755"; "/test-command"];
1688        ["command"; "/test-command 5"]], "\nResult5\n\n");
1689     InitBasicFS, Always, TestOutput (
1690       [["upload"; "test-command"; "/test-command"];
1691        ["chmod"; "0o755"; "/test-command"];
1692        ["command"; "/test-command 6"]], "\n\nResult6\n\n");
1693     InitBasicFS, Always, TestOutput (
1694       [["upload"; "test-command"; "/test-command"];
1695        ["chmod"; "0o755"; "/test-command"];
1696        ["command"; "/test-command 7"]], "");
1697     InitBasicFS, Always, TestOutput (
1698       [["upload"; "test-command"; "/test-command"];
1699        ["chmod"; "0o755"; "/test-command"];
1700        ["command"; "/test-command 8"]], "\n");
1701     InitBasicFS, Always, TestOutput (
1702       [["upload"; "test-command"; "/test-command"];
1703        ["chmod"; "0o755"; "/test-command"];
1704        ["command"; "/test-command 9"]], "\n\n");
1705     InitBasicFS, Always, TestOutput (
1706       [["upload"; "test-command"; "/test-command"];
1707        ["chmod"; "0o755"; "/test-command"];
1708        ["command"; "/test-command 10"]], "Result10-1\nResult10-2\n");
1709     InitBasicFS, Always, TestOutput (
1710       [["upload"; "test-command"; "/test-command"];
1711        ["chmod"; "0o755"; "/test-command"];
1712        ["command"; "/test-command 11"]], "Result11-1\nResult11-2");
1713     InitBasicFS, Always, TestLastFail (
1714       [["upload"; "test-command"; "/test-command"];
1715        ["chmod"; "0o755"; "/test-command"];
1716        ["command"; "/test-command"]])],
1717    "run a command from the guest filesystem",
1718    "\
1719 This call runs a command from the guest filesystem.  The
1720 filesystem must be mounted, and must contain a compatible
1721 operating system (ie. something Linux, with the same
1722 or compatible processor architecture).
1723
1724 The single parameter is an argv-style list of arguments.
1725 The first element is the name of the program to run.
1726 Subsequent elements are parameters.  The list must be
1727 non-empty (ie. must contain a program name).  Note that
1728 the command runs directly, and is I<not> invoked via
1729 the shell (see C<guestfs_sh>).
1730
1731 The return value is anything printed to I<stdout> by
1732 the command.
1733
1734 If the command returns a non-zero exit status, then
1735 this function returns an error message.  The error message
1736 string is the content of I<stderr> from the command.
1737
1738 The C<$PATH> environment variable will contain at least
1739 C</usr/bin> and C</bin>.  If you require a program from
1740 another location, you should provide the full path in the
1741 first parameter.
1742
1743 Shared libraries and data files required by the program
1744 must be available on filesystems which are mounted in the
1745 correct places.  It is the caller's responsibility to ensure
1746 all filesystems that are needed are mounted at the right
1747 locations.");
1748
1749   ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [ProtocolLimitWarning],
1750    [InitBasicFS, Always, TestOutputList (
1751       [["upload"; "test-command"; "/test-command"];
1752        ["chmod"; "0o755"; "/test-command"];
1753        ["command_lines"; "/test-command 1"]], ["Result1"]);
1754     InitBasicFS, Always, TestOutputList (
1755       [["upload"; "test-command"; "/test-command"];
1756        ["chmod"; "0o755"; "/test-command"];
1757        ["command_lines"; "/test-command 2"]], ["Result2"]);
1758     InitBasicFS, Always, TestOutputList (
1759       [["upload"; "test-command"; "/test-command"];
1760        ["chmod"; "0o755"; "/test-command"];
1761        ["command_lines"; "/test-command 3"]], ["";"Result3"]);
1762     InitBasicFS, Always, TestOutputList (
1763       [["upload"; "test-command"; "/test-command"];
1764        ["chmod"; "0o755"; "/test-command"];
1765        ["command_lines"; "/test-command 4"]], ["";"Result4"]);
1766     InitBasicFS, Always, TestOutputList (
1767       [["upload"; "test-command"; "/test-command"];
1768        ["chmod"; "0o755"; "/test-command"];
1769        ["command_lines"; "/test-command 5"]], ["";"Result5";""]);
1770     InitBasicFS, Always, TestOutputList (
1771       [["upload"; "test-command"; "/test-command"];
1772        ["chmod"; "0o755"; "/test-command"];
1773        ["command_lines"; "/test-command 6"]], ["";"";"Result6";""]);
1774     InitBasicFS, Always, TestOutputList (
1775       [["upload"; "test-command"; "/test-command"];
1776        ["chmod"; "0o755"; "/test-command"];
1777        ["command_lines"; "/test-command 7"]], []);
1778     InitBasicFS, Always, TestOutputList (
1779       [["upload"; "test-command"; "/test-command"];
1780        ["chmod"; "0o755"; "/test-command"];
1781        ["command_lines"; "/test-command 8"]], [""]);
1782     InitBasicFS, Always, TestOutputList (
1783       [["upload"; "test-command"; "/test-command"];
1784        ["chmod"; "0o755"; "/test-command"];
1785        ["command_lines"; "/test-command 9"]], ["";""]);
1786     InitBasicFS, Always, TestOutputList (
1787       [["upload"; "test-command"; "/test-command"];
1788        ["chmod"; "0o755"; "/test-command"];
1789        ["command_lines"; "/test-command 10"]], ["Result10-1";"Result10-2"]);
1790     InitBasicFS, Always, TestOutputList (
1791       [["upload"; "test-command"; "/test-command"];
1792        ["chmod"; "0o755"; "/test-command"];
1793        ["command_lines"; "/test-command 11"]], ["Result11-1";"Result11-2"])],
1794    "run a command, returning lines",
1795    "\
1796 This is the same as C<guestfs_command>, but splits the
1797 result into a list of lines.
1798
1799 See also: C<guestfs_sh_lines>");
1800
1801   ("stat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 52, [],
1802    [InitISOFS, Always, TestOutputStruct (
1803       [["stat"; "/empty"]], [CompareWithInt ("size", 0)])],
1804    "get file information",
1805    "\
1806 Returns file information for the given C<path>.
1807
1808 This is the same as the C<stat(2)> system call.");
1809
1810   ("lstat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 53, [],
1811    [InitISOFS, Always, TestOutputStruct (
1812       [["lstat"; "/empty"]], [CompareWithInt ("size", 0)])],
1813    "get file information for a symbolic link",
1814    "\
1815 Returns file information for the given C<path>.
1816
1817 This is the same as C<guestfs_stat> except that if C<path>
1818 is a symbolic link, then the link is stat-ed, not the file it
1819 refers to.
1820
1821 This is the same as the C<lstat(2)> system call.");
1822
1823   ("statvfs", (RStruct ("statbuf", "statvfs"), [Pathname "path"]), 54, [],
1824    [InitISOFS, Always, TestOutputStruct (
1825       [["statvfs"; "/"]], [CompareWithInt ("namemax", 255)])],
1826    "get file system statistics",
1827    "\
1828 Returns file system statistics for any mounted file system.
1829 C<path> should be a file or directory in the mounted file system
1830 (typically it is the mount point itself, but it doesn't need to be).
1831
1832 This is the same as the C<statvfs(2)> system call.");
1833
1834   ("tune2fs_l", (RHashtable "superblock", [Device "device"]), 55, [],
1835    [], (* XXX test *)
1836    "get ext2/ext3/ext4 superblock details",
1837    "\
1838 This returns the contents of the ext2, ext3 or ext4 filesystem
1839 superblock on C<device>.
1840
1841 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1842 manpage for more details.  The list of fields returned isn't
1843 clearly defined, and depends on both the version of C<tune2fs>
1844 that libguestfs was built against, and the filesystem itself.");
1845
1846   ("blockdev_setro", (RErr, [Device "device"]), 56, [],
1847    [InitEmpty, Always, TestOutputTrue (
1848       [["blockdev_setro"; "/dev/sda"];
1849        ["blockdev_getro"; "/dev/sda"]])],
1850    "set block device to read-only",
1851    "\
1852 Sets the block device named C<device> to read-only.
1853
1854 This uses the L<blockdev(8)> command.");
1855
1856   ("blockdev_setrw", (RErr, [Device "device"]), 57, [],
1857    [InitEmpty, Always, TestOutputFalse (
1858       [["blockdev_setrw"; "/dev/sda"];
1859        ["blockdev_getro"; "/dev/sda"]])],
1860    "set block device to read-write",
1861    "\
1862 Sets the block device named C<device> to read-write.
1863
1864 This uses the L<blockdev(8)> command.");
1865
1866   ("blockdev_getro", (RBool "ro", [Device "device"]), 58, [],
1867    [InitEmpty, Always, TestOutputTrue (
1868       [["blockdev_setro"; "/dev/sda"];
1869        ["blockdev_getro"; "/dev/sda"]])],
1870    "is block device set to read-only",
1871    "\
1872 Returns a boolean indicating if the block device is read-only
1873 (true if read-only, false if not).
1874
1875 This uses the L<blockdev(8)> command.");
1876
1877   ("blockdev_getss", (RInt "sectorsize", [Device "device"]), 59, [],
1878    [InitEmpty, Always, TestOutputInt (
1879       [["blockdev_getss"; "/dev/sda"]], 512)],
1880    "get sectorsize of block device",
1881    "\
1882 This returns the size of sectors on a block device.
1883 Usually 512, but can be larger for modern devices.
1884
1885 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1886 for that).
1887
1888 This uses the L<blockdev(8)> command.");
1889
1890   ("blockdev_getbsz", (RInt "blocksize", [Device "device"]), 60, [],
1891    [InitEmpty, Always, TestOutputInt (
1892       [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1893    "get blocksize of block device",
1894    "\
1895 This returns the block size of a device.
1896
1897 (Note this is different from both I<size in blocks> and
1898 I<filesystem block size>).
1899
1900 This uses the L<blockdev(8)> command.");
1901
1902   ("blockdev_setbsz", (RErr, [Device "device"; Int "blocksize"]), 61, [],
1903    [], (* XXX test *)
1904    "set blocksize of block device",
1905    "\
1906 This sets the block size of a device.
1907
1908 (Note this is different from both I<size in blocks> and
1909 I<filesystem block size>).
1910
1911 This uses the L<blockdev(8)> command.");
1912
1913   ("blockdev_getsz", (RInt64 "sizeinsectors", [Device "device"]), 62, [],
1914    [InitEmpty, Always, TestOutputInt (
1915       [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1916    "get total size of device in 512-byte sectors",
1917    "\
1918 This returns the size of the device in units of 512-byte sectors
1919 (even if the sectorsize isn't 512 bytes ... weird).
1920
1921 See also C<guestfs_blockdev_getss> for the real sector size of
1922 the device, and C<guestfs_blockdev_getsize64> for the more
1923 useful I<size in bytes>.
1924
1925 This uses the L<blockdev(8)> command.");
1926
1927   ("blockdev_getsize64", (RInt64 "sizeinbytes", [Device "device"]), 63, [],
1928    [InitEmpty, Always, TestOutputInt (
1929       [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1930    "get total size of device in bytes",
1931    "\
1932 This returns the size of the device in bytes.
1933
1934 See also C<guestfs_blockdev_getsz>.
1935
1936 This uses the L<blockdev(8)> command.");
1937
1938   ("blockdev_flushbufs", (RErr, [Device "device"]), 64, [],
1939    [InitEmpty, Always, TestRun
1940       [["blockdev_flushbufs"; "/dev/sda"]]],
1941    "flush device buffers",
1942    "\
1943 This tells the kernel to flush internal buffers associated
1944 with C<device>.
1945
1946 This uses the L<blockdev(8)> command.");
1947
1948   ("blockdev_rereadpt", (RErr, [Device "device"]), 65, [],
1949    [InitEmpty, Always, TestRun
1950       [["blockdev_rereadpt"; "/dev/sda"]]],
1951    "reread partition table",
1952    "\
1953 Reread the partition table on C<device>.
1954
1955 This uses the L<blockdev(8)> command.");
1956
1957   ("upload", (RErr, [FileIn "filename"; Dev_or_Path "remotefilename"]), 66, [],
1958    [InitBasicFS, Always, TestOutput (
1959       (* Pick a file from cwd which isn't likely to change. *)
1960       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1961        ["checksum"; "md5"; "/COPYING.LIB"]],
1962       Digest.to_hex (Digest.file "COPYING.LIB"))],
1963    "upload a file from the local machine",
1964    "\
1965 Upload local file C<filename> to C<remotefilename> on the
1966 filesystem.
1967
1968 C<filename> can also be a named pipe.
1969
1970 See also C<guestfs_download>.");
1971
1972   ("download", (RErr, [Dev_or_Path "remotefilename"; FileOut "filename"]), 67, [],
1973    [InitBasicFS, Always, TestOutput (
1974       (* Pick a file from cwd which isn't likely to change. *)
1975       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1976        ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1977        ["upload"; "testdownload.tmp"; "/upload"];
1978        ["checksum"; "md5"; "/upload"]],
1979       Digest.to_hex (Digest.file "COPYING.LIB"))],
1980    "download a file to the local machine",
1981    "\
1982 Download file C<remotefilename> and save it as C<filename>
1983 on the local machine.
1984
1985 C<filename> can also be a named pipe.
1986
1987 See also C<guestfs_upload>, C<guestfs_cat>.");
1988
1989   ("checksum", (RString "checksum", [String "csumtype"; Pathname "path"]), 68, [],
1990    [InitISOFS, Always, TestOutput (
1991       [["checksum"; "crc"; "/known-3"]], "2891671662");
1992     InitISOFS, Always, TestLastFail (
1993       [["checksum"; "crc"; "/notexists"]]);
1994     InitISOFS, Always, TestOutput (
1995       [["checksum"; "md5"; "/known-3"]], "46d6ca27ee07cdc6fa99c2e138cc522c");
1996     InitISOFS, Always, TestOutput (
1997       [["checksum"; "sha1"; "/known-3"]], "b7ebccc3ee418311091c3eda0a45b83c0a770f15");
1998     InitISOFS, Always, TestOutput (
1999       [["checksum"; "sha224"; "/known-3"]], "d2cd1774b28f3659c14116be0a6dc2bb5c4b350ce9cd5defac707741");
2000     InitISOFS, Always, TestOutput (
2001       [["checksum"; "sha256"; "/known-3"]], "75bb71b90cd20cb13f86d2bea8dad63ac7194e7517c3b52b8d06ff52d3487d30");
2002     InitISOFS, Always, TestOutput (
2003       [["checksum"; "sha384"; "/known-3"]], "5fa7883430f357b5d7b7271d3a1d2872b51d73cba72731de6863d3dea55f30646af2799bef44d5ea776a5ec7941ac640");
2004     InitISOFS, Always, TestOutput (
2005       [["checksum"; "sha512"; "/known-3"]], "2794062c328c6b216dca90443b7f7134c5f40e56bd0ed7853123275a09982a6f992e6ca682f9d2fba34a4c5e870d8fe077694ff831e3032a004ee077e00603f6");
2006     (* Test for RHBZ#579608, absolute symbolic links. *)
2007     InitISOFS, Always, TestOutput (
2008       [["checksum"; "sha512"; "/abssymlink"]], "5f57d0639bc95081c53afc63a449403883818edc64da48930ad6b1a4fb49be90404686877743fbcd7c99811f3def7df7bc22635c885c6a8cf79c806b43451c1a")],
2009    "compute MD5, SHAx or CRC checksum of file",
2010    "\
2011 This call computes the MD5, SHAx or CRC checksum of the
2012 file named C<path>.
2013
2014 The type of checksum to compute is given by the C<csumtype>
2015 parameter which must have one of the following values:
2016
2017 =over 4
2018
2019 =item C<crc>
2020
2021 Compute the cyclic redundancy check (CRC) specified by POSIX
2022 for the C<cksum> command.
2023
2024 =item C<md5>
2025
2026 Compute the MD5 hash (using the C<md5sum> program).
2027
2028 =item C<sha1>
2029
2030 Compute the SHA1 hash (using the C<sha1sum> program).
2031
2032 =item C<sha224>
2033
2034 Compute the SHA224 hash (using the C<sha224sum> program).
2035
2036 =item C<sha256>
2037
2038 Compute the SHA256 hash (using the C<sha256sum> program).
2039
2040 =item C<sha384>
2041
2042 Compute the SHA384 hash (using the C<sha384sum> program).
2043
2044 =item C<sha512>
2045
2046 Compute the SHA512 hash (using the C<sha512sum> program).
2047
2048 =back
2049
2050 The checksum is returned as a printable string.
2051
2052 To get the checksum for a device, use C<guestfs_checksum_device>.
2053
2054 To get the checksums for many files, use C<guestfs_checksums_out>.");
2055
2056   ("tar_in", (RErr, [FileIn "tarfile"; Pathname "directory"]), 69, [],
2057    [InitBasicFS, Always, TestOutput (
2058       [["tar_in"; "../images/helloworld.tar"; "/"];
2059        ["cat"; "/hello"]], "hello\n")],
2060    "unpack tarfile to directory",
2061    "\
2062 This command uploads and unpacks local file C<tarfile> (an
2063 I<uncompressed> tar file) into C<directory>.
2064
2065 To upload a compressed tarball, use C<guestfs_tgz_in>
2066 or C<guestfs_txz_in>.");
2067
2068   ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
2069    [],
2070    "pack directory into tarfile",
2071    "\
2072 This command packs the contents of C<directory> and downloads
2073 it to local file C<tarfile>.
2074
2075 To download a compressed tarball, use C<guestfs_tgz_out>
2076 or C<guestfs_txz_out>.");
2077
2078   ("tgz_in", (RErr, [FileIn "tarball"; Pathname "directory"]), 71, [],
2079    [InitBasicFS, Always, TestOutput (
2080       [["tgz_in"; "../images/helloworld.tar.gz"; "/"];
2081        ["cat"; "/hello"]], "hello\n")],
2082    "unpack compressed tarball to directory",
2083    "\
2084 This command uploads and unpacks local file C<tarball> (a
2085 I<gzip compressed> tar file) into C<directory>.
2086
2087 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
2088
2089   ("tgz_out", (RErr, [Pathname "directory"; FileOut "tarball"]), 72, [],
2090    [],
2091    "pack directory into compressed tarball",
2092    "\
2093 This command packs the contents of C<directory> and downloads
2094 it to local file C<tarball>.
2095
2096 To download an uncompressed tarball, use C<guestfs_tar_out>.");
2097
2098   ("mount_ro", (RErr, [Device "device"; String "mountpoint"]), 73, [],
2099    [InitBasicFS, Always, TestLastFail (
2100       [["umount"; "/"];
2101        ["mount_ro"; "/dev/sda1"; "/"];
2102        ["touch"; "/new"]]);
2103     InitBasicFS, Always, TestOutput (
2104       [["write"; "/new"; "data"];
2105        ["umount"; "/"];
2106        ["mount_ro"; "/dev/sda1"; "/"];
2107        ["cat"; "/new"]], "data")],
2108    "mount a guest disk, read-only",
2109    "\
2110 This is the same as the C<guestfs_mount> command, but it
2111 mounts the filesystem with the read-only (I<-o ro>) flag.");
2112
2113   ("mount_options", (RErr, [String "options"; Device "device"; String "mountpoint"]), 74, [],
2114    [],
2115    "mount a guest disk with mount options",
2116    "\
2117 This is the same as the C<guestfs_mount> command, but it
2118 allows you to set the mount options as for the
2119 L<mount(8)> I<-o> flag.
2120
2121 If the C<options> parameter is an empty string, then
2122 no options are passed (all options default to whatever
2123 the filesystem uses).");
2124
2125   ("mount_vfs", (RErr, [String "options"; String "vfstype"; Device "device"; String "mountpoint"]), 75, [],
2126    [],
2127    "mount a guest disk with mount options and vfstype",
2128    "\
2129 This is the same as the C<guestfs_mount> command, but it
2130 allows you to set both the mount options and the vfstype
2131 as for the L<mount(8)> I<-o> and I<-t> flags.");
2132
2133   ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
2134    [],
2135    "debugging and internals",
2136    "\
2137 The C<guestfs_debug> command exposes some internals of
2138 C<guestfsd> (the guestfs daemon) that runs inside the
2139 qemu subprocess.
2140
2141 There is no comprehensive help for this command.  You have
2142 to look at the file C<daemon/debug.c> in the libguestfs source
2143 to find out what you can do.");
2144
2145   ("lvremove", (RErr, [Device "device"]), 77, [Optional "lvm2"],
2146    [InitEmpty, Always, TestOutputList (
2147       [["part_disk"; "/dev/sda"; "mbr"];
2148        ["pvcreate"; "/dev/sda1"];
2149        ["vgcreate"; "VG"; "/dev/sda1"];
2150        ["lvcreate"; "LV1"; "VG"; "50"];
2151        ["lvcreate"; "LV2"; "VG"; "50"];
2152        ["lvremove"; "/dev/VG/LV1"];
2153        ["lvs"]], ["/dev/VG/LV2"]);
2154     InitEmpty, Always, TestOutputList (
2155       [["part_disk"; "/dev/sda"; "mbr"];
2156        ["pvcreate"; "/dev/sda1"];
2157        ["vgcreate"; "VG"; "/dev/sda1"];
2158        ["lvcreate"; "LV1"; "VG"; "50"];
2159        ["lvcreate"; "LV2"; "VG"; "50"];
2160        ["lvremove"; "/dev/VG"];
2161        ["lvs"]], []);
2162     InitEmpty, Always, TestOutputList (
2163       [["part_disk"; "/dev/sda"; "mbr"];
2164        ["pvcreate"; "/dev/sda1"];
2165        ["vgcreate"; "VG"; "/dev/sda1"];
2166        ["lvcreate"; "LV1"; "VG"; "50"];
2167        ["lvcreate"; "LV2"; "VG"; "50"];
2168        ["lvremove"; "/dev/VG"];
2169        ["vgs"]], ["VG"])],
2170    "remove an LVM logical volume",
2171    "\
2172 Remove an LVM logical volume C<device>, where C<device> is
2173 the path to the LV, such as C</dev/VG/LV>.
2174
2175 You can also remove all LVs in a volume group by specifying
2176 the VG name, C</dev/VG>.");
2177
2178   ("vgremove", (RErr, [String "vgname"]), 78, [Optional "lvm2"],
2179    [InitEmpty, Always, TestOutputList (
2180       [["part_disk"; "/dev/sda"; "mbr"];
2181        ["pvcreate"; "/dev/sda1"];
2182        ["vgcreate"; "VG"; "/dev/sda1"];
2183        ["lvcreate"; "LV1"; "VG"; "50"];
2184        ["lvcreate"; "LV2"; "VG"; "50"];
2185        ["vgremove"; "VG"];
2186        ["lvs"]], []);
2187     InitEmpty, Always, TestOutputList (
2188       [["part_disk"; "/dev/sda"; "mbr"];
2189        ["pvcreate"; "/dev/sda1"];
2190        ["vgcreate"; "VG"; "/dev/sda1"];
2191        ["lvcreate"; "LV1"; "VG"; "50"];
2192        ["lvcreate"; "LV2"; "VG"; "50"];
2193        ["vgremove"; "VG"];
2194        ["vgs"]], [])],
2195    "remove an LVM volume group",
2196    "\
2197 Remove an LVM volume group C<vgname>, (for example C<VG>).
2198
2199 This also forcibly removes all logical volumes in the volume
2200 group (if any).");
2201
2202   ("pvremove", (RErr, [Device "device"]), 79, [Optional "lvm2"],
2203    [InitEmpty, Always, TestOutputListOfDevices (
2204       [["part_disk"; "/dev/sda"; "mbr"];
2205        ["pvcreate"; "/dev/sda1"];
2206        ["vgcreate"; "VG"; "/dev/sda1"];
2207        ["lvcreate"; "LV1"; "VG"; "50"];
2208        ["lvcreate"; "LV2"; "VG"; "50"];
2209        ["vgremove"; "VG"];
2210        ["pvremove"; "/dev/sda1"];
2211        ["lvs"]], []);
2212     InitEmpty, Always, TestOutputListOfDevices (
2213       [["part_disk"; "/dev/sda"; "mbr"];
2214        ["pvcreate"; "/dev/sda1"];
2215        ["vgcreate"; "VG"; "/dev/sda1"];
2216        ["lvcreate"; "LV1"; "VG"; "50"];
2217        ["lvcreate"; "LV2"; "VG"; "50"];
2218        ["vgremove"; "VG"];
2219        ["pvremove"; "/dev/sda1"];
2220        ["vgs"]], []);
2221     InitEmpty, Always, TestOutputListOfDevices (
2222       [["part_disk"; "/dev/sda"; "mbr"];
2223        ["pvcreate"; "/dev/sda1"];
2224        ["vgcreate"; "VG"; "/dev/sda1"];
2225        ["lvcreate"; "LV1"; "VG"; "50"];
2226        ["lvcreate"; "LV2"; "VG"; "50"];
2227        ["vgremove"; "VG"];
2228        ["pvremove"; "/dev/sda1"];
2229        ["pvs"]], [])],
2230    "remove an LVM physical volume",
2231    "\
2232 This wipes a physical volume C<device> so that LVM will no longer
2233 recognise it.
2234
2235 The implementation uses the C<pvremove> command which refuses to
2236 wipe physical volumes that contain any volume groups, so you have
2237 to remove those first.");
2238
2239   ("set_e2label", (RErr, [Device "device"; String "label"]), 80, [],
2240    [InitBasicFS, Always, TestOutput (
2241       [["set_e2label"; "/dev/sda1"; "testlabel"];
2242        ["get_e2label"; "/dev/sda1"]], "testlabel")],
2243    "set the ext2/3/4 filesystem label",
2244    "\
2245 This sets the ext2/3/4 filesystem label of the filesystem on
2246 C<device> to C<label>.  Filesystem labels are limited to
2247 16 characters.
2248
2249 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
2250 to return the existing label on a filesystem.");
2251
2252   ("get_e2label", (RString "label", [Device "device"]), 81, [DeprecatedBy "vfs_label"],
2253    [],
2254    "get the ext2/3/4 filesystem label",
2255    "\
2256 This returns the ext2/3/4 filesystem label of the filesystem on
2257 C<device>.");
2258
2259   ("set_e2uuid", (RErr, [Device "device"; String "uuid"]), 82, [],
2260    (let uuid = uuidgen () in
2261     [InitBasicFS, Always, TestOutput (
2262        [["set_e2uuid"; "/dev/sda1"; uuid];
2263         ["get_e2uuid"; "/dev/sda1"]], uuid);
2264      InitBasicFS, Always, TestOutput (
2265        [["set_e2uuid"; "/dev/sda1"; "clear"];
2266         ["get_e2uuid"; "/dev/sda1"]], "");
2267      (* We can't predict what UUIDs will be, so just check the commands run. *)
2268      InitBasicFS, Always, TestRun (
2269        [["set_e2uuid"; "/dev/sda1"; "random"]]);
2270      InitBasicFS, Always, TestRun (
2271        [["set_e2uuid"; "/dev/sda1"; "time"]])]),
2272    "set the ext2/3/4 filesystem UUID",
2273    "\
2274 This sets the ext2/3/4 filesystem UUID of the filesystem on
2275 C<device> to C<uuid>.  The format of the UUID and alternatives
2276 such as C<clear>, C<random> and C<time> are described in the
2277 L<tune2fs(8)> manpage.
2278
2279 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
2280 to return the existing UUID of a filesystem.");
2281
2282   ("get_e2uuid", (RString "uuid", [Device "device"]), 83, [DeprecatedBy "vfs_uuid"],
2283    (* Regression test for RHBZ#597112. *)
2284    (let uuid = uuidgen () in
2285     [InitBasicFS, Always, TestOutput (
2286        [["mke2journal"; "1024"; "/dev/sdb"];
2287         ["set_e2uuid"; "/dev/sdb"; uuid];
2288         ["get_e2uuid"; "/dev/sdb"]], uuid)]),
2289    "get the ext2/3/4 filesystem UUID",
2290    "\
2291 This returns the ext2/3/4 filesystem UUID of the filesystem on
2292 C<device>.");
2293
2294   ("fsck", (RInt "status", [String "fstype"; Device "device"]), 84, [FishOutput FishOutputHexadecimal],
2295    [InitBasicFS, Always, TestOutputInt (
2296       [["umount"; "/dev/sda1"];
2297        ["fsck"; "ext2"; "/dev/sda1"]], 0);
2298     InitBasicFS, Always, TestOutputInt (
2299       [["umount"; "/dev/sda1"];
2300        ["zero"; "/dev/sda1"];
2301        ["fsck"; "ext2"; "/dev/sda1"]], 8)],
2302    "run the filesystem checker",
2303    "\
2304 This runs the filesystem checker (fsck) on C<device> which
2305 should have filesystem type C<fstype>.
2306
2307 The returned integer is the status.  See L<fsck(8)> for the
2308 list of status codes from C<fsck>.
2309
2310 Notes:
2311
2312 =over 4
2313
2314 =item *
2315
2316 Multiple status codes can be summed together.
2317
2318 =item *
2319
2320 A non-zero return code can mean \"success\", for example if
2321 errors have been corrected on the filesystem.
2322
2323 =item *
2324
2325 Checking or repairing NTFS volumes is not supported
2326 (by linux-ntfs).
2327
2328 =back
2329
2330 This command is entirely equivalent to running C<fsck -a -t fstype device>.");
2331
2332   ("zero", (RErr, [Device "device"]), 85, [],
2333    [InitBasicFS, Always, TestOutput (
2334       [["umount"; "/dev/sda1"];
2335        ["zero"; "/dev/sda1"];
2336        ["file"; "/dev/sda1"]], "data")],
2337    "write zeroes to the device",
2338    "\
2339 This command writes zeroes over the first few blocks of C<device>.
2340
2341 How many blocks are zeroed isn't specified (but it's I<not> enough
2342 to securely wipe the device).  It should be sufficient to remove
2343 any partition tables, filesystem superblocks and so on.
2344
2345 See also: C<guestfs_zero_device>, C<guestfs_scrub_device>.");
2346
2347   ("grub_install", (RErr, [Pathname "root"; Device "device"]), 86, [],
2348    (* See:
2349     * https://bugzilla.redhat.com/show_bug.cgi?id=484986
2350     * https://bugzilla.redhat.com/show_bug.cgi?id=479760
2351     *)
2352    [InitBasicFS, Always, TestOutputTrue (
2353       [["mkdir_p"; "/boot/grub"];
2354        ["write"; "/boot/grub/device.map"; "(hd0) /dev/vda"];
2355        ["grub_install"; "/"; "/dev/vda"];
2356        ["is_dir"; "/boot"]])],
2357    "install GRUB",
2358    "\
2359 This command installs GRUB (the Grand Unified Bootloader) on
2360 C<device>, with the root directory being C<root>.
2361
2362 Note: If grub-install reports the error
2363 \"No suitable drive was found in the generated device map.\"
2364 it may be that you need to create a C</boot/grub/device.map>
2365 file first that contains the mapping between grub device names
2366 and Linux device names.  It is usually sufficient to create
2367 a file containing:
2368
2369  (hd0) /dev/vda
2370
2371 replacing C</dev/vda> with the name of the installation device.");
2372
2373   ("cp", (RErr, [Pathname "src"; Pathname "dest"]), 87, [],
2374    [InitBasicFS, Always, TestOutput (
2375       [["write"; "/old"; "file content"];
2376        ["cp"; "/old"; "/new"];
2377        ["cat"; "/new"]], "file content");
2378     InitBasicFS, Always, TestOutputTrue (
2379       [["write"; "/old"; "file content"];
2380        ["cp"; "/old"; "/new"];
2381        ["is_file"; "/old"]]);
2382     InitBasicFS, Always, TestOutput (
2383       [["write"; "/old"; "file content"];
2384        ["mkdir"; "/dir"];
2385        ["cp"; "/old"; "/dir/new"];
2386        ["cat"; "/dir/new"]], "file content")],
2387    "copy a file",
2388    "\
2389 This copies a file from C<src> to C<dest> where C<dest> is
2390 either a destination filename or destination directory.");
2391
2392   ("cp_a", (RErr, [Pathname "src"; Pathname "dest"]), 88, [],
2393    [InitBasicFS, Always, TestOutput (
2394       [["mkdir"; "/olddir"];
2395        ["mkdir"; "/newdir"];
2396        ["write"; "/olddir/file"; "file content"];
2397        ["cp_a"; "/olddir"; "/newdir"];
2398        ["cat"; "/newdir/olddir/file"]], "file content")],
2399    "copy a file or directory recursively",
2400    "\
2401 This copies a file or directory from C<src> to C<dest>
2402 recursively using the C<cp -a> command.");
2403
2404   ("mv", (RErr, [Pathname "src"; Pathname "dest"]), 89, [],
2405    [InitBasicFS, Always, TestOutput (
2406       [["write"; "/old"; "file content"];
2407        ["mv"; "/old"; "/new"];
2408        ["cat"; "/new"]], "file content");
2409     InitBasicFS, Always, TestOutputFalse (
2410       [["write"; "/old"; "file content"];
2411        ["mv"; "/old"; "/new"];
2412        ["is_file"; "/old"]])],
2413    "move a file",
2414    "\
2415 This moves a file from C<src> to C<dest> where C<dest> is
2416 either a destination filename or destination directory.");
2417
2418   ("drop_caches", (RErr, [Int "whattodrop"]), 90, [],
2419    [InitEmpty, Always, TestRun (
2420       [["drop_caches"; "3"]])],
2421    "drop kernel page cache, dentries and inodes",
2422    "\
2423 This instructs the guest kernel to drop its page cache,
2424 and/or dentries and inode caches.  The parameter C<whattodrop>
2425 tells the kernel what precisely to drop, see
2426 L<http://linux-mm.org/Drop_Caches>
2427
2428 Setting C<whattodrop> to 3 should drop everything.
2429
2430 This automatically calls L<sync(2)> before the operation,
2431 so that the maximum guest memory is freed.");
2432
2433   ("dmesg", (RString "kmsgs", []), 91, [],
2434    [InitEmpty, Always, TestRun (
2435       [["dmesg"]])],
2436    "return kernel messages",
2437    "\
2438 This returns the kernel messages (C<dmesg> output) from
2439 the guest kernel.  This is sometimes useful for extended
2440 debugging of problems.
2441
2442 Another way to get the same information is to enable
2443 verbose messages with C<guestfs_set_verbose> or by setting
2444 the environment variable C<LIBGUESTFS_DEBUG=1> before
2445 running the program.");
2446
2447   ("ping_daemon", (RErr, []), 92, [],
2448    [InitEmpty, Always, TestRun (
2449       [["ping_daemon"]])],
2450    "ping the guest daemon",
2451    "\
2452 This is a test probe into the guestfs daemon running inside
2453 the qemu subprocess.  Calling this function checks that the
2454 daemon responds to the ping message, without affecting the daemon
2455 or attached block device(s) in any other way.");
2456
2457   ("equal", (RBool "equality", [Pathname "file1"; Pathname "file2"]), 93, [],
2458    [InitBasicFS, Always, TestOutputTrue (
2459       [["write"; "/file1"; "contents of a file"];
2460        ["cp"; "/file1"; "/file2"];
2461        ["equal"; "/file1"; "/file2"]]);
2462     InitBasicFS, Always, TestOutputFalse (
2463       [["write"; "/file1"; "contents of a file"];
2464        ["write"; "/file2"; "contents of another file"];
2465        ["equal"; "/file1"; "/file2"]]);
2466     InitBasicFS, Always, TestLastFail (
2467       [["equal"; "/file1"; "/file2"]])],
2468    "test if two files have equal contents",
2469    "\
2470 This compares the two files C<file1> and C<file2> and returns
2471 true if their content is exactly equal, or false otherwise.
2472
2473 The external L<cmp(1)> program is used for the comparison.");
2474
2475   ("strings", (RStringList "stringsout", [Pathname "path"]), 94, [ProtocolLimitWarning],
2476    [InitISOFS, Always, TestOutputList (
2477       [["strings"; "/known-5"]], ["abcdefghi"; "jklmnopqr"]);
2478     InitISOFS, Always, TestOutputList (
2479       [["strings"; "/empty"]], []);
2480     (* Test for RHBZ#579608, absolute symbolic links. *)
2481     InitISOFS, Always, TestRun (
2482       [["strings"; "/abssymlink"]])],
2483    "print the printable strings in a file",
2484    "\
2485 This runs the L<strings(1)> command on a file and returns
2486 the list of printable strings found.");
2487
2488   ("strings_e", (RStringList "stringsout", [String "encoding"; Pathname "path"]), 95, [ProtocolLimitWarning],
2489    [InitISOFS, Always, TestOutputList (
2490       [["strings_e"; "b"; "/known-5"]], []);
2491     InitBasicFS, Always, TestOutputList (
2492       [["write"; "/new"; "\000h\000e\000l\000l\000o\000\n\000w\000o\000r\000l\000d\000\n"];
2493        ["strings_e"; "b"; "/new"]], ["hello"; "world"])],
2494    "print the printable strings in a file",
2495    "\
2496 This is like the C<guestfs_strings> command, but allows you to
2497 specify the encoding of strings that are looked for in
2498 the source file C<path>.
2499
2500 Allowed encodings are:
2501
2502 =over 4
2503
2504 =item s
2505
2506 Single 7-bit-byte characters like ASCII and the ASCII-compatible
2507 parts of ISO-8859-X (this is what C<guestfs_strings> uses).
2508
2509 =item S
2510
2511 Single 8-bit-byte characters.
2512
2513 =item b
2514
2515 16-bit big endian strings such as those encoded in
2516 UTF-16BE or UCS-2BE.
2517
2518 =item l (lower case letter L)
2519
2520 16-bit little endian such as UTF-16LE and UCS-2LE.
2521 This is useful for examining binaries in Windows guests.
2522
2523 =item B
2524
2525 32-bit big endian such as UCS-4BE.
2526
2527 =item L
2528
2529 32-bit little endian such as UCS-4LE.
2530
2531 =back
2532
2533 The returned strings are transcoded to UTF-8.");
2534
2535   ("hexdump", (RString "dump", [Pathname "path"]), 96, [ProtocolLimitWarning],
2536    [InitISOFS, Always, TestOutput (
2537       [["hexdump"; "/known-4"]], "00000000  61 62 63 0a 64 65 66 0a  67 68 69                 |abc.def.ghi|\n0000000b\n");
2538     (* Test for RHBZ#501888c2 regression which caused large hexdump
2539      * commands to segfault.
2540      *)
2541     InitISOFS, Always, TestRun (
2542       [["hexdump"; "/100krandom"]]);
2543     (* Test for RHBZ#579608, absolute symbolic links. *)
2544     InitISOFS, Always, TestRun (
2545       [["hexdump"; "/abssymlink"]])],
2546    "dump a file in hexadecimal",
2547    "\
2548 This runs C<hexdump -C> on the given C<path>.  The result is
2549 the human-readable, canonical hex dump of the file.");
2550
2551   ("zerofree", (RErr, [Device "device"]), 97, [Optional "zerofree"],
2552    [InitNone, Always, TestOutput (
2553       [["part_disk"; "/dev/sda"; "mbr"];
2554        ["mkfs"; "ext3"; "/dev/sda1"];
2555        ["mount_options"; ""; "/dev/sda1"; "/"];
2556        ["write"; "/new"; "test file"];
2557        ["umount"; "/dev/sda1"];
2558        ["zerofree"; "/dev/sda1"];
2559        ["mount_options"; ""; "/dev/sda1"; "/"];
2560        ["cat"; "/new"]], "test file")],
2561    "zero unused inodes and disk blocks on ext2/3 filesystem",
2562    "\
2563 This runs the I<zerofree> program on C<device>.  This program
2564 claims to zero unused inodes and disk blocks on an ext2/3
2565 filesystem, thus making it possible to compress the filesystem
2566 more effectively.
2567
2568 You should B<not> run this program if the filesystem is
2569 mounted.
2570
2571 It is possible that using this program can damage the filesystem
2572 or data on the filesystem.");
2573
2574   ("pvresize", (RErr, [Device "device"]), 98, [Optional "lvm2"],
2575    [],
2576    "resize an LVM physical volume",
2577    "\
2578 This resizes (expands or shrinks) an existing LVM physical
2579 volume to match the new size of the underlying device.");
2580
2581   ("sfdisk_N", (RErr, [Device "device"; Int "partnum";
2582                        Int "cyls"; Int "heads"; Int "sectors";
2583                        String "line"]), 99, [DangerWillRobinson],
2584    [],
2585    "modify a single partition on a block device",
2586    "\
2587 This runs L<sfdisk(8)> option to modify just the single
2588 partition C<n> (note: C<n> counts from 1).
2589
2590 For other parameters, see C<guestfs_sfdisk>.  You should usually
2591 pass C<0> for the cyls/heads/sectors parameters.
2592
2593 See also: C<guestfs_part_add>");
2594
2595   ("sfdisk_l", (RString "partitions", [Device "device"]), 100, [],
2596    [],
2597    "display the partition table",
2598    "\
2599 This displays the partition table on C<device>, in the
2600 human-readable output of the L<sfdisk(8)> command.  It is
2601 not intended to be parsed.
2602
2603 See also: C<guestfs_part_list>");
2604
2605   ("sfdisk_kernel_geometry", (RString "partitions", [Device "device"]), 101, [],
2606    [],
2607    "display the kernel geometry",
2608    "\
2609 This displays the kernel's idea of the geometry of C<device>.
2610
2611 The result is in human-readable format, and not designed to
2612 be parsed.");
2613
2614   ("sfdisk_disk_geometry", (RString "partitions", [Device "device"]), 102, [],
2615    [],
2616    "display the disk geometry from the partition table",
2617    "\
2618 This displays the disk geometry of C<device> read from the
2619 partition table.  Especially in the case where the underlying
2620 block device has been resized, this can be different from the
2621 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
2622
2623 The result is in human-readable format, and not designed to
2624 be parsed.");
2625
2626   ("vg_activate_all", (RErr, [Bool "activate"]), 103, [Optional "lvm2"],
2627    [],
2628    "activate or deactivate all volume groups",
2629    "\
2630 This command activates or (if C<activate> is false) deactivates
2631 all logical volumes in all volume groups.
2632 If activated, then they are made known to the
2633 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2634 then those devices disappear.
2635
2636 This command is the same as running C<vgchange -a y|n>");
2637
2638   ("vg_activate", (RErr, [Bool "activate"; StringList "volgroups"]), 104, [Optional "lvm2"],
2639    [],
2640    "activate or deactivate some volume groups",
2641    "\
2642 This command activates or (if C<activate> is false) deactivates
2643 all logical volumes in the listed volume groups C<volgroups>.
2644 If activated, then they are made known to the
2645 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2646 then those devices disappear.
2647
2648 This command is the same as running C<vgchange -a y|n volgroups...>
2649
2650 Note that if C<volgroups> is an empty list then B<all> volume groups
2651 are activated or deactivated.");
2652
2653   ("lvresize", (RErr, [Device "device"; Int "mbytes"]), 105, [Optional "lvm2"],
2654    [InitNone, Always, TestOutput (
2655       [["part_disk"; "/dev/sda"; "mbr"];
2656        ["pvcreate"; "/dev/sda1"];
2657        ["vgcreate"; "VG"; "/dev/sda1"];
2658        ["lvcreate"; "LV"; "VG"; "10"];
2659        ["mkfs"; "ext2"; "/dev/VG/LV"];
2660        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2661        ["write"; "/new"; "test content"];
2662        ["umount"; "/"];
2663        ["lvresize"; "/dev/VG/LV"; "20"];
2664        ["e2fsck_f"; "/dev/VG/LV"];
2665        ["resize2fs"; "/dev/VG/LV"];
2666        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2667        ["cat"; "/new"]], "test content");
2668     InitNone, Always, TestRun (
2669       (* Make an LV smaller to test RHBZ#587484. *)
2670       [["part_disk"; "/dev/sda"; "mbr"];
2671        ["pvcreate"; "/dev/sda1"];
2672        ["vgcreate"; "VG"; "/dev/sda1"];
2673        ["lvcreate"; "LV"; "VG"; "20"];
2674        ["lvresize"; "/dev/VG/LV"; "10"]])],
2675    "resize an LVM logical volume",
2676    "\
2677 This resizes (expands or shrinks) an existing LVM logical
2678 volume to C<mbytes>.  When reducing, data in the reduced part
2679 is lost.");
2680
2681   ("resize2fs", (RErr, [Device "device"]), 106, [],
2682    [], (* lvresize tests this *)
2683    "resize an ext2, ext3 or ext4 filesystem",
2684    "\
2685 This resizes an ext2, ext3 or ext4 filesystem to match the size of
2686 the underlying device.
2687
2688 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
2689 on the C<device> before calling this command.  For unknown reasons
2690 C<resize2fs> sometimes gives an error about this and sometimes not.
2691 In any case, it is always safe to call C<guestfs_e2fsck_f> before
2692 calling this function.");
2693
2694   ("find", (RStringList "names", [Pathname "directory"]), 107, [ProtocolLimitWarning],
2695    [InitBasicFS, Always, TestOutputList (
2696       [["find"; "/"]], ["lost+found"]);
2697     InitBasicFS, Always, TestOutputList (
2698       [["touch"; "/a"];
2699        ["mkdir"; "/b"];
2700        ["touch"; "/b/c"];
2701        ["find"; "/"]], ["a"; "b"; "b/c"; "lost+found"]);
2702     InitBasicFS, Always, TestOutputList (
2703       [["mkdir_p"; "/a/b/c"];
2704        ["touch"; "/a/b/c/d"];
2705        ["find"; "/a/b/"]], ["c"; "c/d"])],
2706    "find all files and directories",
2707    "\
2708 This command lists out all files and directories, recursively,
2709 starting at C<directory>.  It is essentially equivalent to
2710 running the shell command C<find directory -print> but some
2711 post-processing happens on the output, described below.
2712
2713 This returns a list of strings I<without any prefix>.  Thus
2714 if the directory structure was:
2715
2716  /tmp/a
2717  /tmp/b
2718  /tmp/c/d
2719
2720 then the returned list from C<guestfs_find> C</tmp> would be
2721 4 elements:
2722
2723  a
2724  b
2725  c
2726  c/d
2727
2728 If C<directory> is not a directory, then this command returns
2729 an error.
2730
2731 The returned list is sorted.
2732
2733 See also C<guestfs_find0>.");
2734
2735   ("e2fsck_f", (RErr, [Device "device"]), 108, [],
2736    [], (* lvresize tests this *)
2737    "check an ext2/ext3 filesystem",
2738    "\
2739 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
2740 filesystem checker on C<device>, noninteractively (C<-p>),
2741 even if the filesystem appears to be clean (C<-f>).
2742
2743 This command is only needed because of C<guestfs_resize2fs>
2744 (q.v.).  Normally you should use C<guestfs_fsck>.");
2745
2746   ("sleep", (RErr, [Int "secs"]), 109, [],
2747    [InitNone, Always, TestRun (
2748       [["sleep"; "1"]])],
2749    "sleep for some seconds",
2750    "\
2751 Sleep for C<secs> seconds.");
2752
2753   ("ntfs_3g_probe", (RInt "status", [Bool "rw"; Device "device"]), 110, [Optional "ntfs3g"],
2754    [InitNone, Always, TestOutputInt (
2755       [["part_disk"; "/dev/sda"; "mbr"];
2756        ["mkfs"; "ntfs"; "/dev/sda1"];
2757        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 0);
2758     InitNone, Always, TestOutputInt (
2759       [["part_disk"; "/dev/sda"; "mbr"];
2760        ["mkfs"; "ext2"; "/dev/sda1"];
2761        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 12)],
2762    "probe NTFS volume",
2763    "\
2764 This command runs the L<ntfs-3g.probe(8)> command which probes
2765 an NTFS C<device> for mountability.  (Not all NTFS volumes can
2766 be mounted read-write, and some cannot be mounted at all).
2767
2768 C<rw> is a boolean flag.  Set it to true if you want to test
2769 if the volume can be mounted read-write.  Set it to false if
2770 you want to test if the volume can be mounted read-only.
2771
2772 The return value is an integer which C<0> if the operation
2773 would succeed, or some non-zero value documented in the
2774 L<ntfs-3g.probe(8)> manual page.");
2775
2776   ("sh", (RString "output", [String "command"]), 111, [],
2777    [], (* XXX needs tests *)
2778    "run a command via the shell",
2779    "\
2780 This call runs a command from the guest filesystem via the
2781 guest's C</bin/sh>.
2782
2783 This is like C<guestfs_command>, but passes the command to:
2784
2785  /bin/sh -c \"command\"
2786
2787 Depending on the guest's shell, this usually results in
2788 wildcards being expanded, shell expressions being interpolated
2789 and so on.
2790
2791 All the provisos about C<guestfs_command> apply to this call.");
2792
2793   ("sh_lines", (RStringList "lines", [String "command"]), 112, [],
2794    [], (* XXX needs tests *)
2795    "run a command via the shell returning lines",
2796    "\
2797 This is the same as C<guestfs_sh>, but splits the result
2798 into a list of lines.
2799
2800 See also: C<guestfs_command_lines>");
2801
2802   ("glob_expand", (RStringList "paths", [Pathname "pattern"]), 113, [],
2803    (* Use Pathname here, and hence ABS_PATH (pattern,... in generated
2804     * code in stubs.c, since all valid glob patterns must start with "/".
2805     * There is no concept of "cwd" in libguestfs, hence no "."-relative names.
2806     *)
2807    [InitBasicFS, Always, TestOutputList (
2808       [["mkdir_p"; "/a/b/c"];
2809        ["touch"; "/a/b/c/d"];
2810        ["touch"; "/a/b/c/e"];
2811        ["glob_expand"; "/a/b/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2812     InitBasicFS, Always, TestOutputList (
2813       [["mkdir_p"; "/a/b/c"];
2814        ["touch"; "/a/b/c/d"];
2815        ["touch"; "/a/b/c/e"];
2816        ["glob_expand"; "/a/*/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2817     InitBasicFS, Always, TestOutputList (
2818       [["mkdir_p"; "/a/b/c"];
2819        ["touch"; "/a/b/c/d"];
2820        ["touch"; "/a/b/c/e"];
2821        ["glob_expand"; "/a/*/x/*"]], [])],
2822    "expand a wildcard path",
2823    "\
2824 This command searches for all the pathnames matching
2825 C<pattern> according to the wildcard expansion rules
2826 used by the shell.
2827
2828 If no paths match, then this returns an empty list
2829 (note: not an error).
2830
2831 It is just a wrapper around the C L<glob(3)> function
2832 with flags C<GLOB_MARK|GLOB_BRACE>.
2833 See that manual page for more details.");
2834
2835   ("scrub_device", (RErr, [Device "device"]), 114, [DangerWillRobinson; Optional "scrub"],
2836    [InitNone, Always, TestRun ( (* use /dev/sdc because it's smaller *)
2837       [["scrub_device"; "/dev/sdc"]])],
2838    "scrub (securely wipe) a device",
2839    "\
2840 This command writes patterns over C<device> to make data retrieval
2841 more difficult.
2842
2843 It is an interface to the L<scrub(1)> program.  See that
2844 manual page for more details.");
2845
2846   ("scrub_file", (RErr, [Pathname "file"]), 115, [Optional "scrub"],
2847    [InitBasicFS, Always, TestRun (
2848       [["write"; "/file"; "content"];
2849        ["scrub_file"; "/file"]])],
2850    "scrub (securely wipe) a file",
2851    "\
2852 This command writes patterns over a file to make data retrieval
2853 more difficult.
2854
2855 The file is I<removed> after scrubbing.
2856
2857 It is an interface to the L<scrub(1)> program.  See that
2858 manual page for more details.");
2859
2860   ("scrub_freespace", (RErr, [Pathname "dir"]), 116, [Optional "scrub"],
2861    [], (* XXX needs testing *)
2862    "scrub (securely wipe) free space",
2863    "\
2864 This command creates the directory C<dir> and then fills it
2865 with files until the filesystem is full, and scrubs the files
2866 as for C<guestfs_scrub_file>, and deletes them.
2867 The intention is to scrub any free space on the partition
2868 containing C<dir>.
2869
2870 It is an interface to the L<scrub(1)> program.  See that
2871 manual page for more details.");
2872
2873   ("mkdtemp", (RString "dir", [Pathname "template"]), 117, [],
2874    [InitBasicFS, Always, TestRun (
2875       [["mkdir"; "/tmp"];
2876        ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2877    "create a temporary directory",
2878    "\
2879 This command creates a temporary directory.  The
2880 C<template> parameter should be a full pathname for the
2881 temporary directory name with the final six characters being
2882 \"XXXXXX\".
2883
2884 For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\",
2885 the second one being suitable for Windows filesystems.
2886
2887 The name of the temporary directory that was created
2888 is returned.
2889
2890 The temporary directory is created with mode 0700
2891 and is owned by root.
2892
2893 The caller is responsible for deleting the temporary
2894 directory and its contents after use.
2895
2896 See also: L<mkdtemp(3)>");
2897
2898   ("wc_l", (RInt "lines", [Pathname "path"]), 118, [],
2899    [InitISOFS, Always, TestOutputInt (
2900       [["wc_l"; "/10klines"]], 10000);
2901     (* Test for RHBZ#579608, absolute symbolic links. *)
2902     InitISOFS, Always, TestOutputInt (
2903       [["wc_l"; "/abssymlink"]], 10000)],
2904    "count lines in a file",
2905    "\
2906 This command counts the lines in a file, using the
2907 C<wc -l> external command.");
2908
2909   ("wc_w", (RInt "words", [Pathname "path"]), 119, [],
2910    [InitISOFS, Always, TestOutputInt (
2911       [["wc_w"; "/10klines"]], 10000)],
2912    "count words in a file",
2913    "\
2914 This command counts the words in a file, using the
2915 C<wc -w> external command.");
2916
2917   ("wc_c", (RInt "chars", [Pathname "path"]), 120, [],
2918    [InitISOFS, Always, TestOutputInt (
2919       [["wc_c"; "/100kallspaces"]], 102400)],
2920    "count characters in a file",
2921    "\
2922 This command counts the characters in a file, using the
2923 C<wc -c> external command.");
2924
2925   ("head", (RStringList "lines", [Pathname "path"]), 121, [ProtocolLimitWarning],
2926    [InitISOFS, Always, TestOutputList (
2927       [["head"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz";"3abcdefghijklmnopqrstuvwxyz";"4abcdefghijklmnopqrstuvwxyz";"5abcdefghijklmnopqrstuvwxyz";"6abcdefghijklmnopqrstuvwxyz";"7abcdefghijklmnopqrstuvwxyz";"8abcdefghijklmnopqrstuvwxyz";"9abcdefghijklmnopqrstuvwxyz"]);
2928     (* Test for RHBZ#579608, absolute symbolic links. *)
2929     InitISOFS, Always, TestOutputList (
2930       [["head"; "/abssymlink"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz";"3abcdefghijklmnopqrstuvwxyz";"4abcdefghijklmnopqrstuvwxyz";"5abcdefghijklmnopqrstuvwxyz";"6abcdefghijklmnopqrstuvwxyz";"7abcdefghijklmnopqrstuvwxyz";"8abcdefghijklmnopqrstuvwxyz";"9abcdefghijklmnopqrstuvwxyz"])],
2931    "return first 10 lines of a file",
2932    "\
2933 This command returns up to the first 10 lines of a file as
2934 a list of strings.");
2935
2936   ("head_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 122, [ProtocolLimitWarning],
2937    [InitISOFS, Always, TestOutputList (
2938       [["head_n"; "3"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2939     InitISOFS, Always, TestOutputList (
2940       [["head_n"; "-9997"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2941     InitISOFS, Always, TestOutputList (
2942       [["head_n"; "0"; "/10klines"]], [])],
2943    "return first N lines of a file",
2944    "\
2945 If the parameter C<nrlines> is a positive number, this returns the first
2946 C<nrlines> lines of the file C<path>.
2947
2948 If the parameter C<nrlines> is a negative number, this returns lines
2949 from the file C<path>, excluding the last C<nrlines> lines.
2950
2951 If the parameter C<nrlines> is zero, this returns an empty list.");
2952
2953   ("tail", (RStringList "lines", [Pathname "path"]), 123, [ProtocolLimitWarning],
2954    [InitISOFS, Always, TestOutputList (
2955       [["tail"; "/10klines"]], ["9990abcdefghijklmnopqrstuvwxyz";"9991abcdefghijklmnopqrstuvwxyz";"9992abcdefghijklmnopqrstuvwxyz";"9993abcdefghijklmnopqrstuvwxyz";"9994abcdefghijklmnopqrstuvwxyz";"9995abcdefghijklmnopqrstuvwxyz";"9996abcdefghijklmnopqrstuvwxyz";"9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"])],
2956    "return last 10 lines of a file",
2957    "\
2958 This command returns up to the last 10 lines of a file as
2959 a list of strings.");
2960
2961   ("tail_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 124, [ProtocolLimitWarning],
2962    [InitISOFS, Always, TestOutputList (
2963       [["tail_n"; "3"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2964     InitISOFS, Always, TestOutputList (
2965       [["tail_n"; "-9998"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2966     InitISOFS, Always, TestOutputList (
2967       [["tail_n"; "0"; "/10klines"]], [])],
2968    "return last N lines of a file",
2969    "\
2970 If the parameter C<nrlines> is a positive number, this returns the last
2971 C<nrlines> lines of the file C<path>.
2972
2973 If the parameter C<nrlines> is a negative number, this returns lines
2974 from the file C<path>, starting with the C<-nrlines>th line.
2975
2976 If the parameter C<nrlines> is zero, this returns an empty list.");
2977
2978   ("df", (RString "output", []), 125, [],
2979    [], (* XXX Tricky to test because it depends on the exact format
2980         * of the 'df' command and other imponderables.
2981         *)
2982    "report file system disk space usage",
2983    "\
2984 This command runs the C<df> command to report disk space used.
2985
2986 This command is mostly useful for interactive sessions.  It
2987 is I<not> intended that you try to parse the output string.
2988 Use C<statvfs> from programs.");
2989
2990   ("df_h", (RString "output", []), 126, [],
2991    [], (* XXX Tricky to test because it depends on the exact format
2992         * of the 'df' command and other imponderables.
2993         *)
2994    "report file system disk space usage (human readable)",
2995    "\
2996 This command runs the C<df -h> command to report disk space used
2997 in human-readable format.
2998
2999 This command is mostly useful for interactive sessions.  It
3000 is I<not> intended that you try to parse the output string.
3001 Use C<statvfs> from programs.");
3002
3003   ("du", (RInt64 "sizekb", [Pathname "path"]), 127, [],
3004    [InitISOFS, Always, TestOutputInt (
3005       [["du"; "/directory"]], 2 (* ISO fs blocksize is 2K *))],
3006    "estimate file space usage",
3007    "\
3008 This command runs the C<du -s> command to estimate file space
3009 usage for C<path>.
3010
3011 C<path> can be a file or a directory.  If C<path> is a directory
3012 then the estimate includes the contents of the directory and all
3013 subdirectories (recursively).
3014
3015 The result is the estimated size in I<kilobytes>
3016 (ie. units of 1024 bytes).");
3017
3018   ("initrd_list", (RStringList "filenames", [Pathname "path"]), 128, [],
3019    [InitISOFS, Always, TestOutputList (
3020       [["initrd_list"; "/initrd"]], ["empty";"known-1";"known-2";"known-3";"known-4"; "known-5"])],
3021    "list files in an initrd",
3022    "\
3023 This command lists out files contained in an initrd.
3024
3025 The files are listed without any initial C</> character.  The
3026 files are listed in the order they appear (not necessarily
3027 alphabetical).  Directory names are listed as separate items.
3028
3029 Old Linux kernels (2.4 and earlier) used a compressed ext2
3030 filesystem as initrd.  We I<only> support the newer initramfs
3031 format (compressed cpio files).");
3032
3033   ("mount_loop", (RErr, [Pathname "file"; Pathname "mountpoint"]), 129, [],
3034    [],
3035    "mount a file using the loop device",
3036    "\
3037 This command lets you mount C<file> (a filesystem image
3038 in a file) on a mount point.  It is entirely equivalent to
3039 the command C<mount -o loop file mountpoint>.");
3040
3041   ("mkswap", (RErr, [Device "device"]), 130, [],
3042    [InitEmpty, Always, TestRun (
3043       [["part_disk"; "/dev/sda"; "mbr"];
3044        ["mkswap"; "/dev/sda1"]])],
3045    "create a swap partition",
3046    "\
3047 Create a swap partition on C<device>.");
3048
3049   ("mkswap_L", (RErr, [String "label"; Device "device"]), 131, [],
3050    [InitEmpty, Always, TestRun (
3051       [["part_disk"; "/dev/sda"; "mbr"];
3052        ["mkswap_L"; "hello"; "/dev/sda1"]])],
3053    "create a swap partition with a label",
3054    "\
3055 Create a swap partition on C<device> with label C<label>.
3056
3057 Note that you cannot attach a swap label to a block device
3058 (eg. C</dev/sda>), just to a partition.  This appears to be
3059 a limitation of the kernel or swap tools.");
3060
3061   ("mkswap_U", (RErr, [String "uuid"; Device "device"]), 132, [Optional "linuxfsuuid"],
3062    (let uuid = uuidgen () in
3063     [InitEmpty, Always, TestRun (
3064        [["part_disk"; "/dev/sda"; "mbr"];
3065         ["mkswap_U"; uuid; "/dev/sda1"]])]),
3066    "create a swap partition with an explicit UUID",
3067    "\
3068 Create a swap partition on C<device> with UUID C<uuid>.");
3069
3070   ("mknod", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 133, [Optional "mknod"],
3071    [InitBasicFS, Always, TestOutputStruct (
3072       [["mknod"; "0o10777"; "0"; "0"; "/node"];
3073        (* NB: default umask 022 means 0777 -> 0755 in these tests *)
3074        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)]);
3075     InitBasicFS, Always, TestOutputStruct (
3076       [["mknod"; "0o60777"; "66"; "99"; "/node"];
3077        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
3078    "make block, character or FIFO devices",
3079    "\
3080 This call creates block or character special devices, or
3081 named pipes (FIFOs).
3082
3083 The C<mode> parameter should be the mode, using the standard
3084 constants.  C<devmajor> and C<devminor> are the
3085 device major and minor numbers, only used when creating block
3086 and character special devices.
3087
3088 Note that, just like L<mknod(2)>, the mode must be bitwise
3089 OR'd with S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call
3090 just creates a regular file).  These constants are
3091 available in the standard Linux header files, or you can use
3092 C<guestfs_mknod_b>, C<guestfs_mknod_c> or C<guestfs_mkfifo>
3093 which are wrappers around this command which bitwise OR
3094 in the appropriate constant for you.
3095
3096 The mode actually set is affected by the umask.");
3097
3098   ("mkfifo", (RErr, [Int "mode"; Pathname "path"]), 134, [Optional "mknod"],
3099    [InitBasicFS, Always, TestOutputStruct (
3100       [["mkfifo"; "0o777"; "/node"];
3101        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)])],
3102    "make FIFO (named pipe)",
3103    "\
3104 This call creates a FIFO (named pipe) called C<path> with
3105 mode C<mode>.  It is just a convenient wrapper around
3106 C<guestfs_mknod>.
3107
3108 The mode actually set is affected by the umask.");
3109
3110   ("mknod_b", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 135, [Optional "mknod"],
3111    [InitBasicFS, Always, TestOutputStruct (
3112       [["mknod_b"; "0o777"; "99"; "66"; "/node"];
3113        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
3114    "make block device node",
3115    "\
3116 This call creates a block device node called C<path> with
3117 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
3118 It is just a convenient wrapper around C<guestfs_mknod>.
3119
3120 The mode actually set is affected by the umask.");
3121
3122   ("mknod_c", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 136, [Optional "mknod"],
3123    [InitBasicFS, Always, TestOutputStruct (
3124       [["mknod_c"; "0o777"; "99"; "66"; "/node"];
3125        ["stat"; "/node"]], [CompareWithInt ("mode", 0o20755)])],
3126    "make char device node",
3127    "\
3128 This call creates a char device node called C<path> with
3129 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
3130 It is just a convenient wrapper around C<guestfs_mknod>.
3131
3132 The mode actually set is affected by the umask.");
3133
3134   ("umask", (RInt "oldmask", [Int "mask"]), 137, [FishOutput FishOutputOctal],
3135    [InitEmpty, Always, TestOutputInt (
3136       [["umask"; "0o22"]], 0o22)],
3137    "set file mode creation mask (umask)",
3138    "\
3139 This function sets the mask used for creating new files and
3140 device nodes to C<mask & 0777>.
3141
3142 Typical umask values would be C<022> which creates new files
3143 with permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and
3144 C<002> which creates new files with permissions like
3145 \"-rw-rw-r--\" or \"-rwxrwxr-x\".
3146
3147 The default umask is C<022>.  This is important because it
3148 means that directories and device nodes will be created with
3149 C<0644> or C<0755> mode even if you specify C<0777>.
3150
3151 See also C<guestfs_get_umask>,
3152 L<umask(2)>, C<guestfs_mknod>, C<guestfs_mkdir>.
3153
3154 This call returns the previous umask.");
3155
3156   ("readdir", (RStructList ("entries", "dirent"), [Pathname "dir"]), 138, [],
3157    [],
3158    "read directories entries",
3159    "\
3160 This returns the list of directory entries in directory C<dir>.
3161
3162 All entries in the directory are returned, including C<.> and
3163 C<..>.  The entries are I<not> sorted, but returned in the same
3164 order as the underlying filesystem.
3165
3166 Also this call returns basic file type information about each
3167 file.  The C<ftyp> field will contain one of the following characters:
3168
3169 =over 4
3170
3171 =item 'b'
3172
3173 Block special
3174
3175 =item 'c'
3176
3177 Char special
3178
3179 =item 'd'
3180
3181 Directory
3182
3183 =item 'f'
3184
3185 FIFO (named pipe)
3186
3187 =item 'l'
3188
3189 Symbolic link
3190
3191 =item 'r'
3192
3193 Regular file
3194
3195 =item 's'
3196
3197 Socket
3198
3199 =item 'u'
3200
3201 Unknown file type
3202
3203 =item '?'
3204
3205 The L<readdir(3)> call returned a C<d_type> field with an
3206 unexpected value
3207
3208 =back
3209
3210 This function is primarily intended for use by programs.  To
3211 get a simple list of names, use C<guestfs_ls>.  To get a printable
3212 directory for human consumption, use C<guestfs_ll>.");
3213
3214   ("sfdiskM", (RErr, [Device "device"; StringList "lines"]), 139, [DangerWillRobinson],
3215    [],
3216    "create partitions on a block device",
3217    "\
3218 This is a simplified interface to the C<guestfs_sfdisk>
3219 command, where partition sizes are specified in megabytes
3220 only (rounded to the nearest cylinder) and you don't need
3221 to specify the cyls, heads and sectors parameters which
3222 were rarely if ever used anyway.
3223
3224 See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage
3225 and C<guestfs_part_disk>");
3226
3227   ("zfile", (RString "description", [String "meth"; Pathname "path"]), 140, [DeprecatedBy "file"],
3228    [],
3229    "determine file type inside a compressed file",
3230    "\
3231 This command runs C<file> after first decompressing C<path>
3232 using C<method>.
3233
3234 C<method> must be one of C<gzip>, C<compress> or C<bzip2>.
3235
3236 Since 1.0.63, use C<guestfs_file> instead which can now
3237 process compressed files.");
3238
3239   ("getxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 141, [Optional "linuxxattrs"],
3240    [],
3241    "list extended attributes of a file or directory",
3242    "\
3243 This call lists the extended attributes of the file or directory
3244 C<path>.
3245
3246 At the system call level, this is a combination of the
3247 L<listxattr(2)> and L<getxattr(2)> calls.
3248
3249 See also: C<guestfs_lgetxattrs>, L<attr(5)>.");
3250
3251   ("lgetxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 142, [Optional "linuxxattrs"],
3252    [],
3253    "list extended attributes of a file or directory",
3254    "\
3255 This is the same as C<guestfs_getxattrs>, but if C<path>
3256 is a symbolic link, then it returns the extended attributes
3257 of the link itself.");
3258
3259   ("setxattr", (RErr, [String "xattr";
3260                        String "val"; Int "vallen"; (* will be BufferIn *)
3261                        Pathname "path"]), 143, [Optional "linuxxattrs"],
3262    [],
3263    "set extended attribute of a file or directory",
3264    "\
3265 This call sets the extended attribute named C<xattr>
3266 of the file C<path> to the value C<val> (of length C<vallen>).
3267 The value is arbitrary 8 bit data.
3268
3269 See also: C<guestfs_lsetxattr>, L<attr(5)>.");
3270
3271   ("lsetxattr", (RErr, [String "xattr";
3272                         String "val"; Int "vallen"; (* will be BufferIn *)
3273                         Pathname "path"]), 144, [Optional "linuxxattrs"],
3274    [],
3275    "set extended attribute of a file or directory",
3276    "\
3277 This is the same as C<guestfs_setxattr>, but if C<path>
3278 is a symbolic link, then it sets an extended attribute
3279 of the link itself.");
3280
3281   ("removexattr", (RErr, [String "xattr"; Pathname "path"]), 145, [Optional "linuxxattrs"],
3282    [],
3283    "remove extended attribute of a file or directory",
3284    "\
3285 This call removes the extended attribute named C<xattr>
3286 of the file C<path>.
3287
3288 See also: C<guestfs_lremovexattr>, L<attr(5)>.");
3289
3290   ("lremovexattr", (RErr, [String "xattr"; Pathname "path"]), 146, [Optional "linuxxattrs"],
3291    [],
3292    "remove extended attribute of a file or directory",
3293    "\
3294 This is the same as C<guestfs_removexattr>, but if C<path>
3295 is a symbolic link, then it removes an extended attribute
3296 of the link itself.");
3297
3298   ("mountpoints", (RHashtable "mps", []), 147, [],
3299    [],
3300    "show mountpoints",
3301    "\
3302 This call is similar to C<guestfs_mounts>.  That call returns
3303 a list of devices.  This one returns a hash table (map) of
3304 device name to directory where the device is mounted.");
3305
3306   ("mkmountpoint", (RErr, [String "exemptpath"]), 148, [],
3307    (* This is a special case: while you would expect a parameter
3308     * of type "Pathname", that doesn't work, because it implies
3309     * NEED_ROOT in the generated calling code in stubs.c, and
3310     * this function cannot use NEED_ROOT.
3311     *)
3312    [],
3313    "create a mountpoint",
3314    "\
3315 C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are
3316 specialized calls that can be used to create extra mountpoints
3317 before mounting the first filesystem.
3318
3319 These calls are I<only> necessary in some very limited circumstances,
3320 mainly the case where you want to mount a mix of unrelated and/or
3321 read-only filesystems together.
3322
3323 For example, live CDs often contain a \"Russian doll\" nest of
3324 filesystems, an ISO outer layer, with a squashfs image inside, with
3325 an ext2/3 image inside that.  You can unpack this as follows
3326 in guestfish:
3327
3328  add-ro Fedora-11-i686-Live.iso
3329  run
3330  mkmountpoint /cd
3331  mkmountpoint /squash
3332  mkmountpoint /ext3
3333  mount /dev/sda /cd
3334  mount-loop /cd/LiveOS/squashfs.img /squash
3335  mount-loop /squash/LiveOS/ext3fs.img /ext3
3336
3337 The inner filesystem is now unpacked under the /ext3 mountpoint.");
3338
3339   ("rmmountpoint", (RErr, [String "exemptpath"]), 149, [],
3340    [],
3341    "remove a mountpoint",
3342    "\
3343 This calls removes a mountpoint that was previously created
3344 with C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint>
3345 for full details.");
3346
3347   ("read_file", (RBufferOut "content", [Pathname "path"]), 150, [ProtocolLimitWarning],
3348    [InitISOFS, Always, TestOutputBuffer (
3349       [["read_file"; "/known-4"]], "abc\ndef\nghi");
3350     (* Test various near large, large and too large files (RHBZ#589039). *)
3351     InitBasicFS, Always, TestLastFail (
3352       [["touch"; "/a"];
3353        ["truncate_size"; "/a"; "4194303"]; (* GUESTFS_MESSAGE_MAX - 1 *)
3354        ["read_file"; "/a"]]);
3355     InitBasicFS, Always, TestLastFail (
3356       [["touch"; "/a"];
3357        ["truncate_size"; "/a"; "4194304"]; (* GUESTFS_MESSAGE_MAX *)
3358        ["read_file"; "/a"]]);
3359     InitBasicFS, Always, TestLastFail (
3360       [["touch"; "/a"];
3361        ["truncate_size"; "/a"; "41943040"]; (* GUESTFS_MESSAGE_MAX * 10 *)
3362        ["read_file"; "/a"]])],
3363    "read a file",
3364    "\
3365 This calls returns the contents of the file C<path> as a
3366 buffer.
3367
3368 Unlike C<guestfs_cat>, this function can correctly
3369 handle files that contain embedded ASCII NUL characters.
3370 However unlike C<guestfs_download>, this function is limited
3371 in the total size of file that can be handled.");
3372
3373   ("grep", (RStringList "lines", [String "regex"; Pathname "path"]), 151, [ProtocolLimitWarning],
3374    [InitISOFS, Always, TestOutputList (
3375       [["grep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"]);
3376     InitISOFS, Always, TestOutputList (
3377       [["grep"; "nomatch"; "/test-grep.txt"]], []);
3378     (* Test for RHBZ#579608, absolute symbolic links. *)
3379     InitISOFS, Always, TestOutputList (
3380       [["grep"; "nomatch"; "/abssymlink"]], [])],
3381    "return lines matching a pattern",
3382    "\
3383 This calls the external C<grep> program and returns the
3384 matching lines.");
3385
3386   ("egrep", (RStringList "lines", [String "regex"; Pathname "path"]), 152, [ProtocolLimitWarning],
3387    [InitISOFS, Always, TestOutputList (
3388       [["egrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3389    "return lines matching a pattern",
3390    "\
3391 This calls the external C<egrep> program and returns the
3392 matching lines.");
3393
3394   ("fgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 153, [ProtocolLimitWarning],
3395    [InitISOFS, Always, TestOutputList (
3396       [["fgrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3397    "return lines matching a pattern",
3398    "\
3399 This calls the external C<fgrep> program and returns the
3400 matching lines.");
3401
3402   ("grepi", (RStringList "lines", [String "regex"; Pathname "path"]), 154, [ProtocolLimitWarning],
3403    [InitISOFS, Always, TestOutputList (
3404       [["grepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3405    "return lines matching a pattern",
3406    "\
3407 This calls the external C<grep -i> program and returns the
3408 matching lines.");
3409
3410   ("egrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 155, [ProtocolLimitWarning],
3411    [InitISOFS, Always, TestOutputList (
3412       [["egrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3413    "return lines matching a pattern",
3414    "\
3415 This calls the external C<egrep -i> program and returns the
3416 matching lines.");
3417
3418   ("fgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 156, [ProtocolLimitWarning],
3419    [InitISOFS, Always, TestOutputList (
3420       [["fgrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3421    "return lines matching a pattern",
3422    "\
3423 This calls the external C<fgrep -i> program and returns the
3424 matching lines.");
3425
3426   ("zgrep", (RStringList "lines", [String "regex"; Pathname "path"]), 157, [ProtocolLimitWarning],
3427    [InitISOFS, Always, TestOutputList (
3428       [["zgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3429    "return lines matching a pattern",
3430    "\
3431 This calls the external C<zgrep> program and returns the
3432 matching lines.");
3433
3434   ("zegrep", (RStringList "lines", [String "regex"; Pathname "path"]), 158, [ProtocolLimitWarning],
3435    [InitISOFS, Always, TestOutputList (
3436       [["zegrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3437    "return lines matching a pattern",
3438    "\
3439 This calls the external C<zegrep> program and returns the
3440 matching lines.");
3441
3442   ("zfgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 159, [ProtocolLimitWarning],
3443    [InitISOFS, Always, TestOutputList (
3444       [["zfgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3445    "return lines matching a pattern",
3446    "\
3447 This calls the external C<zfgrep> program and returns the
3448 matching lines.");
3449
3450   ("zgrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 160, [ProtocolLimitWarning],
3451    [InitISOFS, Always, TestOutputList (
3452       [["zgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3453    "return lines matching a pattern",
3454    "\
3455 This calls the external C<zgrep -i> program and returns the
3456 matching lines.");
3457
3458   ("zegrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 161, [ProtocolLimitWarning],
3459    [InitISOFS, Always, TestOutputList (
3460       [["zegrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3461    "return lines matching a pattern",
3462    "\
3463 This calls the external C<zegrep -i> program and returns the
3464 matching lines.");
3465
3466   ("zfgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 162, [ProtocolLimitWarning],
3467    [InitISOFS, Always, TestOutputList (
3468       [["zfgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3469    "return lines matching a pattern",
3470    "\
3471 This calls the external C<zfgrep -i> program and returns the
3472 matching lines.");
3473
3474   ("realpath", (RString "rpath", [Pathname "path"]), 163, [Optional "realpath"],
3475    [InitISOFS, Always, TestOutput (
3476       [["realpath"; "/../directory"]], "/directory")],
3477    "canonicalized absolute pathname",
3478    "\
3479 Return the canonicalized absolute pathname of C<path>.  The
3480 returned path has no C<.>, C<..> or symbolic link path elements.");
3481
3482   ("ln", (RErr, [String "target"; Pathname "linkname"]), 164, [],
3483    [InitBasicFS, Always, TestOutputStruct (
3484       [["touch"; "/a"];
3485        ["ln"; "/a"; "/b"];
3486        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3487    "create a hard link",
3488    "\
3489 This command creates a hard link using the C<ln> command.");
3490
3491   ("ln_f", (RErr, [String "target"; Pathname "linkname"]), 165, [],
3492    [InitBasicFS, Always, TestOutputStruct (
3493       [["touch"; "/a"];
3494        ["touch"; "/b"];
3495        ["ln_f"; "/a"; "/b"];
3496        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3497    "create a hard link",
3498    "\
3499 This command creates a hard link using the C<ln -f> command.
3500 The C<-f> option removes the link (C<linkname>) if it exists already.");
3501
3502   ("ln_s", (RErr, [String "target"; Pathname "linkname"]), 166, [],
3503    [InitBasicFS, Always, TestOutputStruct (
3504       [["touch"; "/a"];
3505        ["ln_s"; "a"; "/b"];
3506        ["lstat"; "/b"]], [CompareWithInt ("mode", 0o120777)])],
3507    "create a symbolic link",
3508    "\
3509 This command creates a symbolic link using the C<ln -s> command.");
3510
3511   ("ln_sf", (RErr, [String "target"; Pathname "linkname"]), 167, [],
3512    [InitBasicFS, Always, TestOutput (
3513       [["mkdir_p"; "/a/b"];
3514        ["touch"; "/a/b/c"];
3515        ["ln_sf"; "../d"; "/a/b/c"];
3516        ["readlink"; "/a/b/c"]], "../d")],
3517    "create a symbolic link",
3518    "\
3519 This command creates a symbolic link using the C<ln -sf> command,
3520 The C<-f> option removes the link (C<linkname>) if it exists already.");
3521
3522   ("readlink", (RString "link", [Pathname "path"]), 168, [],
3523    [] (* XXX tested above *),
3524    "read the target of a symbolic link",
3525    "\
3526 This command reads the target of a symbolic link.");
3527
3528   ("fallocate", (RErr, [Pathname "path"; Int "len"]), 169, [DeprecatedBy "fallocate64"],
3529    [InitBasicFS, Always, TestOutputStruct (
3530       [["fallocate"; "/a"; "1000000"];
3531        ["stat"; "/a"]], [CompareWithInt ("size", 1_000_000)])],
3532    "preallocate a file in the guest filesystem",
3533    "\
3534 This command preallocates a file (containing zero bytes) named
3535 C<path> of size C<len> bytes.  If the file exists already, it
3536 is overwritten.
3537
3538 Do not confuse this with the guestfish-specific
3539 C<alloc> command which allocates a file in the host and
3540 attaches it as a device.");
3541
3542   ("swapon_device", (RErr, [Device "device"]), 170, [],
3543    [InitPartition, Always, TestRun (
3544       [["mkswap"; "/dev/sda1"];
3545        ["swapon_device"; "/dev/sda1"];
3546        ["swapoff_device"; "/dev/sda1"]])],
3547    "enable swap on device",
3548    "\
3549 This command enables the libguestfs appliance to use the
3550 swap device or partition named C<device>.  The increased
3551 memory is made available for all commands, for example
3552 those run using C<guestfs_command> or C<guestfs_sh>.
3553
3554 Note that you should not swap to existing guest swap
3555 partitions unless you know what you are doing.  They may
3556 contain hibernation information, or other information that
3557 the guest doesn't want you to trash.  You also risk leaking
3558 information about the host to the guest this way.  Instead,
3559 attach a new host device to the guest and swap on that.");
3560
3561   ("swapoff_device", (RErr, [Device "device"]), 171, [],
3562    [], (* XXX tested by swapon_device *)
3563    "disable swap on device",
3564    "\
3565 This command disables the libguestfs appliance swap
3566 device or partition named C<device>.
3567 See C<guestfs_swapon_device>.");
3568
3569   ("swapon_file", (RErr, [Pathname "file"]), 172, [],
3570    [InitBasicFS, Always, TestRun (
3571       [["fallocate"; "/swap"; "8388608"];
3572        ["mkswap_file"; "/swap"];
3573        ["swapon_file"; "/swap"];
3574        ["swapoff_file"; "/swap"]])],
3575    "enable swap on file",
3576    "\
3577 This command enables swap to a file.
3578 See C<guestfs_swapon_device> for other notes.");
3579
3580   ("swapoff_file", (RErr, [Pathname "file"]), 173, [],
3581    [], (* XXX tested by swapon_file *)
3582    "disable swap on file",
3583    "\
3584 This command disables the libguestfs appliance swap on file.");
3585
3586   ("swapon_label", (RErr, [String "label"]), 174, [],
3587    [InitEmpty, Always, TestRun (
3588       [["part_disk"; "/dev/sdb"; "mbr"];
3589        ["mkswap_L"; "swapit"; "/dev/sdb1"];
3590        ["swapon_label"; "swapit"];
3591        ["swapoff_label"; "swapit"];
3592        ["zero"; "/dev/sdb"];
3593        ["blockdev_rereadpt"; "/dev/sdb"]])],
3594    "enable swap on labeled swap partition",
3595    "\
3596 This command enables swap to a labeled swap partition.
3597 See C<guestfs_swapon_device> for other notes.");
3598
3599   ("swapoff_label", (RErr, [String "label"]), 175, [],
3600    [], (* XXX tested by swapon_label *)
3601    "disable swap on labeled swap partition",
3602    "\
3603 This command disables the libguestfs appliance swap on
3604 labeled swap partition.");
3605
3606   ("swapon_uuid", (RErr, [String "uuid"]), 176, [Optional "linuxfsuuid"],
3607    (let uuid = uuidgen () in
3608     [InitEmpty, Always, TestRun (
3609        [["mkswap_U"; uuid; "/dev/sdb"];
3610         ["swapon_uuid"; uuid];
3611         ["swapoff_uuid"; uuid]])]),
3612    "enable swap on swap partition by UUID",
3613    "\
3614 This command enables swap to a swap partition with the given UUID.
3615 See C<guestfs_swapon_device> for other notes.");
3616
3617   ("swapoff_uuid", (RErr, [String "uuid"]), 177, [Optional "linuxfsuuid"],
3618    [], (* XXX tested by swapon_uuid *)
3619    "disable swap on swap partition by UUID",
3620    "\
3621 This command disables the libguestfs appliance swap partition
3622 with the given UUID.");
3623
3624   ("mkswap_file", (RErr, [Pathname "path"]), 178, [],
3625    [InitBasicFS, Always, TestRun (
3626       [["fallocate"; "/swap"; "8388608"];
3627        ["mkswap_file"; "/swap"]])],
3628    "create a swap file",
3629    "\
3630 Create a swap file.
3631
3632 This command just writes a swap file signature to an existing
3633 file.  To create the file itself, use something like C<guestfs_fallocate>.");
3634
3635   ("inotify_init", (RErr, [Int "maxevents"]), 179, [Optional "inotify"],
3636    [InitISOFS, Always, TestRun (
3637       [["inotify_init"; "0"]])],
3638    "create an inotify handle",
3639    "\
3640 This command creates a new inotify handle.
3641 The inotify subsystem can be used to notify events which happen to
3642 objects in the guest filesystem.
3643
3644 C<maxevents> is the maximum number of events which will be
3645 queued up between calls to C<guestfs_inotify_read> or
3646 C<guestfs_inotify_files>.
3647 If this is passed as C<0>, then the kernel (or previously set)
3648 default is used.  For Linux 2.6.29 the default was 16384 events.
3649 Beyond this limit, the kernel throws away events, but records
3650 the fact that it threw them away by setting a flag
3651 C<IN_Q_OVERFLOW> in the returned structure list (see
3652 C<guestfs_inotify_read>).
3653
3654 Before any events are generated, you have to add some
3655 watches to the internal watch list.  See:
3656 C<guestfs_inotify_add_watch>,
3657 C<guestfs_inotify_rm_watch> and
3658 C<guestfs_inotify_watch_all>.
3659
3660 Queued up events should be read periodically by calling
3661 C<guestfs_inotify_read>
3662 (or C<guestfs_inotify_files> which is just a helpful
3663 wrapper around C<guestfs_inotify_read>).  If you don't
3664 read the events out often enough then you risk the internal
3665 queue overflowing.
3666
3667 The handle should be closed after use by calling
3668 C<guestfs_inotify_close>.  This also removes any
3669 watches automatically.
3670
3671 See also L<inotify(7)> for an overview of the inotify interface
3672 as exposed by the Linux kernel, which is roughly what we expose
3673 via libguestfs.  Note that there is one global inotify handle
3674 per libguestfs instance.");
3675
3676   ("inotify_add_watch", (RInt64 "wd", [Pathname "path"; Int "mask"]), 180, [Optional "inotify"],
3677    [InitBasicFS, Always, TestOutputList (
3678       [["inotify_init"; "0"];
3679        ["inotify_add_watch"; "/"; "1073741823"];
3680        ["touch"; "/a"];
3681        ["touch"; "/b"];
3682        ["inotify_files"]], ["a"; "b"])],
3683    "add an inotify watch",
3684    "\
3685 Watch C<path> for the events listed in C<mask>.
3686
3687 Note that if C<path> is a directory then events within that
3688 directory are watched, but this does I<not> happen recursively
3689 (in subdirectories).
3690
3691 Note for non-C or non-Linux callers: the inotify events are
3692 defined by the Linux kernel ABI and are listed in
3693 C</usr/include/sys/inotify.h>.");
3694
3695   ("inotify_rm_watch", (RErr, [Int(*XXX64*) "wd"]), 181, [Optional "inotify"],
3696    [],
3697    "remove an inotify watch",
3698    "\
3699 Remove a previously defined inotify watch.
3700 See C<guestfs_inotify_add_watch>.");
3701
3702   ("inotify_read", (RStructList ("events", "inotify_event"), []), 182, [Optional "inotify"],
3703    [],
3704    "return list of inotify events",
3705    "\
3706 Return the complete queue of events that have happened
3707 since the previous read call.
3708
3709 If no events have happened, this returns an empty list.
3710
3711 I<Note>: In order to make sure that all events have been
3712 read, you must call this function repeatedly until it
3713 returns an empty list.  The reason is that the call will
3714 read events up to the maximum appliance-to-host message
3715 size and leave remaining events in the queue.");
3716
3717   ("inotify_files", (RStringList "paths", []), 183, [Optional "inotify"],
3718    [],
3719    "return list of watched files that had events",
3720    "\
3721 This function is a helpful wrapper around C<guestfs_inotify_read>
3722 which just returns a list of pathnames of objects that were
3723 touched.  The returned pathnames are sorted and deduplicated.");
3724
3725   ("inotify_close", (RErr, []), 184, [Optional "inotify"],
3726    [],
3727    "close the inotify handle",
3728    "\
3729 This closes the inotify handle which was previously
3730 opened by inotify_init.  It removes all watches, throws
3731 away any pending events, and deallocates all resources.");
3732
3733   ("setcon", (RErr, [String "context"]), 185, [Optional "selinux"],
3734    [],
3735    "set SELinux security context",
3736    "\
3737 This sets the SELinux security context of the daemon
3738 to the string C<context>.
3739
3740 See the documentation about SELINUX in L<guestfs(3)>.");
3741
3742   ("getcon", (RString "context", []), 186, [Optional "selinux"],
3743    [],
3744    "get SELinux security context",
3745    "\
3746 This gets the SELinux security context of the daemon.
3747
3748 See the documentation about SELINUX in L<guestfs(3)>,
3749 and C<guestfs_setcon>");
3750
3751   ("mkfs_b", (RErr, [String "fstype"; Int "blocksize"; Device "device"]), 187, [],
3752    [InitEmpty, Always, TestOutput (
3753       [["part_disk"; "/dev/sda"; "mbr"];
3754        ["mkfs_b"; "ext2"; "4096"; "/dev/sda1"];
3755        ["mount_options"; ""; "/dev/sda1"; "/"];
3756        ["write"; "/new"; "new file contents"];
3757        ["cat"; "/new"]], "new file contents");
3758     InitEmpty, Always, TestRun (
3759       [["part_disk"; "/dev/sda"; "mbr"];
3760        ["mkfs_b"; "vfat"; "32768"; "/dev/sda1"]]);
3761     InitEmpty, Always, TestLastFail (
3762       [["part_disk"; "/dev/sda"; "mbr"];
3763        ["mkfs_b"; "vfat"; "32769"; "/dev/sda1"]]);
3764     InitEmpty, Always, TestLastFail (
3765       [["part_disk"; "/dev/sda"; "mbr"];
3766        ["mkfs_b"; "vfat"; "33280"; "/dev/sda1"]]);
3767     InitEmpty, IfAvailable "ntfsprogs", TestRun (
3768       [["part_disk"; "/dev/sda"; "mbr"];
3769        ["mkfs_b"; "ntfs"; "32768"; "/dev/sda1"]])],
3770    "make a filesystem with block size",
3771    "\
3772 This call is similar to C<guestfs_mkfs>, but it allows you to
3773 control the block size of the resulting filesystem.  Supported
3774 block sizes depend on the filesystem type, but typically they
3775 are C<1024>, C<2048> or C<4096> only.
3776
3777 For VFAT and NTFS the C<blocksize> parameter is treated as
3778 the requested cluster size.");
3779
3780   ("mke2journal", (RErr, [Int "blocksize"; Device "device"]), 188, [],
3781    [InitEmpty, Always, TestOutput (
3782       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3783        ["mke2journal"; "4096"; "/dev/sda1"];
3784        ["mke2fs_J"; "ext2"; "4096"; "/dev/sda2"; "/dev/sda1"];
3785        ["mount_options"; ""; "/dev/sda2"; "/"];
3786        ["write"; "/new"; "new file contents"];
3787        ["cat"; "/new"]], "new file contents")],
3788    "make ext2/3/4 external journal",
3789    "\
3790 This creates an ext2 external journal on C<device>.  It is equivalent
3791 to the command:
3792
3793  mke2fs -O journal_dev -b blocksize device");
3794
3795   ("mke2journal_L", (RErr, [Int "blocksize"; String "label"; Device "device"]), 189, [],
3796    [InitEmpty, Always, TestOutput (
3797       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3798        ["mke2journal_L"; "4096"; "JOURNAL"; "/dev/sda1"];
3799        ["mke2fs_JL"; "ext2"; "4096"; "/dev/sda2"; "JOURNAL"];
3800        ["mount_options"; ""; "/dev/sda2"; "/"];
3801        ["write"; "/new"; "new file contents"];
3802        ["cat"; "/new"]], "new file contents")],
3803    "make ext2/3/4 external journal with label",
3804    "\
3805 This creates an ext2 external journal on C<device> with label C<label>.");
3806
3807   ("mke2journal_U", (RErr, [Int "blocksize"; String "uuid"; Device "device"]), 190, [Optional "linuxfsuuid"],
3808    (let uuid = uuidgen () in
3809     [InitEmpty, Always, TestOutput (
3810        [["sfdiskM"; "/dev/sda"; ",100 ,"];
3811         ["mke2journal_U"; "4096"; uuid; "/dev/sda1"];
3812         ["mke2fs_JU"; "ext2"; "4096"; "/dev/sda2"; uuid];
3813         ["mount_options"; ""; "/dev/sda2"; "/"];
3814         ["write"; "/new"; "new file contents"];
3815         ["cat"; "/new"]], "new file contents")]),
3816    "make ext2/3/4 external journal with UUID",
3817    "\
3818 This creates an ext2 external journal on C<device> with UUID C<uuid>.");
3819
3820   ("mke2fs_J", (RErr, [String "fstype"; Int "blocksize"; Device "device"; Device "journal"]), 191, [],
3821    [],
3822    "make ext2/3/4 filesystem with external journal",
3823    "\
3824 This creates an ext2/3/4 filesystem on C<device> with
3825 an external journal on C<journal>.  It is equivalent
3826 to the command:
3827
3828  mke2fs -t fstype -b blocksize -J device=<journal> <device>
3829
3830 See also C<guestfs_mke2journal>.");
3831
3832   ("mke2fs_JL", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "label"]), 192, [],
3833    [],
3834    "make ext2/3/4 filesystem with external journal",
3835    "\
3836 This creates an ext2/3/4 filesystem on C<device> with
3837 an external journal on the journal labeled C<label>.
3838
3839 See also C<guestfs_mke2journal_L>.");
3840
3841   ("mke2fs_JU", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "uuid"]), 193, [Optional "linuxfsuuid"],
3842    [],
3843    "make ext2/3/4 filesystem with external journal",
3844    "\
3845 This creates an ext2/3/4 filesystem on C<device> with
3846 an external journal on the journal with UUID C<uuid>.
3847
3848 See also C<guestfs_mke2journal_U>.");
3849
3850   ("modprobe", (RErr, [String "modulename"]), 194, [Optional "linuxmodules"],
3851    [InitNone, Always, TestRun [["modprobe"; "fat"]]],
3852    "load a kernel module",
3853    "\
3854 This loads a kernel module in the appliance.
3855
3856 The kernel module must have been whitelisted when libguestfs
3857 was built (see C<appliance/kmod.whitelist.in> in the source).");
3858
3859   ("echo_daemon", (RString "output", [StringList "words"]), 195, [],
3860    [InitNone, Always, TestOutput (
3861       [["echo_daemon"; "This is a test"]], "This is a test"
3862     )],
3863    "echo arguments back to the client",
3864    "\
3865 This command concatenates the list of C<words> passed with single spaces
3866 between them and returns the resulting string.
3867
3868 You can use this command to test the connection through to the daemon.
3869
3870 See also C<guestfs_ping_daemon>.");
3871
3872   ("find0", (RErr, [Pathname "directory"; FileOut "files"]), 196, [],
3873    [], (* There is a regression test for this. *)
3874    "find all files and directories, returning NUL-separated list",
3875    "\
3876 This command lists out all files and directories, recursively,
3877 starting at C<directory>, placing the resulting list in the
3878 external file called C<files>.
3879
3880 This command works the same way as C<guestfs_find> with the
3881 following exceptions:
3882
3883 =over 4
3884
3885 =item *
3886
3887 The resulting list is written to an external file.
3888
3889 =item *
3890
3891 Items (filenames) in the result are separated
3892 by C<\\0> characters.  See L<find(1)> option I<-print0>.
3893
3894 =item *
3895
3896 This command is not limited in the number of names that it
3897 can return.
3898
3899 =item *
3900
3901 The result list is not sorted.
3902
3903 =back");
3904
3905   ("case_sensitive_path", (RString "rpath", [Pathname "path"]), 197, [],
3906    [InitISOFS, Always, TestOutput (
3907       [["case_sensitive_path"; "/DIRECTORY"]], "/directory");
3908     InitISOFS, Always, TestOutput (
3909       [["case_sensitive_path"; "/DIRECTORY/"]], "/directory");
3910     InitISOFS, Always, TestOutput (
3911       [["case_sensitive_path"; "/Known-1"]], "/known-1");
3912     InitISOFS, Always, TestLastFail (
3913       [["case_sensitive_path"; "/Known-1/"]]);
3914     InitBasicFS, Always, TestOutput (
3915       [["mkdir"; "/a"];
3916        ["mkdir"; "/a/bbb"];
3917        ["touch"; "/a/bbb/c"];
3918        ["case_sensitive_path"; "/A/bbB/C"]], "/a/bbb/c");
3919     InitBasicFS, Always, TestOutput (
3920       [["mkdir"; "/a"];
3921        ["mkdir"; "/a/bbb"];
3922        ["touch"; "/a/bbb/c"];
3923        ["case_sensitive_path"; "/A////bbB/C"]], "/a/bbb/c");
3924     InitBasicFS, Always, TestLastFail (
3925       [["mkdir"; "/a"];
3926        ["mkdir"; "/a/bbb"];
3927        ["touch"; "/a/bbb/c"];
3928        ["case_sensitive_path"; "/A/bbb/../bbb/C"]])],
3929    "return true path on case-insensitive filesystem",
3930    "\
3931 This can be used to resolve case insensitive paths on
3932 a filesystem which is case sensitive.  The use case is
3933 to resolve paths which you have read from Windows configuration
3934 files or the Windows Registry, to the true path.
3935
3936 The command handles a peculiarity of the Linux ntfs-3g
3937 filesystem driver (and probably others), which is that although
3938 the underlying filesystem is case-insensitive, the driver
3939 exports the filesystem to Linux as case-sensitive.
3940
3941 One consequence of this is that special directories such
3942 as C<c:\\windows> may appear as C</WINDOWS> or C</windows>
3943 (or other things) depending on the precise details of how
3944 they were created.  In Windows itself this would not be
3945 a problem.
3946
3947 Bug or feature?  You decide:
3948 L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>
3949
3950 This function resolves the true case of each element in the
3951 path and returns the case-sensitive path.
3952
3953 Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")
3954 might return C<\"/WINDOWS/system32\"> (the exact return value
3955 would depend on details of how the directories were originally
3956 created under Windows).
3957
3958 I<Note>:
3959 This function does not handle drive names, backslashes etc.
3960
3961 See also C<guestfs_realpath>.");
3962
3963   ("vfs_type", (RString "fstype", [Device "device"]), 198, [],
3964    [InitBasicFS, Always, TestOutput (
3965       [["vfs_type"; "/dev/sda1"]], "ext2")],
3966    "get the Linux VFS type corresponding to a mounted device",
3967    "\
3968 This command gets the filesystem type corresponding to
3969 the filesystem on C<device>.
3970
3971 For most filesystems, the result is the name of the Linux
3972 VFS module which would be used to mount this filesystem
3973 if you mounted it without specifying the filesystem type.
3974 For example a string such as C<ext3> or C<ntfs>.");
3975
3976   ("truncate", (RErr, [Pathname "path"]), 199, [],
3977    [InitBasicFS, Always, TestOutputStruct (
3978       [["write"; "/test"; "some stuff so size is not zero"];
3979        ["truncate"; "/test"];
3980        ["stat"; "/test"]], [CompareWithInt ("size", 0)])],
3981    "truncate a file to zero size",
3982    "\
3983 This command truncates C<path> to a zero-length file.  The
3984 file must exist already.");
3985
3986   ("truncate_size", (RErr, [Pathname "path"; Int64 "size"]), 200, [],
3987    [InitBasicFS, Always, TestOutputStruct (
3988       [["touch"; "/test"];
3989        ["truncate_size"; "/test"; "1000"];
3990        ["stat"; "/test"]], [CompareWithInt ("size", 1000)])],
3991    "truncate a file to a particular size",
3992    "\
3993 This command truncates C<path> to size C<size> bytes.  The file
3994 must exist already.
3995
3996 If the current file size is less than C<size> then
3997 the file is extended to the required size with zero bytes.
3998 This creates a sparse file (ie. disk blocks are not allocated
3999 for the file until you write to it).  To create a non-sparse
4000 file of zeroes, use C<guestfs_fallocate64> instead.");
4001
4002   ("utimens", (RErr, [Pathname "path"; Int64 "atsecs"; Int64 "atnsecs"; Int64 "mtsecs"; Int64 "mtnsecs"]), 201, [],
4003    [InitBasicFS, Always, TestOutputStruct (
4004       [["touch"; "/test"];
4005        ["utimens"; "/test"; "12345"; "67890"; "9876"; "5432"];
4006        ["stat"; "/test"]], [CompareWithInt ("mtime", 9876)])],
4007    "set timestamp of a file with nanosecond precision",
4008    "\
4009 This command sets the timestamps of a file with nanosecond
4010 precision.
4011
4012 C<atsecs, atnsecs> are the last access time (atime) in secs and
4013 nanoseconds from the epoch.
4014
4015 C<mtsecs, mtnsecs> are the last modification time (mtime) in
4016 secs and nanoseconds from the epoch.
4017
4018 If the C<*nsecs> field contains the special value C<-1> then
4019 the corresponding timestamp is set to the current time.  (The
4020 C<*secs> field is ignored in this case).
4021
4022 If the C<*nsecs> field contains the special value C<-2> then
4023 the corresponding timestamp is left unchanged.  (The
4024 C<*secs> field is ignored in this case).");
4025
4026   ("mkdir_mode", (RErr, [Pathname "path"; Int "mode"]), 202, [],
4027    [InitBasicFS, Always, TestOutputStruct (
4028       [["mkdir_mode"; "/test"; "0o111"];
4029        ["stat"; "/test"]], [CompareWithInt ("mode", 0o40111)])],
4030    "create a directory with a particular mode",
4031    "\
4032 This command creates a directory, setting the initial permissions
4033 of the directory to C<mode>.
4034
4035 For common Linux filesystems, the actual mode which is set will
4036 be C<mode & ~umask & 01777>.  Non-native-Linux filesystems may
4037 interpret the mode in other ways.
4038
4039 See also C<guestfs_mkdir>, C<guestfs_umask>");
4040
4041   ("lchown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 203, [],
4042    [], (* XXX *)
4043    "change file owner and group",
4044    "\
4045 Change the file owner to C<owner> and group to C<group>.
4046 This is like C<guestfs_chown> but if C<path> is a symlink then
4047 the link itself is changed, not the target.
4048
4049 Only numeric uid and gid are supported.  If you want to use
4050 names, you will need to locate and parse the password file
4051 yourself (Augeas support makes this relatively easy).");
4052
4053   ("lstatlist", (RStructList ("statbufs", "stat"), [Pathname "path"; StringList "names"]), 204, [],
4054    [], (* XXX *)
4055    "lstat on multiple files",
4056    "\
4057 This call allows you to perform the C<guestfs_lstat> operation
4058 on multiple files, where all files are in the directory C<path>.
4059 C<names> is the list of files from this directory.
4060
4061 On return you get a list of stat structs, with a one-to-one
4062 correspondence to the C<names> list.  If any name did not exist
4063 or could not be lstat'd, then the C<ino> field of that structure
4064 is set to C<-1>.
4065
4066 This call is intended for programs that want to efficiently
4067 list a directory contents without making many round-trips.
4068 See also C<guestfs_lxattrlist> for a similarly efficient call
4069 for getting extended attributes.  Very long directory listings
4070 might cause the protocol message size to be exceeded, causing
4071 this call to fail.  The caller must split up such requests
4072 into smaller groups of names.");
4073
4074   ("lxattrlist", (RStructList ("xattrs", "xattr"), [Pathname "path"; StringList "names"]), 205, [Optional "linuxxattrs"],
4075    [], (* XXX *)
4076    "lgetxattr on multiple files",
4077    "\
4078 This call allows you to get the extended attributes
4079 of multiple files, where all files are in the directory C<path>.
4080 C<names> is the list of files from this directory.
4081
4082 On return you get a flat list of xattr structs which must be
4083 interpreted sequentially.  The first xattr struct always has a zero-length
4084 C<attrname>.  C<attrval> in this struct is zero-length
4085 to indicate there was an error doing C<lgetxattr> for this
4086 file, I<or> is a C string which is a decimal number
4087 (the number of following attributes for this file, which could
4088 be C<\"0\">).  Then after the first xattr struct are the
4089 zero or more attributes for the first named file.
4090 This repeats for the second and subsequent files.
4091
4092 This call is intended for programs that want to efficiently
4093 list a directory contents without making many round-trips.
4094 See also C<guestfs_lstatlist> for a similarly efficient call
4095 for getting standard stats.  Very long directory listings
4096 might cause the protocol message size to be exceeded, causing
4097 this call to fail.  The caller must split up such requests
4098 into smaller groups of names.");
4099
4100   ("readlinklist", (RStringList "links", [Pathname "path"; StringList "names"]), 206, [],
4101    [], (* XXX *)
4102    "readlink on multiple files",
4103    "\
4104 This call allows you to do a C<readlink> operation
4105 on multiple files, where all files are in the directory C<path>.
4106 C<names> is the list of files from this directory.
4107
4108 On return you get a list of strings, with a one-to-one
4109 correspondence to the C<names> list.  Each string is the
4110 value of the symbolic link.
4111
4112 If the C<readlink(2)> operation fails on any name, then
4113 the corresponding result string is the empty string C<\"\">.
4114 However the whole operation is completed even if there
4115 were C<readlink(2)> errors, and so you can call this
4116 function with names where you don't know if they are
4117 symbolic links already (albeit slightly less efficient).
4118
4119 This call is intended for programs that want to efficiently
4120 list a directory contents without making many round-trips.
4121 Very long directory listings might cause the protocol
4122 message size to be exceeded, causing
4123 this call to fail.  The caller must split up such requests
4124 into smaller groups of names.");
4125
4126   ("pread", (RBufferOut "content", [Pathname "path"; Int "count"; Int64 "offset"]), 207, [ProtocolLimitWarning],
4127    [InitISOFS, Always, TestOutputBuffer (
4128       [["pread"; "/known-4"; "1"; "3"]], "\n");
4129     InitISOFS, Always, TestOutputBuffer (
4130       [["pread"; "/empty"; "0"; "100"]], "")],
4131    "read part of a file",
4132    "\
4133 This command lets you read part of a file.  It reads C<count>
4134 bytes of the file, starting at C<offset>, from file C<path>.
4135
4136 This may read fewer bytes than requested.  For further details
4137 see the L<pread(2)> system call.
4138
4139 See also C<guestfs_pwrite>.");
4140
4141   ("part_init", (RErr, [Device "device"; String "parttype"]), 208, [],
4142    [InitEmpty, Always, TestRun (
4143       [["part_init"; "/dev/sda"; "gpt"]])],
4144    "create an empty partition table",
4145    "\
4146 This creates an empty partition table on C<device> of one of the
4147 partition types listed below.  Usually C<parttype> should be
4148 either C<msdos> or C<gpt> (for large disks).
4149
4150 Initially there are no partitions.  Following this, you should
4151 call C<guestfs_part_add> for each partition required.
4152
4153 Possible values for C<parttype> are:
4154
4155 =over 4
4156
4157 =item B<efi> | B<gpt>
4158
4159 Intel EFI / GPT partition table.
4160
4161 This is recommended for >= 2 TB partitions that will be accessed
4162 from Linux and Intel-based Mac OS X.  It also has limited backwards
4163 compatibility with the C<mbr> format.
4164
4165 =item B<mbr> | B<msdos>
4166
4167 The standard PC \"Master Boot Record\" (MBR) format used
4168 by MS-DOS and Windows.  This partition type will B<only> work
4169 for device sizes up to 2 TB.  For large disks we recommend
4170 using C<gpt>.
4171
4172 =back
4173
4174 Other partition table types that may work but are not
4175 supported include:
4176
4177 =over 4
4178
4179 =item B<aix>
4180
4181 AIX disk labels.
4182
4183 =item B<amiga> | B<rdb>
4184
4185 Amiga \"Rigid Disk Block\" format.
4186
4187 =item B<bsd>
4188
4189 BSD disk labels.
4190
4191 =item B<dasd>
4192
4193 DASD, used on IBM mainframes.
4194
4195 =item B<dvh>
4196
4197 MIPS/SGI volumes.
4198
4199 =item B<mac>
4200
4201 Old Mac partition format.  Modern Macs use C<gpt>.
4202
4203 =item B<pc98>
4204
4205 NEC PC-98 format, common in Japan apparently.
4206
4207 =item B<sun>
4208
4209 Sun disk labels.
4210
4211 =back");
4212
4213   ("part_add", (RErr, [Device "device"; String "prlogex"; Int64 "startsect"; Int64 "endsect"]), 209, [],
4214    [InitEmpty, Always, TestRun (
4215       [["part_init"; "/dev/sda"; "mbr"];
4216        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"]]);
4217     InitEmpty, Always, TestRun (
4218       [["part_init"; "/dev/sda"; "gpt"];
4219        ["part_add"; "/dev/sda"; "primary"; "34"; "127"];
4220        ["part_add"; "/dev/sda"; "primary"; "128"; "-34"]]);
4221     InitEmpty, Always, TestRun (
4222       [["part_init"; "/dev/sda"; "mbr"];
4223        ["part_add"; "/dev/sda"; "primary"; "32"; "127"];
4224        ["part_add"; "/dev/sda"; "primary"; "128"; "255"];
4225        ["part_add"; "/dev/sda"; "primary"; "256"; "511"];
4226        ["part_add"; "/dev/sda"; "primary"; "512"; "-1"]])],
4227    "add a partition to the device",
4228    "\
4229 This command adds a partition to C<device>.  If there is no partition
4230 table on the device, call C<guestfs_part_init> first.
4231
4232 The C<prlogex> parameter is the type of partition.  Normally you
4233 should pass C<p> or C<primary> here, but MBR partition tables also
4234 support C<l> (or C<logical>) and C<e> (or C<extended>) partition
4235 types.
4236
4237 C<startsect> and C<endsect> are the start and end of the partition
4238 in I<sectors>.  C<endsect> may be negative, which means it counts
4239 backwards from the end of the disk (C<-1> is the last sector).
4240
4241 Creating a partition which covers the whole disk is not so easy.
4242 Use C<guestfs_part_disk> to do that.");
4243
4244   ("part_disk", (RErr, [Device "device"; String "parttype"]), 210, [DangerWillRobinson],
4245    [InitEmpty, Always, TestRun (
4246       [["part_disk"; "/dev/sda"; "mbr"]]);
4247     InitEmpty, Always, TestRun (
4248       [["part_disk"; "/dev/sda"; "gpt"]])],
4249    "partition whole disk with a single primary partition",
4250    "\
4251 This command is simply a combination of C<guestfs_part_init>
4252 followed by C<guestfs_part_add> to create a single primary partition
4253 covering the whole disk.
4254
4255 C<parttype> is the partition table type, usually C<mbr> or C<gpt>,
4256 but other possible values are described in C<guestfs_part_init>.");
4257
4258   ("part_set_bootable", (RErr, [Device "device"; Int "partnum"; Bool "bootable"]), 211, [],
4259    [InitEmpty, Always, TestRun (
4260       [["part_disk"; "/dev/sda"; "mbr"];
4261        ["part_set_bootable"; "/dev/sda"; "1"; "true"]])],
4262    "make a partition bootable",
4263    "\
4264 This sets the bootable flag on partition numbered C<partnum> on
4265 device C<device>.  Note that partitions are numbered from 1.
4266
4267 The bootable flag is used by some operating systems (notably
4268 Windows) to determine which partition to boot from.  It is by
4269 no means universally recognized.");
4270
4271   ("part_set_name", (RErr, [Device "device"; Int "partnum"; String "name"]), 212, [],
4272    [InitEmpty, Always, TestRun (
4273       [["part_disk"; "/dev/sda"; "gpt"];
4274        ["part_set_name"; "/dev/sda"; "1"; "thepartname"]])],
4275    "set partition name",
4276    "\
4277 This sets the partition name on partition numbered C<partnum> on
4278 device C<device>.  Note that partitions are numbered from 1.
4279
4280 The partition name can only be set on certain types of partition
4281 table.  This works on C<gpt> but not on C<mbr> partitions.");
4282
4283   ("part_list", (RStructList ("partitions", "partition"), [Device "device"]), 213, [],
4284    [], (* XXX Add a regression test for this. *)
4285    "list partitions on a device",
4286    "\
4287 This command parses the partition table on C<device> and
4288 returns the list of partitions found.
4289
4290 The fields in the returned structure are:
4291
4292 =over 4
4293
4294 =item B<part_num>
4295
4296 Partition number, counting from 1.
4297
4298 =item B<part_start>
4299
4300 Start of the partition I<in bytes>.  To get sectors you have to
4301 divide by the device's sector size, see C<guestfs_blockdev_getss>.
4302
4303 =item B<part_end>
4304
4305 End of the partition in bytes.
4306
4307 =item B<part_size>
4308
4309 Size of the partition in bytes.
4310
4311 =back");
4312
4313   ("part_get_parttype", (RString "parttype", [Device "device"]), 214, [],
4314    [InitEmpty, Always, TestOutput (
4315       [["part_disk"; "/dev/sda"; "gpt"];
4316        ["part_get_parttype"; "/dev/sda"]], "gpt")],
4317    "get the partition table type",
4318    "\
4319 This command examines the partition table on C<device> and
4320 returns the partition table type (format) being used.
4321
4322 Common return values include: C<msdos> (a DOS/Windows style MBR
4323 partition table), C<gpt> (a GPT/EFI-style partition table).  Other
4324 values are possible, although unusual.  See C<guestfs_part_init>
4325 for a full list.");
4326
4327   ("fill", (RErr, [Int "c"; Int "len"; Pathname "path"]), 215, [],
4328    [InitBasicFS, Always, TestOutputBuffer (
4329       [["fill"; "0x63"; "10"; "/test"];
4330        ["read_file"; "/test"]], "cccccccccc")],
4331    "fill a file with octets",
4332    "\
4333 This command creates a new file called C<path>.  The initial
4334 content of the file is C<len> octets of C<c>, where C<c>
4335 must be a number in the range C<[0..255]>.
4336
4337 To fill a file with zero bytes (sparsely), it is
4338 much more efficient to use C<guestfs_truncate_size>.
4339 To create a file with a pattern of repeating bytes
4340 use C<guestfs_fill_pattern>.");
4341
4342   ("available", (RErr, [StringList "groups"]), 216, [],
4343    [InitNone, Always, TestRun [["available"; ""]]],
4344    "test availability of some parts of the API",
4345    "\
4346 This command is used to check the availability of some
4347 groups of functionality in the appliance, which not all builds of
4348 the libguestfs appliance will be able to provide.
4349
4350 The libguestfs groups, and the functions that those
4351 groups correspond to, are listed in L<guestfs(3)/AVAILABILITY>.
4352 You can also fetch this list at runtime by calling
4353 C<guestfs_available_all_groups>.
4354
4355 The argument C<groups> is a list of group names, eg:
4356 C<[\"inotify\", \"augeas\"]> would check for the availability of
4357 the Linux inotify functions and Augeas (configuration file
4358 editing) functions.
4359
4360 The command returns no error if I<all> requested groups are available.
4361
4362 It fails with an error if one or more of the requested
4363 groups is unavailable in the appliance.
4364
4365 If an unknown group name is included in the
4366 list of groups then an error is always returned.
4367
4368 I<Notes:>
4369
4370 =over 4
4371
4372 =item *
4373
4374 You must call C<guestfs_launch> before calling this function.
4375
4376 The reason is because we don't know what groups are
4377 supported by the appliance/daemon until it is running and can
4378 be queried.
4379
4380 =item *
4381
4382 If a group of functions is available, this does not necessarily
4383 mean that they will work.  You still have to check for errors
4384 when calling individual API functions even if they are
4385 available.
4386
4387 =item *
4388
4389 It is usually the job of distro packagers to build
4390 complete functionality into the libguestfs appliance.
4391 Upstream libguestfs, if built from source with all
4392 requirements satisfied, will support everything.
4393
4394 =item *
4395
4396 This call was added in version C<1.0.80>.  In previous
4397 versions of libguestfs all you could do would be to speculatively
4398 execute a command to find out if the daemon implemented it.
4399 See also C<guestfs_version>.
4400
4401 =back");
4402
4403   ("dd", (RErr, [Dev_or_Path "src"; Dev_or_Path "dest"]), 217, [],
4404    [InitBasicFS, Always, TestOutputBuffer (
4405       [["write"; "/src"; "hello, world"];
4406        ["dd"; "/src"; "/dest"];
4407        ["read_file"; "/dest"]], "hello, world")],
4408    "copy from source to destination using dd",
4409    "\
4410 This command copies from one source device or file C<src>
4411 to another destination device or file C<dest>.  Normally you
4412 would use this to copy to or from a device or partition, for
4413 example to duplicate a filesystem.
4414
4415 If the destination is a device, it must be as large or larger
4416 than the source file or device, otherwise the copy will fail.
4417 This command cannot do partial copies (see C<guestfs_copy_size>).");
4418
4419   ("filesize", (RInt64 "size", [Pathname "file"]), 218, [],
4420    [InitBasicFS, Always, TestOutputInt (
4421       [["write"; "/file"; "hello, world"];
4422        ["filesize"; "/file"]], 12)],
4423    "return the size of the file in bytes",
4424    "\
4425 This command returns the size of C<file> in bytes.
4426
4427 To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>,
4428 C<guestfs_is_dir>, C<guestfs_is_file> etc.
4429 To get the size of block devices, use C<guestfs_blockdev_getsize64>.");
4430
4431   ("lvrename", (RErr, [String "logvol"; String "newlogvol"]), 219, [],
4432    [InitBasicFSonLVM, Always, TestOutputList (
4433       [["lvrename"; "/dev/VG/LV"; "/dev/VG/LV2"];
4434        ["lvs"]], ["/dev/VG/LV2"])],
4435    "rename an LVM logical volume",
4436    "\
4437 Rename a logical volume C<logvol> with the new name C<newlogvol>.");
4438
4439   ("vgrename", (RErr, [String "volgroup"; String "newvolgroup"]), 220, [],
4440    [InitBasicFSonLVM, Always, TestOutputList (
4441       [["umount"; "/"];
4442        ["vg_activate"; "false"; "VG"];
4443        ["vgrename"; "VG"; "VG2"];
4444        ["vg_activate"; "true"; "VG2"];
4445        ["mount_options"; ""; "/dev/VG2/LV"; "/"];
4446        ["vgs"]], ["VG2"])],
4447    "rename an LVM volume group",
4448    "\
4449 Rename a volume group C<volgroup> with the new name C<newvolgroup>.");
4450
4451   ("initrd_cat", (RBufferOut "content", [Pathname "initrdpath"; String "filename"]), 221, [ProtocolLimitWarning],
4452    [InitISOFS, Always, TestOutputBuffer (
4453       [["initrd_cat"; "/initrd"; "known-4"]], "abc\ndef\nghi")],
4454    "list the contents of a single file in an initrd",
4455    "\
4456 This command unpacks the file C<filename> from the initrd file
4457 called C<initrdpath>.  The filename must be given I<without> the
4458 initial C</> character.
4459
4460 For example, in guestfish you could use the following command
4461 to examine the boot script (usually called C</init>)
4462 contained in a Linux initrd or initramfs image:
4463
4464  initrd-cat /boot/initrd-<version>.img init
4465
4466 See also C<guestfs_initrd_list>.");
4467
4468   ("pvuuid", (RString "uuid", [Device "device"]), 222, [],
4469    [],
4470    "get the UUID of a physical volume",
4471    "\
4472 This command returns the UUID of the LVM PV C<device>.");
4473
4474   ("vguuid", (RString "uuid", [String "vgname"]), 223, [],
4475    [],
4476    "get the UUID of a volume group",
4477    "\
4478 This command returns the UUID of the LVM VG named C<vgname>.");
4479
4480   ("lvuuid", (RString "uuid", [Device "device"]), 224, [],
4481    [],
4482    "get the UUID of a logical volume",
4483    "\
4484 This command returns the UUID of the LVM LV C<device>.");
4485
4486   ("vgpvuuids", (RStringList "uuids", [String "vgname"]), 225, [],
4487    [],
4488    "get the PV UUIDs containing the volume group",
4489    "\
4490 Given a VG called C<vgname>, this returns the UUIDs of all
4491 the physical volumes that this volume group resides on.
4492
4493 You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid>
4494 calls to associate physical volumes and volume groups.
4495
4496 See also C<guestfs_vglvuuids>.");
4497
4498   ("vglvuuids", (RStringList "uuids", [String "vgname"]), 226, [],
4499    [],
4500    "get the LV UUIDs of all LVs in the volume group",
4501    "\
4502 Given a VG called C<vgname>, this returns the UUIDs of all
4503 the logical volumes created in this volume group.
4504
4505 You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid>
4506 calls to associate logical volumes and volume groups.
4507
4508 See also C<guestfs_vgpvuuids>.");
4509
4510   ("copy_size", (RErr, [Dev_or_Path "src"; Dev_or_Path "dest"; Int64 "size"]), 227, [],
4511    [InitBasicFS, Always, TestOutputBuffer (
4512       [["write"; "/src"; "hello, world"];
4513        ["copy_size"; "/src"; "/dest"; "5"];
4514        ["read_file"; "/dest"]], "hello")],
4515    "copy size bytes from source to destination using dd",
4516    "\
4517 This command copies exactly C<size> bytes from one source device
4518 or file C<src> to another destination device or file C<dest>.
4519
4520 Note this will fail if the source is too short or if the destination
4521 is not large enough.");
4522
4523   ("zero_device", (RErr, [Device "device"]), 228, [DangerWillRobinson],
4524    [InitBasicFSonLVM, Always, TestRun (
4525       [["zero_device"; "/dev/VG/LV"]])],
4526    "write zeroes to an entire device",
4527    "\
4528 This command writes zeroes over the entire C<device>.  Compare
4529 with C<guestfs_zero> which just zeroes the first few blocks of
4530 a device.");
4531
4532   ("txz_in", (RErr, [FileIn "tarball"; Pathname "directory"]), 229, [Optional "xz"],
4533    [InitBasicFS, Always, TestOutput (
4534       [["txz_in"; "../images/helloworld.tar.xz"; "/"];
4535        ["cat"; "/hello"]], "hello\n")],
4536    "unpack compressed tarball to directory",
4537    "\
4538 This command uploads and unpacks local file C<tarball> (an
4539 I<xz compressed> tar file) into C<directory>.");
4540
4541   ("txz_out", (RErr, [Pathname "directory"; FileOut "tarball"]), 230, [Optional "xz"],
4542    [],
4543    "pack directory into compressed tarball",
4544    "\
4545 This command packs the contents of C<directory> and downloads
4546 it to local file C<tarball> (as an xz compressed tar archive).");
4547
4548   ("ntfsresize", (RErr, [Device "device"]), 231, [Optional "ntfsprogs"],
4549    [],
4550    "resize an NTFS filesystem",
4551    "\
4552 This command resizes an NTFS filesystem, expanding or
4553 shrinking it to the size of the underlying device.
4554 See also L<ntfsresize(8)>.");
4555
4556   ("vgscan", (RErr, []), 232, [],
4557    [InitEmpty, Always, TestRun (
4558       [["vgscan"]])],
4559    "rescan for LVM physical volumes, volume groups and logical volumes",
4560    "\
4561 This rescans all block devices and rebuilds the list of LVM
4562 physical volumes, volume groups and logical volumes.");
4563
4564   ("part_del", (RErr, [Device "device"; Int "partnum"]), 233, [],
4565    [InitEmpty, Always, TestRun (
4566       [["part_init"; "/dev/sda"; "mbr"];
4567        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4568        ["part_del"; "/dev/sda"; "1"]])],
4569    "delete a partition",
4570    "\
4571 This command deletes the partition numbered C<partnum> on C<device>.
4572
4573 Note that in the case of MBR partitioning, deleting an
4574 extended partition also deletes any logical partitions
4575 it contains.");
4576
4577   ("part_get_bootable", (RBool "bootable", [Device "device"; Int "partnum"]), 234, [],
4578    [InitEmpty, Always, TestOutputTrue (
4579       [["part_init"; "/dev/sda"; "mbr"];
4580        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4581        ["part_set_bootable"; "/dev/sda"; "1"; "true"];
4582        ["part_get_bootable"; "/dev/sda"; "1"]])],
4583    "return true if a partition is bootable",
4584    "\
4585 This command returns true if the partition C<partnum> on
4586 C<device> has the bootable flag set.
4587
4588 See also C<guestfs_part_set_bootable>.");
4589
4590   ("part_get_mbr_id", (RInt "idbyte", [Device "device"; Int "partnum"]), 235, [FishOutput FishOutputHexadecimal],
4591    [InitEmpty, Always, TestOutputInt (
4592       [["part_init"; "/dev/sda"; "mbr"];
4593        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4594        ["part_set_mbr_id"; "/dev/sda"; "1"; "0x7f"];
4595        ["part_get_mbr_id"; "/dev/sda"; "1"]], 0x7f)],
4596    "get the MBR type byte (ID byte) from a partition",
4597    "\
4598 Returns the MBR type byte (also known as the ID byte) from
4599 the numbered partition C<partnum>.
4600
4601 Note that only MBR (old DOS-style) partitions have type bytes.
4602 You will get undefined results for other partition table
4603 types (see C<guestfs_part_get_parttype>).");
4604
4605   ("part_set_mbr_id", (RErr, [Device "device"; Int "partnum"; Int "idbyte"]), 236, [],
4606    [], (* tested by part_get_mbr_id *)
4607    "set the MBR type byte (ID byte) of a partition",
4608    "\
4609 Sets the MBR type byte (also known as the ID byte) of
4610 the numbered partition C<partnum> to C<idbyte>.  Note
4611 that the type bytes quoted in most documentation are
4612 in fact hexadecimal numbers, but usually documented
4613 without any leading \"0x\" which might be confusing.
4614
4615 Note that only MBR (old DOS-style) partitions have type bytes.
4616 You will get undefined results for other partition table
4617 types (see C<guestfs_part_get_parttype>).");
4618
4619   ("checksum_device", (RString "checksum", [String "csumtype"; Device "device"]), 237, [],
4620    [InitISOFS, Always, TestOutput (
4621       [["checksum_device"; "md5"; "/dev/sdd"]],
4622       (Digest.to_hex (Digest.file "images/test.iso")))],
4623    "compute MD5, SHAx or CRC checksum of the contents of a device",
4624    "\
4625 This call computes the MD5, SHAx or CRC checksum of the
4626 contents of the device named C<device>.  For the types of
4627 checksums supported see the C<guestfs_checksum> command.");
4628
4629   ("lvresize_free", (RErr, [Device "lv"; Int "percent"]), 238, [Optional "lvm2"],
4630    [InitNone, Always, TestRun (
4631       [["part_disk"; "/dev/sda"; "mbr"];
4632        ["pvcreate"; "/dev/sda1"];
4633        ["vgcreate"; "VG"; "/dev/sda1"];
4634        ["lvcreate"; "LV"; "VG"; "10"];
4635        ["lvresize_free"; "/dev/VG/LV"; "100"]])],
4636    "expand an LV to fill free space",
4637    "\
4638 This expands an existing logical volume C<lv> so that it fills
4639 C<pc>% of the remaining free space in the volume group.  Commonly
4640 you would call this with pc = 100 which expands the logical volume
4641 as much as possible, using all remaining free space in the volume
4642 group.");
4643
4644   ("aug_clear", (RErr, [String "augpath"]), 239, [Optional "augeas"],
4645    [], (* XXX Augeas code needs tests. *)
4646    "clear Augeas path",
4647    "\
4648 Set the value associated with C<path> to C<NULL>.  This
4649 is the same as the L<augtool(1)> C<clear> command.");
4650
4651   ("get_umask", (RInt "mask", []), 240, [FishOutput FishOutputOctal],
4652    [InitEmpty, Always, TestOutputInt (
4653       [["get_umask"]], 0o22)],
4654    "get the current umask",
4655    "\
4656 Return the current umask.  By default the umask is C<022>
4657 unless it has been set by calling C<guestfs_umask>.");
4658
4659   ("debug_upload", (RErr, [FileIn "filename"; String "tmpname"; Int "mode"]), 241, [],
4660    [],
4661    "upload a file to the appliance (internal use only)",
4662    "\
4663 The C<guestfs_debug_upload> command uploads a file to
4664 the libguestfs appliance.
4665
4666 There is no comprehensive help for this command.  You have
4667 to look at the file C<daemon/debug.c> in the libguestfs source
4668 to find out what it is for.");
4669
4670   ("base64_in", (RErr, [FileIn "base64file"; Pathname "filename"]), 242, [],
4671    [InitBasicFS, Always, TestOutput (
4672       [["base64_in"; "../images/hello.b64"; "/hello"];
4673        ["cat"; "/hello"]], "hello\n")],
4674    "upload base64-encoded data to file",
4675    "\
4676 This command uploads base64-encoded data from C<base64file>
4677 to C<filename>.");
4678
4679   ("base64_out", (RErr, [Pathname "filename"; FileOut "base64file"]), 243, [],
4680    [],
4681    "download file and encode as base64",
4682    "\
4683 This command downloads the contents of C<filename>, writing
4684 it out to local file C<base64file> encoded as base64.");
4685
4686   ("checksums_out", (RErr, [String "csumtype"; Pathname "directory"; FileOut "sumsfile"]), 244, [],
4687    [],
4688    "compute MD5, SHAx or CRC checksum of files in a directory",
4689    "\
4690 This command computes the checksums of all regular files in
4691 C<directory> and then emits a list of those checksums to
4692 the local output file C<sumsfile>.
4693
4694 This can be used for verifying the integrity of a virtual
4695 machine.  However to be properly secure you should pay
4696 attention to the output of the checksum command (it uses
4697 the ones from GNU coreutils).  In particular when the
4698 filename is not printable, coreutils uses a special
4699 backslash syntax.  For more information, see the GNU
4700 coreutils info file.");
4701
4702   ("fill_pattern", (RErr, [String "pattern"; Int "len"; Pathname "path"]), 245, [],
4703    [InitBasicFS, Always, TestOutputBuffer (
4704       [["fill_pattern"; "abcdefghijklmnopqrstuvwxyz"; "28"; "/test"];
4705        ["read_file"; "/test"]], "abcdefghijklmnopqrstuvwxyzab")],
4706    "fill a file with a repeating pattern of bytes",
4707    "\
4708 This function is like C<guestfs_fill> except that it creates
4709 a new file of length C<len> containing the repeating pattern
4710 of bytes in C<pattern>.  The pattern is truncated if necessary
4711 to ensure the length of the file is exactly C<len> bytes.");
4712
4713   ("write", (RErr, [Pathname "path"; BufferIn "content"]), 246, [ProtocolLimitWarning],
4714    [InitBasicFS, Always, TestOutput (
4715       [["write"; "/new"; "new file contents"];
4716        ["cat"; "/new"]], "new file contents");
4717     InitBasicFS, Always, TestOutput (
4718       [["write"; "/new"; "\nnew file contents\n"];
4719        ["cat"; "/new"]], "\nnew file contents\n");
4720     InitBasicFS, Always, TestOutput (
4721       [["write"; "/new"; "\n\n"];
4722        ["cat"; "/new"]], "\n\n");
4723     InitBasicFS, Always, TestOutput (
4724       [["write"; "/new"; ""];
4725        ["cat"; "/new"]], "");
4726     InitBasicFS, Always, TestOutput (
4727       [["write"; "/new"; "\n\n\n"];
4728        ["cat"; "/new"]], "\n\n\n");
4729     InitBasicFS, Always, TestOutput (
4730       [["write"; "/new"; "\n"];
4731        ["cat"; "/new"]], "\n")],
4732    "create a new file",
4733    "\
4734 This call creates a file called C<path>.  The content of the
4735 file is the string C<content> (which can contain any 8 bit data).");
4736
4737   ("pwrite", (RInt "nbytes", [Pathname "path"; BufferIn "content"; Int64 "offset"]), 247, [ProtocolLimitWarning],
4738    [InitBasicFS, Always, TestOutput (
4739       [["write"; "/new"; "new file contents"];
4740        ["pwrite"; "/new"; "data"; "4"];
4741        ["cat"; "/new"]], "new data contents");
4742     InitBasicFS, Always, TestOutput (
4743       [["write"; "/new"; "new file contents"];
4744        ["pwrite"; "/new"; "is extended"; "9"];
4745        ["cat"; "/new"]], "new file is extended");
4746     InitBasicFS, Always, TestOutput (
4747       [["write"; "/new"; "new file contents"];
4748        ["pwrite"; "/new"; ""; "4"];
4749        ["cat"; "/new"]], "new file contents")],
4750    "write to part of a file",
4751    "\
4752 This command writes to part of a file.  It writes the data
4753 buffer C<content> to the file C<path> starting at offset C<offset>.
4754
4755 This command implements the L<pwrite(2)> system call, and like
4756 that system call it may not write the full data requested.  The
4757 return value is the number of bytes that were actually written
4758 to the file.  This could even be 0, although short writes are
4759 unlikely for regular files in ordinary circumstances.
4760
4761 See also C<guestfs_pread>.");
4762
4763   ("resize2fs_size", (RErr, [Device "device"; Int64 "size"]), 248, [],
4764    [],
4765    "resize an ext2, ext3 or ext4 filesystem (with size)",
4766    "\
4767 This command is the same as C<guestfs_resize2fs> except that it
4768 allows you to specify the new size (in bytes) explicitly.");
4769
4770   ("pvresize_size", (RErr, [Device "device"; Int64 "size"]), 249, [Optional "lvm2"],
4771    [],
4772    "resize an LVM physical volume (with size)",
4773    "\
4774 This command is the same as C<guestfs_pvresize> except that it
4775 allows you to specify the new size (in bytes) explicitly.");
4776
4777   ("ntfsresize_size", (RErr, [Device "device"; Int64 "size"]), 250, [Optional "ntfsprogs"],
4778    [],
4779    "resize an NTFS filesystem (with size)",
4780    "\
4781 This command is the same as C<guestfs_ntfsresize> except that it
4782 allows you to specify the new size (in bytes) explicitly.");
4783
4784   ("available_all_groups", (RStringList "groups", []), 251, [],
4785    [InitNone, Always, TestRun [["available_all_groups"]]],
4786    "return a list of all optional groups",
4787    "\
4788 This command returns a list of all optional groups that this
4789 daemon knows about.  Note this returns both supported and unsupported
4790 groups.  To find out which ones the daemon can actually support
4791 you have to call C<guestfs_available> on each member of the
4792 returned list.
4793
4794 See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>.");
4795
4796   ("fallocate64", (RErr, [Pathname "path"; Int64 "len"]), 252, [],
4797    [InitBasicFS, Always, TestOutputStruct (
4798       [["fallocate64"; "/a"; "1000000"];
4799        ["stat"; "/a"]], [CompareWithInt ("size", 1_000_000)])],
4800    "preallocate a file in the guest filesystem",
4801    "\
4802 This command preallocates a file (containing zero bytes) named
4803 C<path> of size C<len> bytes.  If the file exists already, it
4804 is overwritten.
4805
4806 Note that this call allocates disk blocks for the file.
4807 To create a sparse file use C<guestfs_truncate_size> instead.
4808
4809 The deprecated call C<guestfs_fallocate> does the same,
4810 but owing to an oversight it only allowed 30 bit lengths
4811 to be specified, effectively limiting the maximum size
4812 of files created through that call to 1GB.
4813
4814 Do not confuse this with the guestfish-specific
4815 C<alloc> and C<sparse> commands which create
4816 a file in the host and attach it as a device.");
4817
4818   ("vfs_label", (RString "label", [Device "device"]), 253, [],
4819    [InitBasicFS, Always, TestOutput (
4820        [["set_e2label"; "/dev/sda1"; "LTEST"];
4821         ["vfs_label"; "/dev/sda1"]], "LTEST")],
4822    "get the filesystem label",
4823    "\
4824 This returns the filesystem label of the filesystem on
4825 C<device>.
4826
4827 If the filesystem is unlabeled, this returns the empty string.");
4828
4829   ("vfs_uuid", (RString "uuid", [Device "device"]), 254, [],
4830    (let uuid = uuidgen () in
4831     [InitBasicFS, Always, TestOutput (
4832        [["set_e2uuid"; "/dev/sda1"; uuid];
4833         ["vfs_uuid"; "/dev/sda1"]], uuid)]),
4834    "get the filesystem UUID",
4835    "\
4836 This returns the filesystem UUID of the filesystem on
4837 C<device>.
4838
4839 If the filesystem does not have a UUID, this returns the empty string.");
4840
4841   ("lvm_set_filter", (RErr, [DeviceList "devices"]), 255, [Optional "lvm2"],
4842    (* Can't be tested with the current framework because
4843     * the VG is being used by the mounted filesystem, so
4844     * the vgchange -an command we do first will fail.
4845     *)
4846     [],
4847    "set LVM device filter",
4848    "\
4849 This sets the LVM device filter so that LVM will only be
4850 able to \"see\" the block devices in the list C<devices>,
4851 and will ignore all other attached block devices.
4852
4853 Where disk image(s) contain duplicate PVs or VGs, this
4854 command is useful to get LVM to ignore the duplicates, otherwise
4855 LVM can get confused.  Note also there are two types
4856 of duplication possible: either cloned PVs/VGs which have
4857 identical UUIDs; or VGs that are not cloned but just happen
4858 to have the same name.  In normal operation you cannot
4859 create this situation, but you can do it outside LVM, eg.
4860 by cloning disk images or by bit twiddling inside the LVM
4861 metadata.
4862
4863 This command also clears the LVM cache and performs a volume
4864 group scan.
4865
4866 You can filter whole block devices or individual partitions.
4867
4868 You cannot use this if any VG is currently in use (eg.
4869 contains a mounted filesystem), even if you are not
4870 filtering out that VG.");
4871
4872   ("lvm_clear_filter", (RErr, []), 256, [],
4873    [], (* see note on lvm_set_filter *)
4874    "clear LVM device filter",
4875    "\
4876 This undoes the effect of C<guestfs_lvm_set_filter>.  LVM
4877 will be able to see every block device.
4878
4879 This command also clears the LVM cache and performs a volume
4880 group scan.");
4881
4882   ("luks_open", (RErr, [Device "device"; Key "key"; String "mapname"]), 257, [Optional "luks"],
4883    [],
4884    "open a LUKS-encrypted block device",
4885    "\
4886 This command opens a block device which has been encrypted
4887 according to the Linux Unified Key Setup (LUKS) standard.
4888
4889 C<device> is the encrypted block device or partition.
4890
4891 The caller must supply one of the keys associated with the
4892 LUKS block device, in the C<key> parameter.
4893
4894 This creates a new block device called C</dev/mapper/mapname>.
4895 Reads and writes to this block device are decrypted from and
4896 encrypted to the underlying C<device> respectively.
4897
4898 If this block device contains LVM volume groups, then
4899 calling C<guestfs_vgscan> followed by C<guestfs_vg_activate_all>
4900 will make them visible.");
4901
4902   ("luks_open_ro", (RErr, [Device "device"; Key "key"; String "mapname"]), 258, [Optional "luks"],
4903    [],
4904    "open a LUKS-encrypted block device read-only",
4905    "\
4906 This is the same as C<guestfs_luks_open> except that a read-only
4907 mapping is created.");
4908
4909   ("luks_close", (RErr, [Device "device"]), 259, [Optional "luks"],
4910    [],
4911    "close a LUKS device",
4912    "\
4913 This closes a LUKS device that was created earlier by
4914 C<guestfs_luks_open> or C<guestfs_luks_open_ro>.  The
4915 C<device> parameter must be the name of the LUKS mapping
4916 device (ie. C</dev/mapper/mapname>) and I<not> the name
4917 of the underlying block device.");
4918
4919   ("luks_format", (RErr, [Device "device"; Key "key"; Int "keyslot"]), 260, [Optional "luks"; DangerWillRobinson],
4920    [],
4921    "format a block device as a LUKS encrypted device",
4922    "\
4923 This command erases existing data on C<device> and formats
4924 the device as a LUKS encrypted device.  C<key> is the
4925 initial key, which is added to key slot C<slot>.  (LUKS
4926 supports 8 key slots, numbered 0-7).");
4927
4928   ("luks_format_cipher", (RErr, [Device "device"; Key "key"; Int "keyslot"; String "cipher"]), 261, [Optional "luks"; DangerWillRobinson],
4929    [],
4930    "format a block device as a LUKS encrypted device",
4931    "\
4932 This command is the same as C<guestfs_luks_format> but
4933 it also allows you to set the C<cipher> used.");
4934
4935   ("luks_add_key", (RErr, [Device "device"; Key "key"; Key "newkey"; Int "keyslot"]), 262, [Optional "luks"],
4936    [],
4937    "add a key on a LUKS encrypted device",
4938    "\
4939 This command adds a new key on LUKS device C<device>.
4940 C<key> is any existing key, and is used to access the device.
4941 C<newkey> is the new key to add.  C<keyslot> is the key slot
4942 that will be replaced.
4943
4944 Note that if C<keyslot> already contains a key, then this
4945 command will fail.  You have to use C<guestfs_luks_kill_slot>
4946 first to remove that key.");
4947
4948   ("luks_kill_slot", (RErr, [Device "device"; Key "key"; Int "keyslot"]), 263, [Optional "luks"],
4949    [],
4950    "remove a key from a LUKS encrypted device",
4951    "\
4952 This command deletes the key in key slot C<keyslot> from the
4953 encrypted LUKS device C<device>.  C<key> must be one of the
4954 I<other> keys.");
4955
4956   ("is_lv", (RBool "lvflag", [Device "device"]), 264, [Optional "lvm2"],
4957    [InitBasicFSonLVM, IfAvailable "lvm2", TestOutputTrue (
4958       [["is_lv"; "/dev/VG/LV"]]);
4959     InitBasicFSonLVM, IfAvailable "lvm2", TestOutputFalse (
4960       [["is_lv"; "/dev/sda1"]])],
4961    "test if device is a logical volume",
4962    "\
4963 This command tests whether C<device> is a logical volume, and
4964 returns true iff this is the case.");
4965
4966 ]
4967
4968 let all_functions = non_daemon_functions @ daemon_functions
4969
4970 (* In some places we want the functions to be displayed sorted
4971  * alphabetically, so this is useful:
4972  *)
4973 let all_functions_sorted =
4974   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
4975                compare n1 n2) all_functions
4976
4977 (* This is used to generate the src/MAX_PROC_NR file which
4978  * contains the maximum procedure number, a surrogate for the
4979  * ABI version number.  See src/Makefile.am for the details.
4980  *)
4981 let max_proc_nr =
4982   let proc_nrs = List.map (
4983     fun (_, _, proc_nr, _, _, _, _) -> proc_nr
4984   ) daemon_functions in
4985   List.fold_left max 0 proc_nrs
4986
4987 (* Field types for structures. *)
4988 type field =
4989   | FChar                       (* C 'char' (really, a 7 bit byte). *)
4990   | FString                     (* nul-terminated ASCII string, NOT NULL. *)
4991   | FBuffer                     (* opaque buffer of bytes, (char *, int) pair *)
4992   | FUInt32
4993   | FInt32
4994   | FUInt64
4995   | FInt64
4996   | FBytes                      (* Any int measure that counts bytes. *)
4997   | FUUID                       (* 32 bytes long, NOT nul-terminated. *)
4998   | FOptPercent                 (* [0..100], or -1 meaning "not present". *)
4999
5000 (* Because we generate extra parsing code for LVM command line tools,
5001  * we have to pull out the LVM columns separately here.
5002  *)
5003 let lvm_pv_cols = [
5004   "pv_name", FString;
5005   "pv_uuid", FUUID;
5006   "pv_fmt", FString;
5007   "pv_size", FBytes;
5008   "dev_size", FBytes;
5009   "pv_free", FBytes;
5010   "pv_used", FBytes;
5011   "pv_attr", FString (* XXX *);
5012   "pv_pe_count", FInt64;
5013   "pv_pe_alloc_count", FInt64;
5014   "pv_tags", FString;
5015   "pe_start", FBytes;
5016   "pv_mda_count", FInt64;
5017   "pv_mda_free", FBytes;
5018   (* Not in Fedora 10:
5019      "pv_mda_size", FBytes;
5020   *)
5021 ]
5022 let lvm_vg_cols = [
5023   "vg_name", FString;
5024   "vg_uuid", FUUID;
5025   "vg_fmt", FString;
5026   "vg_attr", FString (* XXX *);
5027   "vg_size", FBytes;
5028   "vg_free", FBytes;
5029   "vg_sysid", FString;
5030   "vg_extent_size", FBytes;
5031   "vg_extent_count", FInt64;
5032   "vg_free_count", FInt64;
5033   "max_lv", FInt64;
5034   "max_pv", FInt64;
5035   "pv_count", FInt64;
5036   "lv_count", FInt64;
5037   "snap_count", FInt64;
5038   "vg_seqno", FInt64;
5039   "vg_tags", FString;
5040   "vg_mda_count", FInt64;
5041   "vg_mda_free", FBytes;
5042   (* Not in Fedora 10:
5043      "vg_mda_size", FBytes;
5044   *)
5045 ]
5046 let lvm_lv_cols = [
5047   "lv_name", FString;
5048   "lv_uuid", FUUID;
5049   "lv_attr", FString (* XXX *);
5050   "lv_major", FInt64;
5051   "lv_minor", FInt64;
5052   "lv_kernel_major", FInt64;
5053   "lv_kernel_minor", FInt64;
5054   "lv_size", FBytes;
5055   "seg_count", FInt64;
5056   "origin", FString;
5057   "snap_percent", FOptPercent;
5058   "copy_percent", FOptPercent;
5059   "move_pv", FString;
5060   "lv_tags", FString;
5061   "mirror_log", FString;
5062   "modules", FString;
5063 ]
5064
5065 (* Names and fields in all structures (in RStruct and RStructList)
5066  * that we support.
5067  *)
5068 let structs = [
5069   (* The old RIntBool return type, only ever used for aug_defnode.  Do
5070    * not use this struct in any new code.
5071    *)
5072   "int_bool", [
5073     "i", FInt32;                (* for historical compatibility *)
5074     "b", FInt32;                (* for historical compatibility *)
5075   ];
5076
5077   (* LVM PVs, VGs, LVs. *)
5078   "lvm_pv", lvm_pv_cols;
5079   "lvm_vg", lvm_vg_cols;
5080   "lvm_lv", lvm_lv_cols;
5081
5082   (* Column names and types from stat structures.
5083    * NB. Can't use things like 'st_atime' because glibc header files
5084    * define some of these as macros.  Ugh.
5085    *)
5086   "stat", [
5087     "dev", FInt64;
5088     "ino", FInt64;
5089     "mode", FInt64;
5090     "nlink", FInt64;
5091     "uid", FInt64;
5092     "gid", FInt64;
5093     "rdev", FInt64;
5094     "size", FInt64;
5095     "blksize", FInt64;
5096     "blocks", FInt64;
5097     "atime", FInt64;
5098     "mtime", FInt64;
5099     "ctime", FInt64;
5100   ];
5101   "statvfs", [
5102     "bsize", FInt64;
5103     "frsize", FInt64;
5104     "blocks", FInt64;
5105     "bfree", FInt64;
5106     "bavail", FInt64;
5107     "files", FInt64;
5108     "ffree", FInt64;
5109     "favail", FInt64;
5110     "fsid", FInt64;
5111     "flag", FInt64;
5112     "namemax", FInt64;
5113   ];
5114
5115   (* Column names in dirent structure. *)
5116   "dirent", [
5117     "ino", FInt64;
5118     (* 'b' 'c' 'd' 'f' (FIFO) 'l' 'r' (regular file) 's' 'u' '?' *)
5119     "ftyp", FChar;
5120     "name", FString;
5121   ];
5122
5123   (* Version numbers. *)
5124   "version", [
5125     "major", FInt64;
5126     "minor", FInt64;
5127     "release", FInt64;
5128     "extra", FString;
5129   ];
5130
5131   (* Extended attribute. *)
5132   "xattr", [
5133     "attrname", FString;
5134     "attrval", FBuffer;
5135   ];
5136
5137   (* Inotify events. *)
5138   "inotify_event", [
5139     "in_wd", FInt64;
5140     "in_mask", FUInt32;
5141     "in_cookie", FUInt32;
5142     "in_name", FString;
5143   ];
5144
5145   (* Partition table entry. *)
5146   "partition", [
5147     "part_num", FInt32;
5148     "part_start", FBytes;
5149     "part_end", FBytes;
5150     "part_size", FBytes;
5151   ];
5152 ] (* end of structs *)
5153
5154 (* Ugh, Java has to be different ..
5155  * These names are also used by the Haskell bindings.
5156  *)
5157 let java_structs = [
5158   "int_bool", "IntBool";
5159   "lvm_pv", "PV";
5160   "lvm_vg", "VG";
5161   "lvm_lv", "LV";
5162   "stat", "Stat";
5163   "statvfs", "StatVFS";
5164   "dirent", "Dirent";
5165   "version", "Version";
5166   "xattr", "XAttr";
5167   "inotify_event", "INotifyEvent";
5168   "partition", "Partition";
5169 ]
5170
5171 (* What structs are actually returned. *)
5172 type rstructs_used_t = RStructOnly | RStructListOnly | RStructAndList
5173
5174 (* Returns a list of RStruct/RStructList structs that are returned
5175  * by any function.  Each element of returned list is a pair:
5176  *
5177  * (structname, RStructOnly)
5178  *    == there exists function which returns RStruct (_, structname)
5179  * (structname, RStructListOnly)
5180  *    == there exists function which returns RStructList (_, structname)
5181  * (structname, RStructAndList)
5182  *    == there are functions returning both RStruct (_, structname)
5183  *                                      and RStructList (_, structname)
5184  *)
5185 let rstructs_used_by functions =
5186   (* ||| is a "logical OR" for rstructs_used_t *)
5187   let (|||) a b =
5188     match a, b with
5189     | RStructAndList, _
5190     | _, RStructAndList -> RStructAndList
5191     | RStructOnly, RStructListOnly
5192     | RStructListOnly, RStructOnly -> RStructAndList
5193     | RStructOnly, RStructOnly -> RStructOnly
5194     | RStructListOnly, RStructListOnly -> RStructListOnly
5195   in
5196
5197   let h = Hashtbl.create 13 in
5198
5199   (* if elem->oldv exists, update entry using ||| operator,
5200    * else just add elem->newv to the hash
5201    *)
5202   let update elem newv =
5203     try  let oldv = Hashtbl.find h elem in
5204          Hashtbl.replace h elem (newv ||| oldv)
5205     with Not_found -> Hashtbl.add h elem newv
5206   in
5207
5208   List.iter (
5209     fun (_, style, _, _, _, _, _) ->
5210       match fst style with
5211       | RStruct (_, structname) -> update structname RStructOnly
5212       | RStructList (_, structname) -> update structname RStructListOnly
5213       | _ -> ()
5214   ) functions;
5215
5216   (* return key->values as a list of (key,value) *)
5217   Hashtbl.fold (fun key value xs -> (key, value) :: xs) h []
5218
5219 (* Used for testing language bindings. *)
5220 type callt =
5221   | CallString of string
5222   | CallOptString of string option
5223   | CallStringList of string list
5224   | CallInt of int
5225   | CallInt64 of int64
5226   | CallBool of bool
5227   | CallBuffer of string
5228
5229 (* Used to memoize the result of pod2text. *)
5230 let pod2text_memo_filename = "src/.pod2text.data"
5231 let pod2text_memo : ((int * string * string), string list) Hashtbl.t =
5232   try
5233     let chan = open_in pod2text_memo_filename in
5234     let v = input_value chan in
5235     close_in chan;
5236     v
5237   with
5238     _ -> Hashtbl.create 13
5239 let pod2text_memo_updated () =
5240   let chan = open_out pod2text_memo_filename in
5241   output_value chan pod2text_memo;
5242   close_out chan
5243
5244 (* Useful functions.
5245  * Note we don't want to use any external OCaml libraries which
5246  * makes this a bit harder than it should be.
5247  *)
5248 module StringMap = Map.Make (String)
5249
5250 let failwithf fs = ksprintf failwith fs
5251
5252 let unique = let i = ref 0 in fun () -> incr i; !i
5253
5254 let replace_char s c1 c2 =
5255   let s2 = String.copy s in
5256   let r = ref false in
5257   for i = 0 to String.length s2 - 1 do
5258     if String.unsafe_get s2 i = c1 then (
5259       String.unsafe_set s2 i c2;
5260       r := true
5261     )
5262   done;
5263   if not !r then s else s2
5264
5265 let isspace c =
5266   c = ' '
5267   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
5268
5269 let triml ?(test = isspace) str =
5270   let i = ref 0 in
5271   let n = ref (String.length str) in
5272   while !n > 0 && test str.[!i]; do
5273     decr n;
5274     incr i
5275   done;
5276   if !i = 0 then str
5277   else String.sub str !i !n
5278
5279 let trimr ?(test = isspace) str =
5280   let n = ref (String.length str) in
5281   while !n > 0 && test str.[!n-1]; do
5282     decr n
5283   done;
5284   if !n = String.length str then str
5285   else String.sub str 0 !n
5286
5287 let trim ?(test = isspace) str =
5288   trimr ~test (triml ~test str)
5289
5290 let rec find s sub =
5291   let len = String.length s in
5292   let sublen = String.length sub in
5293   let rec loop i =
5294     if i <= len-sublen then (
5295       let rec loop2 j =
5296         if j < sublen then (
5297           if s.[i+j] = sub.[j] then loop2 (j+1)
5298           else -1
5299         ) else
5300           i (* found *)
5301       in
5302       let r = loop2 0 in
5303       if r = -1 then loop (i+1) else r
5304     ) else
5305       -1 (* not found *)
5306   in
5307   loop 0
5308
5309 let rec replace_str s s1 s2 =
5310   let len = String.length s in
5311   let sublen = String.length s1 in
5312   let i = find s s1 in
5313   if i = -1 then s
5314   else (
5315     let s' = String.sub s 0 i in
5316     let s'' = String.sub s (i+sublen) (len-i-sublen) in
5317     s' ^ s2 ^ replace_str s'' s1 s2
5318   )
5319
5320 let rec string_split sep str =
5321   let len = String.length str in
5322   let seplen = String.length sep in
5323   let i = find str sep in
5324   if i = -1 then [str]
5325   else (
5326     let s' = String.sub str 0 i in
5327     let s'' = String.sub str (i+seplen) (len-i-seplen) in
5328     s' :: string_split sep s''
5329   )
5330
5331 let files_equal n1 n2 =
5332   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
5333   match Sys.command cmd with
5334   | 0 -> true
5335   | 1 -> false
5336   | i -> failwithf "%s: failed with error code %d" cmd i
5337
5338 let rec filter_map f = function
5339   | [] -> []
5340   | x :: xs ->
5341       match f x with
5342       | Some y -> y :: filter_map f xs
5343       | None -> filter_map f xs
5344
5345 let rec find_map f = function
5346   | [] -> raise Not_found
5347   | x :: xs ->
5348       match f x with
5349       | Some y -> y
5350       | None -> find_map f xs
5351
5352 let iteri f xs =
5353   let rec loop i = function
5354     | [] -> ()
5355     | x :: xs -> f i x; loop (i+1) xs
5356   in
5357   loop 0 xs
5358
5359 let mapi f xs =
5360   let rec loop i = function
5361     | [] -> []
5362     | x :: xs -> let r = f i x in r :: loop (i+1) xs
5363   in
5364   loop 0 xs
5365
5366 let count_chars c str =
5367   let count = ref 0 in
5368   for i = 0 to String.length str - 1 do
5369     if c = String.unsafe_get str i then incr count
5370   done;
5371   !count
5372
5373 let explode str =
5374   let r = ref [] in
5375   for i = 0 to String.length str - 1 do
5376     let c = String.unsafe_get str i in
5377     r := c :: !r;
5378   done;
5379   List.rev !r
5380
5381 let map_chars f str =
5382   List.map f (explode str)
5383
5384 let name_of_argt = function
5385   | Pathname n | Device n | Dev_or_Path n | String n | OptString n
5386   | StringList n | DeviceList n | Bool n | Int n | Int64 n
5387   | FileIn n | FileOut n | BufferIn n | Key n -> n
5388
5389 let java_name_of_struct typ =
5390   try List.assoc typ java_structs
5391   with Not_found ->
5392     failwithf
5393       "java_name_of_struct: no java_structs entry corresponding to %s" typ
5394
5395 let cols_of_struct typ =
5396   try List.assoc typ structs
5397   with Not_found ->
5398     failwithf "cols_of_struct: unknown struct %s" typ
5399
5400 let seq_of_test = function
5401   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
5402   | TestOutputListOfDevices (s, _)
5403   | TestOutputInt (s, _) | TestOutputIntOp (s, _, _)
5404   | TestOutputTrue s | TestOutputFalse s
5405   | TestOutputLength (s, _) | TestOutputBuffer (s, _)
5406   | TestOutputStruct (s, _)
5407   | TestLastFail s -> s
5408
5409 (* Handling for function flags. *)
5410 let protocol_limit_warning =
5411   "Because of the message protocol, there is a transfer limit
5412 of somewhere between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
5413
5414 let danger_will_robinson =
5415   "B<This command is dangerous.  Without careful use you
5416 can easily destroy all your data>."
5417
5418 let deprecation_notice flags =
5419   try
5420     let alt =
5421       find_map (function DeprecatedBy str -> Some str | _ -> None) flags in
5422     let txt =
5423       sprintf "This function is deprecated.
5424 In new code, use the C<%s> call instead.
5425
5426 Deprecated functions will not be removed from the API, but the
5427 fact that they are deprecated indicates that there are problems
5428 with correct use of these functions." alt in
5429     Some txt
5430   with
5431     Not_found -> None
5432
5433 (* Create list of optional groups. *)
5434 let optgroups =
5435   let h = Hashtbl.create 13 in
5436   List.iter (
5437     fun (name, _, _, flags, _, _, _) ->
5438       List.iter (
5439         function
5440         | Optional group ->
5441             let names = try Hashtbl.find h group with Not_found -> [] in
5442             Hashtbl.replace h group (name :: names)
5443         | _ -> ()
5444       ) flags
5445   ) daemon_functions;
5446   let groups = Hashtbl.fold (fun k _ ks -> k :: ks) h [] in
5447   let groups =
5448     List.map (
5449       fun group -> group, List.sort compare (Hashtbl.find h group)
5450     ) groups in
5451   List.sort (fun x y -> compare (fst x) (fst y)) groups
5452
5453 (* Check function names etc. for consistency. *)
5454 let check_functions () =
5455   let contains_uppercase str =
5456     let len = String.length str in
5457     let rec loop i =
5458       if i >= len then false
5459       else (
5460         let c = str.[i] in
5461         if c >= 'A' && c <= 'Z' then true
5462         else loop (i+1)
5463       )
5464     in
5465     loop 0
5466   in
5467
5468   (* Check function names. *)
5469   List.iter (
5470     fun (name, _, _, _, _, _, _) ->
5471       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
5472         failwithf "function name %s does not need 'guestfs' prefix" name;
5473       if name = "" then
5474         failwithf "function name is empty";
5475       if name.[0] < 'a' || name.[0] > 'z' then
5476         failwithf "function name %s must start with lowercase a-z" name;
5477       if String.contains name '-' then
5478         failwithf "function name %s should not contain '-', use '_' instead."
5479           name
5480   ) all_functions;
5481
5482   (* Check function parameter/return names. *)
5483   List.iter (
5484     fun (name, style, _, _, _, _, _) ->
5485       let check_arg_ret_name n =
5486         if contains_uppercase n then
5487           failwithf "%s param/ret %s should not contain uppercase chars"
5488             name n;
5489         if String.contains n '-' || String.contains n '_' then
5490           failwithf "%s param/ret %s should not contain '-' or '_'"
5491             name n;
5492         if n = "value" then
5493           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;
5494         if n = "int" || n = "char" || n = "short" || n = "long" then
5495           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
5496         if n = "i" || n = "n" then
5497           failwithf "%s has a param/ret called 'i' or 'n', which will cause some conflicts in the generated code" name;
5498         if n = "argv" || n = "args" then
5499           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name;
5500
5501         (* List Haskell, OCaml and C keywords here.
5502          * http://www.haskell.org/haskellwiki/Keywords
5503          * http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#operator-char
5504          * http://en.wikipedia.org/wiki/C_syntax#Reserved_keywords
5505          * Formatted via: cat c haskell ocaml|sort -u|grep -vE '_|^val$' \
5506          *   |perl -pe 's/(.+)/"$1";/'|fmt -70
5507          * Omitting _-containing words, since they're handled above.
5508          * Omitting the OCaml reserved word, "val", is ok,
5509          * and saves us from renaming several parameters.
5510          *)
5511         let reserved = [
5512           "and"; "as"; "asr"; "assert"; "auto"; "begin"; "break"; "case";
5513           "char"; "class"; "const"; "constraint"; "continue"; "data";
5514           "default"; "deriving"; "do"; "done"; "double"; "downto"; "else";
5515           "end"; "enum"; "exception"; "extern"; "external"; "false"; "float";
5516           "for"; "forall"; "foreign"; "fun"; "function"; "functor"; "goto";
5517           "hiding"; "if"; "import"; "in"; "include"; "infix"; "infixl";
5518           "infixr"; "inherit"; "initializer"; "inline"; "instance"; "int";
5519           "interface";
5520           "land"; "lazy"; "let"; "long"; "lor"; "lsl"; "lsr"; "lxor";
5521           "match"; "mdo"; "method"; "mod"; "module"; "mutable"; "new";
5522           "newtype"; "object"; "of"; "open"; "or"; "private"; "qualified";
5523           "rec"; "register"; "restrict"; "return"; "short"; "sig"; "signed";
5524           "sizeof"; "static"; "struct"; "switch"; "then"; "to"; "true"; "try";
5525           "type"; "typedef"; "union"; "unsigned"; "virtual"; "void";
5526           "volatile"; "when"; "where"; "while";
5527           ] in
5528         if List.mem n reserved then
5529           failwithf "%s has param/ret using reserved word %s" name n;
5530       in
5531
5532       (match fst style with
5533        | RErr -> ()
5534        | RInt n | RInt64 n | RBool n
5535        | RConstString n | RConstOptString n | RString n
5536        | RStringList n | RStruct (n, _) | RStructList (n, _)
5537        | RHashtable n | RBufferOut n ->
5538            check_arg_ret_name n
5539       );
5540       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
5541   ) all_functions;
5542
5543   (* Check short descriptions. *)
5544   List.iter (
5545     fun (name, _, _, _, _, shortdesc, _) ->
5546       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
5547         failwithf "short description of %s should begin with lowercase." name;
5548       let c = shortdesc.[String.length shortdesc-1] in
5549       if c = '\n' || c = '.' then
5550         failwithf "short description of %s should not end with . or \\n." name
5551   ) all_functions;
5552
5553   (* Check long descriptions. *)
5554   List.iter (
5555     fun (name, _, _, _, _, _, longdesc) ->
5556       if longdesc.[String.length longdesc-1] = '\n' then
5557         failwithf "long description of %s should not end with \\n." name
5558   ) all_functions;
5559
5560   (* Check proc_nrs. *)
5561   List.iter (
5562     fun (name, _, proc_nr, _, _, _, _) ->
5563       if proc_nr <= 0 then
5564         failwithf "daemon function %s should have proc_nr > 0" name
5565   ) daemon_functions;
5566
5567   List.iter (
5568     fun (name, _, proc_nr, _, _, _, _) ->
5569       if proc_nr <> -1 then
5570         failwithf "non-daemon function %s should have proc_nr -1" name
5571   ) non_daemon_functions;
5572
5573   let proc_nrs =
5574     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
5575       daemon_functions in
5576   let proc_nrs =
5577     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
5578   let rec loop = function
5579     | [] -> ()
5580     | [_] -> ()
5581     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
5582         loop rest
5583     | (name1,nr1) :: (name2,nr2) :: _ ->
5584         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
5585           name1 name2 nr1 nr2
5586   in
5587   loop proc_nrs;
5588
5589   (* Check tests. *)
5590   List.iter (
5591     function
5592       (* Ignore functions that have no tests.  We generate a
5593        * warning when the user does 'make check' instead.
5594        *)
5595     | name, _, _, _, [], _, _ -> ()
5596     | name, _, _, _, tests, _, _ ->
5597         let funcs =
5598           List.map (
5599             fun (_, _, test) ->
5600               match seq_of_test test with
5601               | [] ->
5602                   failwithf "%s has a test containing an empty sequence" name
5603               | cmds -> List.map List.hd cmds
5604           ) tests in
5605         let funcs = List.flatten funcs in
5606
5607         let tested = List.mem name funcs in
5608
5609         if not tested then
5610           failwithf "function %s has tests but does not test itself" name
5611   ) all_functions
5612
5613 (* 'pr' prints to the current output file. *)
5614 let chan = ref Pervasives.stdout
5615 let lines = ref 0
5616 let pr fs =
5617   ksprintf
5618     (fun str ->
5619        let i = count_chars '\n' str in
5620        lines := !lines + i;
5621        output_string !chan str
5622     ) fs
5623
5624 let copyright_years =
5625   let this_year = 1900 + (localtime (time ())).tm_year in
5626   if this_year > 2009 then sprintf "2009-%04d" this_year else "2009"
5627
5628 (* Generate a header block in a number of standard styles. *)
5629 type comment_style =
5630     CStyle | CPlusPlusStyle | HashStyle | OCamlStyle | HaskellStyle
5631 type license = GPLv2plus | LGPLv2plus
5632
5633 let generate_header ?(extra_inputs = []) comment license =
5634   let inputs = "src/generator.ml" :: extra_inputs in
5635   let c = match comment with
5636     | CStyle ->         pr "/* "; " *"
5637     | CPlusPlusStyle -> pr "// "; "//"
5638     | HashStyle ->      pr "# ";  "#"
5639     | OCamlStyle ->     pr "(* "; " *"
5640     | HaskellStyle ->   pr "{- "; "  " in
5641   pr "libguestfs generated file\n";
5642   pr "%s WARNING: THIS FILE IS GENERATED FROM:\n" c;
5643   List.iter (pr "%s   %s\n" c) inputs;
5644   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
5645   pr "%s\n" c;
5646   pr "%s Copyright (C) %s Red Hat Inc.\n" c copyright_years;
5647   pr "%s\n" c;
5648   (match license with
5649    | GPLv2plus ->
5650        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
5651        pr "%s it under the terms of the GNU General Public License as published by\n" c;
5652        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
5653        pr "%s (at your option) any later version.\n" c;
5654        pr "%s\n" c;
5655        pr "%s This program is distributed in the hope that it will be useful,\n" c;
5656        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
5657        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
5658        pr "%s GNU General Public License for more details.\n" c;
5659        pr "%s\n" c;
5660        pr "%s You should have received a copy of the GNU General Public License along\n" c;
5661        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
5662        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
5663
5664    | LGPLv2plus ->
5665        pr "%s This library is free software; you can redistribute it and/or\n" c;
5666        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
5667        pr "%s License as published by the Free Software Foundation; either\n" c;
5668        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
5669        pr "%s\n" c;
5670        pr "%s This library is distributed in the hope that it will be useful,\n" c;
5671        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
5672        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
5673        pr "%s Lesser General Public License for more details.\n" c;
5674        pr "%s\n" c;
5675        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
5676        pr "%s License along with this library; if not, write to the Free Software\n" c;
5677        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
5678   );
5679   (match comment with
5680    | CStyle -> pr " */\n"
5681    | CPlusPlusStyle
5682    | HashStyle -> ()
5683    | OCamlStyle -> pr " *)\n"
5684    | HaskellStyle -> pr "-}\n"
5685   );
5686   pr "\n"
5687
5688 (* Start of main code generation functions below this line. *)
5689
5690 (* Generate the pod documentation for the C API. *)
5691 let rec generate_actions_pod () =
5692   List.iter (
5693     fun (shortname, style, _, flags, _, _, longdesc) ->
5694       if not (List.mem NotInDocs flags) then (
5695         let name = "guestfs_" ^ shortname in
5696         pr "=head2 %s\n\n" name;
5697         pr " ";
5698         generate_prototype ~extern:false ~handle:"g" name style;
5699         pr "\n\n";
5700         pr "%s\n\n" longdesc;
5701         (match fst style with
5702          | RErr ->
5703              pr "This function returns 0 on success or -1 on error.\n\n"
5704          | RInt _ ->
5705              pr "On error this function returns -1.\n\n"
5706          | RInt64 _ ->
5707              pr "On error this function returns -1.\n\n"
5708          | RBool _ ->
5709              pr "This function returns a C truth value on success or -1 on error.\n\n"
5710          | RConstString _ ->
5711              pr "This function returns a string, or NULL on error.
5712 The string is owned by the guest handle and must I<not> be freed.\n\n"
5713          | RConstOptString _ ->
5714              pr "This function returns a string which may be NULL.
5715 There is no way to return an error from this function.
5716 The string is owned by the guest handle and must I<not> be freed.\n\n"
5717          | RString _ ->
5718              pr "This function returns a string, or NULL on error.
5719 I<The caller must free the returned string after use>.\n\n"
5720          | RStringList _ ->
5721              pr "This function returns a NULL-terminated array of strings
5722 (like L<environ(3)>), or NULL if there was an error.
5723 I<The caller must free the strings and the array after use>.\n\n"
5724          | RStruct (_, typ) ->
5725              pr "This function returns a C<struct guestfs_%s *>,
5726 or NULL if there was an error.
5727 I<The caller must call C<guestfs_free_%s> after use>.\n\n" typ typ
5728          | RStructList (_, typ) ->
5729              pr "This function returns a C<struct guestfs_%s_list *>
5730 (see E<lt>guestfs-structs.hE<gt>),
5731 or NULL if there was an error.
5732 I<The caller must call C<guestfs_free_%s_list> after use>.\n\n" typ typ
5733          | RHashtable _ ->
5734              pr "This function returns a NULL-terminated array of
5735 strings, or NULL if there was an error.
5736 The array of strings will always have length C<2n+1>, where
5737 C<n> keys and values alternate, followed by the trailing NULL entry.
5738 I<The caller must free the strings and the array after use>.\n\n"
5739          | RBufferOut _ ->
5740              pr "This function returns a buffer, or NULL on error.
5741 The size of the returned buffer is written to C<*size_r>.
5742 I<The caller must free the returned buffer after use>.\n\n"
5743         );
5744         if List.mem ProtocolLimitWarning flags then
5745           pr "%s\n\n" protocol_limit_warning;
5746         if List.mem DangerWillRobinson flags then
5747           pr "%s\n\n" danger_will_robinson;
5748         if List.exists (function Key _ -> true | _ -> false) (snd style) then
5749           pr "This function takes a key or passphrase parameter which
5750 could contain sensitive material.  Read the section
5751 L</KEYS AND PASSPHRASES> for more information.\n\n";
5752         match deprecation_notice flags with
5753         | None -> ()
5754         | Some txt -> pr "%s\n\n" txt
5755       )
5756   ) all_functions_sorted
5757
5758 and generate_structs_pod () =
5759   (* Structs documentation. *)
5760   List.iter (
5761     fun (typ, cols) ->
5762       pr "=head2 guestfs_%s\n" typ;
5763       pr "\n";
5764       pr " struct guestfs_%s {\n" typ;
5765       List.iter (
5766         function
5767         | name, FChar -> pr "   char %s;\n" name
5768         | name, FUInt32 -> pr "   uint32_t %s;\n" name
5769         | name, FInt32 -> pr "   int32_t %s;\n" name
5770         | name, (FUInt64|FBytes) -> pr "   uint64_t %s;\n" name
5771         | name, FInt64 -> pr "   int64_t %s;\n" name
5772         | name, FString -> pr "   char *%s;\n" name
5773         | name, FBuffer ->
5774             pr "   /* The next two fields describe a byte array. */\n";
5775             pr "   uint32_t %s_len;\n" name;
5776             pr "   char *%s;\n" name
5777         | name, FUUID ->
5778             pr "   /* The next field is NOT nul-terminated, be careful when printing it: */\n";
5779             pr "   char %s[32];\n" name
5780         | name, FOptPercent ->
5781             pr "   /* The next field is [0..100] or -1 meaning 'not present': */\n";
5782             pr "   float %s;\n" name
5783       ) cols;
5784       pr " };\n";
5785       pr " \n";
5786       pr " struct guestfs_%s_list {\n" typ;
5787       pr "   uint32_t len; /* Number of elements in list. */\n";
5788       pr "   struct guestfs_%s *val; /* Elements. */\n" typ;
5789       pr " };\n";
5790       pr " \n";
5791       pr " void guestfs_free_%s (struct guestfs_free_%s *);\n" typ typ;
5792       pr " void guestfs_free_%s_list (struct guestfs_free_%s_list *);\n"
5793         typ typ;
5794       pr "\n"
5795   ) structs
5796
5797 and generate_availability_pod () =
5798   (* Availability documentation. *)
5799   pr "=over 4\n";
5800   pr "\n";
5801   List.iter (
5802     fun (group, functions) ->
5803       pr "=item B<%s>\n" group;
5804       pr "\n";
5805       pr "The following functions:\n";
5806       List.iter (pr "L</guestfs_%s>\n") functions;
5807       pr "\n"
5808   ) optgroups;
5809   pr "=back\n";
5810   pr "\n"
5811
5812 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
5813  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
5814  *
5815  * We have to use an underscore instead of a dash because otherwise
5816  * rpcgen generates incorrect code.
5817  *
5818  * This header is NOT exported to clients, but see also generate_structs_h.
5819  *)
5820 and generate_xdr () =
5821   generate_header CStyle LGPLv2plus;
5822
5823   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
5824   pr "typedef string str<>;\n";
5825   pr "\n";
5826
5827   (* Internal structures. *)
5828   List.iter (
5829     function
5830     | typ, cols ->
5831         pr "struct guestfs_int_%s {\n" typ;
5832         List.iter (function
5833                    | name, FChar -> pr "  char %s;\n" name
5834                    | name, FString -> pr "  string %s<>;\n" name
5835                    | name, FBuffer -> pr "  opaque %s<>;\n" name
5836                    | name, FUUID -> pr "  opaque %s[32];\n" name
5837                    | name, (FInt32|FUInt32) -> pr "  int %s;\n" name
5838                    | name, (FInt64|FUInt64|FBytes) -> pr "  hyper %s;\n" name
5839                    | name, FOptPercent -> pr "  float %s;\n" name
5840                   ) cols;
5841         pr "};\n";
5842         pr "\n";
5843         pr "typedef struct guestfs_int_%s guestfs_int_%s_list<>;\n" typ typ;
5844         pr "\n";
5845   ) structs;
5846
5847   List.iter (
5848     fun (shortname, style, _, _, _, _, _) ->
5849       let name = "guestfs_" ^ shortname in
5850
5851       (match snd style with
5852        | [] -> ()
5853        | args ->
5854            pr "struct %s_args {\n" name;
5855            List.iter (
5856              function
5857              | Pathname n | Device n | Dev_or_Path n | String n | Key n ->
5858                  pr "  string %s<>;\n" n
5859              | OptString n -> pr "  str *%s;\n" n
5860              | StringList n | DeviceList n -> pr "  str %s<>;\n" n
5861              | Bool n -> pr "  bool %s;\n" n
5862              | Int n -> pr "  int %s;\n" n
5863              | Int64 n -> pr "  hyper %s;\n" n
5864              | BufferIn n ->
5865                  pr "  opaque %s<>;\n" n
5866              | FileIn _ | FileOut _ -> ()
5867            ) args;
5868            pr "};\n\n"
5869       );
5870       (match fst style with
5871        | RErr -> ()
5872        | RInt n ->
5873            pr "struct %s_ret {\n" name;
5874            pr "  int %s;\n" n;
5875            pr "};\n\n"
5876        | RInt64 n ->
5877            pr "struct %s_ret {\n" name;
5878            pr "  hyper %s;\n" n;
5879            pr "};\n\n"
5880        | RBool n ->
5881            pr "struct %s_ret {\n" name;
5882            pr "  bool %s;\n" n;
5883            pr "};\n\n"
5884        | RConstString _ | RConstOptString _ ->
5885            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5886        | RString n ->
5887            pr "struct %s_ret {\n" name;
5888            pr "  string %s<>;\n" n;
5889            pr "};\n\n"
5890        | RStringList n ->
5891            pr "struct %s_ret {\n" name;
5892            pr "  str %s<>;\n" n;
5893            pr "};\n\n"
5894        | RStruct (n, typ) ->
5895            pr "struct %s_ret {\n" name;
5896            pr "  guestfs_int_%s %s;\n" typ n;
5897            pr "};\n\n"
5898        | RStructList (n, typ) ->
5899            pr "struct %s_ret {\n" name;
5900            pr "  guestfs_int_%s_list %s;\n" typ n;
5901            pr "};\n\n"
5902        | RHashtable n ->
5903            pr "struct %s_ret {\n" name;
5904            pr "  str %s<>;\n" n;
5905            pr "};\n\n"
5906        | RBufferOut n ->
5907            pr "struct %s_ret {\n" name;
5908            pr "  opaque %s<>;\n" n;
5909            pr "};\n\n"
5910       );
5911   ) daemon_functions;
5912
5913   (* Table of procedure numbers. *)
5914   pr "enum guestfs_procedure {\n";
5915   List.iter (
5916     fun (shortname, _, proc_nr, _, _, _, _) ->
5917       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
5918   ) daemon_functions;
5919   pr "  GUESTFS_PROC_NR_PROCS\n";
5920   pr "};\n";
5921   pr "\n";
5922
5923   (* Having to choose a maximum message size is annoying for several
5924    * reasons (it limits what we can do in the API), but it (a) makes
5925    * the protocol a lot simpler, and (b) provides a bound on the size
5926    * of the daemon which operates in limited memory space.
5927    *)
5928   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
5929   pr "\n";
5930
5931   (* Message header, etc. *)
5932   pr "\
5933 /* The communication protocol is now documented in the guestfs(3)
5934  * manpage.
5935  */
5936
5937 const GUESTFS_PROGRAM = 0x2000F5F5;
5938 const GUESTFS_PROTOCOL_VERSION = 1;
5939
5940 /* These constants must be larger than any possible message length. */
5941 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
5942 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
5943
5944 enum guestfs_message_direction {
5945   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
5946   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
5947 };
5948
5949 enum guestfs_message_status {
5950   GUESTFS_STATUS_OK = 0,
5951   GUESTFS_STATUS_ERROR = 1
5952 };
5953
5954 const GUESTFS_ERROR_LEN = 256;
5955
5956 struct guestfs_message_error {
5957   string error_message<GUESTFS_ERROR_LEN>;
5958 };
5959
5960 struct guestfs_message_header {
5961   unsigned prog;                     /* GUESTFS_PROGRAM */
5962   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
5963   guestfs_procedure proc;            /* GUESTFS_PROC_x */
5964   guestfs_message_direction direction;
5965   unsigned serial;                   /* message serial number */
5966   guestfs_message_status status;
5967 };
5968
5969 const GUESTFS_MAX_CHUNK_SIZE = 8192;
5970
5971 struct guestfs_chunk {
5972   int cancel;                        /* if non-zero, transfer is cancelled */
5973   /* data size is 0 bytes if the transfer has finished successfully */
5974   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
5975 };
5976 "
5977
5978 (* Generate the guestfs-structs.h file. *)
5979 and generate_structs_h () =
5980   generate_header CStyle LGPLv2plus;
5981
5982   (* This is a public exported header file containing various
5983    * structures.  The structures are carefully written to have
5984    * exactly the same in-memory format as the XDR structures that
5985    * we use on the wire to the daemon.  The reason for creating
5986    * copies of these structures here is just so we don't have to
5987    * export the whole of guestfs_protocol.h (which includes much
5988    * unrelated and XDR-dependent stuff that we don't want to be
5989    * public, or required by clients).
5990    *
5991    * To reiterate, we will pass these structures to and from the
5992    * client with a simple assignment or memcpy, so the format
5993    * must be identical to what rpcgen / the RFC defines.
5994    *)
5995
5996   (* Public structures. *)
5997   List.iter (
5998     fun (typ, cols) ->
5999       pr "struct guestfs_%s {\n" typ;
6000       List.iter (
6001         function
6002         | name, FChar -> pr "  char %s;\n" name
6003         | name, FString -> pr "  char *%s;\n" name
6004         | name, FBuffer ->
6005             pr "  uint32_t %s_len;\n" name;
6006             pr "  char *%s;\n" name
6007         | name, FUUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
6008         | name, FUInt32 -> pr "  uint32_t %s;\n" name
6009         | name, FInt32 -> pr "  int32_t %s;\n" name
6010         | name, (FUInt64|FBytes) -> pr "  uint64_t %s;\n" name
6011         | name, FInt64 -> pr "  int64_t %s;\n" name
6012         | name, FOptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
6013       ) cols;
6014       pr "};\n";
6015       pr "\n";
6016       pr "struct guestfs_%s_list {\n" typ;
6017       pr "  uint32_t len;\n";
6018       pr "  struct guestfs_%s *val;\n" typ;
6019       pr "};\n";
6020       pr "\n";
6021       pr "extern void guestfs_free_%s (struct guestfs_%s *);\n" typ typ;
6022       pr "extern void guestfs_free_%s_list (struct guestfs_%s_list *);\n" typ typ;
6023       pr "\n"
6024   ) structs
6025
6026 (* Generate the guestfs-actions.h file. *)
6027 and generate_actions_h () =
6028   generate_header CStyle LGPLv2plus;
6029   List.iter (
6030     fun (shortname, style, _, _, _, _, _) ->
6031       let name = "guestfs_" ^ shortname in
6032       generate_prototype ~single_line:true ~newline:true ~handle:"g"
6033         name style
6034   ) all_functions
6035
6036 (* Generate the guestfs-internal-actions.h file. *)
6037 and generate_internal_actions_h () =
6038   generate_header CStyle LGPLv2plus;
6039   List.iter (
6040     fun (shortname, style, _, _, _, _, _) ->
6041       let name = "guestfs__" ^ shortname in
6042       generate_prototype ~single_line:true ~newline:true ~handle:"g"
6043         name style
6044   ) non_daemon_functions
6045
6046 (* Generate the client-side dispatch stubs. *)
6047 and generate_client_actions () =
6048   generate_header CStyle LGPLv2plus;
6049
6050   pr "\
6051 #include <stdio.h>
6052 #include <stdlib.h>
6053 #include <stdint.h>
6054 #include <string.h>
6055 #include <inttypes.h>
6056
6057 #include \"guestfs.h\"
6058 #include \"guestfs-internal.h\"
6059 #include \"guestfs-internal-actions.h\"
6060 #include \"guestfs_protocol.h\"
6061
6062 #define error guestfs_error
6063 //#define perrorf guestfs_perrorf
6064 #define safe_malloc guestfs_safe_malloc
6065 #define safe_realloc guestfs_safe_realloc
6066 //#define safe_strdup guestfs_safe_strdup
6067 #define safe_memdup guestfs_safe_memdup
6068
6069 /* Check the return message from a call for validity. */
6070 static int
6071 check_reply_header (guestfs_h *g,
6072                     const struct guestfs_message_header *hdr,
6073                     unsigned int proc_nr, unsigned int serial)
6074 {
6075   if (hdr->prog != GUESTFS_PROGRAM) {
6076     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
6077     return -1;
6078   }
6079   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
6080     error (g, \"wrong protocol version (%%d/%%d)\",
6081            hdr->vers, GUESTFS_PROTOCOL_VERSION);
6082     return -1;
6083   }
6084   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
6085     error (g, \"unexpected message direction (%%d/%%d)\",
6086            hdr->direction, GUESTFS_DIRECTION_REPLY);
6087     return -1;
6088   }
6089   if (hdr->proc != proc_nr) {
6090     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
6091     return -1;
6092   }
6093   if (hdr->serial != serial) {
6094     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
6095     return -1;
6096   }
6097
6098   return 0;
6099 }
6100
6101 /* Check we are in the right state to run a high-level action. */
6102 static int
6103 check_state (guestfs_h *g, const char *caller)
6104 {
6105   if (!guestfs__is_ready (g)) {
6106     if (guestfs__is_config (g) || guestfs__is_launching (g))
6107       error (g, \"%%s: call launch before using this function\\n(in guestfish, don't forget to use the 'run' command)\",
6108         caller);
6109     else
6110       error (g, \"%%s called from the wrong state, %%d != READY\",
6111         caller, guestfs__get_state (g));
6112     return -1;
6113   }
6114   return 0;
6115 }
6116
6117 ";
6118
6119   let error_code_of = function
6120     | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
6121     | RConstString _ | RConstOptString _
6122     | RString _ | RStringList _
6123     | RStruct _ | RStructList _
6124     | RHashtable _ | RBufferOut _ -> "NULL"
6125   in
6126
6127   (* Generate code to check String-like parameters are not passed in
6128    * as NULL (returning an error if they are).
6129    *)
6130   let check_null_strings shortname style =
6131     let pr_newline = ref false in
6132     List.iter (
6133       function
6134       (* parameters which should not be NULL *)
6135       | String n
6136       | Device n
6137       | Pathname n
6138       | Dev_or_Path n
6139       | FileIn n
6140       | FileOut n
6141       | BufferIn n
6142       | StringList n
6143       | DeviceList n
6144       | Key n ->
6145           pr "  if (%s == NULL) {\n" n;
6146           pr "    error (g, \"%%s: %%s: parameter cannot be NULL\",\n";
6147           pr "           \"%s\", \"%s\");\n" shortname n;
6148           pr "    return %s;\n" (error_code_of (fst style));
6149           pr "  }\n";
6150           pr_newline := true
6151
6152       (* can be NULL *)
6153       | OptString _
6154
6155       (* not applicable *)
6156       | Bool _
6157       | Int _
6158       | Int64 _ -> ()
6159     ) (snd style);
6160
6161     if !pr_newline then pr "\n";
6162   in
6163
6164   (* Generate code to generate guestfish call traces. *)
6165   let trace_call shortname style =
6166     pr "  if (guestfs__get_trace (g)) {\n";
6167
6168     let needs_i =
6169       List.exists (function
6170                    | StringList _ | DeviceList _ -> true
6171                    | _ -> false) (snd style) in
6172     if needs_i then (
6173       pr "    size_t i;\n";
6174       pr "\n"
6175     );
6176
6177     pr "    fprintf (stderr, \"%s\");\n" shortname;
6178     List.iter (
6179       function
6180       | String n                        (* strings *)
6181       | Device n
6182       | Pathname n
6183       | Dev_or_Path n
6184       | FileIn n
6185       | FileOut n
6186       | BufferIn n
6187       | Key n ->
6188           (* guestfish doesn't support string escaping, so neither do we *)
6189           pr "    fprintf (stderr, \" \\\"%%s\\\"\", %s);\n" n
6190       | OptString n ->                  (* string option *)
6191           pr "    if (%s) fprintf (stderr, \" \\\"%%s\\\"\", %s);\n" n n;
6192           pr "    else fprintf (stderr, \" null\");\n"
6193       | StringList n
6194       | DeviceList n ->                 (* string list *)
6195           pr "    fputc (' ', stderr);\n";
6196           pr "    fputc ('\"', stderr);\n";
6197           pr "    for (i = 0; %s[i]; ++i) {\n" n;
6198           pr "      if (i > 0) fputc (' ', stderr);\n";
6199           pr "      fputs (%s[i], stderr);\n" n;
6200           pr "    }\n";
6201           pr "    fputc ('\"', stderr);\n";
6202       | Bool n ->                       (* boolean *)
6203           pr "    fputs (%s ? \" true\" : \" false\", stderr);\n" n
6204       | Int n ->                        (* int *)
6205           pr "    fprintf (stderr, \" %%d\", %s);\n" n
6206       | Int64 n ->
6207           pr "    fprintf (stderr, \" %%\" PRIi64, %s);\n" n
6208     ) (snd style);
6209     pr "    fputc ('\\n', stderr);\n";
6210     pr "  }\n";
6211     pr "\n";
6212   in
6213
6214   (* For non-daemon functions, generate a wrapper around each function. *)
6215   List.iter (
6216     fun (shortname, style, _, _, _, _, _) ->
6217       let name = "guestfs_" ^ shortname in
6218
6219       generate_prototype ~extern:false ~semicolon:false ~newline:true
6220         ~handle:"g" name style;
6221       pr "{\n";
6222       check_null_strings shortname style;
6223       trace_call shortname style;
6224       pr "  return guestfs__%s " shortname;
6225       generate_c_call_args ~handle:"g" style;
6226       pr ";\n";
6227       pr "}\n";
6228       pr "\n"
6229   ) non_daemon_functions;
6230
6231   (* Client-side stubs for each function. *)
6232   List.iter (
6233     fun (shortname, style, _, _, _, _, _) ->
6234       let name = "guestfs_" ^ shortname in
6235       let error_code = error_code_of (fst style) in
6236
6237       (* Generate the action stub. *)
6238       generate_prototype ~extern:false ~semicolon:false ~newline:true
6239         ~handle:"g" name style;
6240
6241       pr "{\n";
6242
6243       (match snd style with
6244        | [] -> ()
6245        | _ -> pr "  struct %s_args args;\n" name
6246       );
6247
6248       pr "  guestfs_message_header hdr;\n";
6249       pr "  guestfs_message_error err;\n";
6250       let has_ret =
6251         match fst style with
6252         | RErr -> false
6253         | RConstString _ | RConstOptString _ ->
6254             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6255         | RInt _ | RInt64 _
6256         | RBool _ | RString _ | RStringList _
6257         | RStruct _ | RStructList _
6258         | RHashtable _ | RBufferOut _ ->
6259             pr "  struct %s_ret ret;\n" name;
6260             true in
6261
6262       pr "  int serial;\n";
6263       pr "  int r;\n";
6264       pr "\n";
6265       check_null_strings shortname style;
6266       trace_call shortname style;
6267       pr "  if (check_state (g, \"%s\") == -1) return %s;\n"
6268         shortname error_code;
6269       pr "  guestfs___set_busy (g);\n";
6270       pr "\n";
6271
6272       (* Send the main header and arguments. *)
6273       (match snd style with
6274        | [] ->
6275            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s, NULL, NULL);\n"
6276              (String.uppercase shortname)
6277        | args ->
6278            List.iter (
6279              function
6280              | Pathname n | Device n | Dev_or_Path n | String n | Key n ->
6281                  pr "  args.%s = (char *) %s;\n" n n
6282              | OptString n ->
6283                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
6284              | StringList n | DeviceList n ->
6285                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
6286                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
6287              | Bool n ->
6288                  pr "  args.%s = %s;\n" n n
6289              | Int n ->
6290                  pr "  args.%s = %s;\n" n n
6291              | Int64 n ->
6292                  pr "  args.%s = %s;\n" n n
6293              | FileIn _ | FileOut _ -> ()
6294              | BufferIn n ->
6295                  pr "  /* Just catch grossly large sizes. XDR encoding will make this precise. */\n";
6296                  pr "  if (%s_size >= GUESTFS_MESSAGE_MAX) {\n" n;
6297                  pr "    error (g, \"%%s: size of input buffer too large\", \"%s\");\n"
6298                    shortname;
6299                  pr "    guestfs___end_busy (g);\n";
6300                  pr "    return %s;\n" error_code;
6301                  pr "  }\n";
6302                  pr "  args.%s.%s_val = (char *) %s;\n" n n n;
6303                  pr "  args.%s.%s_len = %s_size;\n" n n n
6304            ) args;
6305            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s,\n"
6306              (String.uppercase shortname);
6307            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
6308              name;
6309       );
6310       pr "  if (serial == -1) {\n";
6311       pr "    guestfs___end_busy (g);\n";
6312       pr "    return %s;\n" error_code;
6313       pr "  }\n";
6314       pr "\n";
6315
6316       (* Send any additional files (FileIn) requested. *)
6317       let need_read_reply_label = ref false in
6318       List.iter (
6319         function
6320         | FileIn n ->
6321             pr "  r = guestfs___send_file (g, %s);\n" n;
6322             pr "  if (r == -1) {\n";
6323             pr "    guestfs___end_busy (g);\n";
6324             pr "    return %s;\n" error_code;
6325             pr "  }\n";
6326             pr "  if (r == -2) /* daemon cancelled */\n";
6327             pr "    goto read_reply;\n";
6328             need_read_reply_label := true;
6329             pr "\n";
6330         | _ -> ()
6331       ) (snd style);
6332
6333       (* Wait for the reply from the remote end. *)
6334       if !need_read_reply_label then pr " read_reply:\n";
6335       pr "  memset (&hdr, 0, sizeof hdr);\n";
6336       pr "  memset (&err, 0, sizeof err);\n";
6337       if has_ret then pr "  memset (&ret, 0, sizeof ret);\n";
6338       pr "\n";
6339       pr "  r = guestfs___recv (g, \"%s\", &hdr, &err,\n        " shortname;
6340       if not has_ret then
6341         pr "NULL, NULL"
6342       else
6343         pr "(xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret" shortname;
6344       pr ");\n";
6345
6346       pr "  if (r == -1) {\n";
6347       pr "    guestfs___end_busy (g);\n";
6348       pr "    return %s;\n" error_code;
6349       pr "  }\n";
6350       pr "\n";
6351
6352       pr "  if (check_reply_header (g, &hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
6353         (String.uppercase shortname);
6354       pr "    guestfs___end_busy (g);\n";
6355       pr "    return %s;\n" error_code;
6356       pr "  }\n";
6357       pr "\n";
6358
6359       pr "  if (hdr.status == GUESTFS_STATUS_ERROR) {\n";
6360       pr "    error (g, \"%%s: %%s\", \"%s\", err.error_message);\n" shortname;
6361       pr "    free (err.error_message);\n";
6362       pr "    guestfs___end_busy (g);\n";
6363       pr "    return %s;\n" error_code;
6364       pr "  }\n";
6365       pr "\n";
6366
6367       (* Expecting to receive further files (FileOut)? *)
6368       List.iter (
6369         function
6370         | FileOut n ->
6371             pr "  if (guestfs___recv_file (g, %s) == -1) {\n" n;
6372             pr "    guestfs___end_busy (g);\n";
6373             pr "    return %s;\n" error_code;
6374             pr "  }\n";
6375             pr "\n";
6376         | _ -> ()
6377       ) (snd style);
6378
6379       pr "  guestfs___end_busy (g);\n";
6380
6381       (match fst style with
6382        | RErr -> pr "  return 0;\n"
6383        | RInt n | RInt64 n | RBool n ->
6384            pr "  return ret.%s;\n" n
6385        | RConstString _ | RConstOptString _ ->
6386            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6387        | RString n ->
6388            pr "  return ret.%s; /* caller will free */\n" n
6389        | RStringList n | RHashtable n ->
6390            pr "  /* caller will free this, but we need to add a NULL entry */\n";
6391            pr "  ret.%s.%s_val =\n" n n;
6392            pr "    safe_realloc (g, ret.%s.%s_val,\n" n n;
6393            pr "                  sizeof (char *) * (ret.%s.%s_len + 1));\n"
6394              n n;
6395            pr "  ret.%s.%s_val[ret.%s.%s_len] = NULL;\n" n n n n;
6396            pr "  return ret.%s.%s_val;\n" n n
6397        | RStruct (n, _) ->
6398            pr "  /* caller will free this */\n";
6399            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
6400        | RStructList (n, _) ->
6401            pr "  /* caller will free this */\n";
6402            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
6403        | RBufferOut n ->
6404            pr "  /* RBufferOut is tricky: If the buffer is zero-length, then\n";
6405            pr "   * _val might be NULL here.  To make the API saner for\n";
6406            pr "   * callers, we turn this case into a unique pointer (using\n";
6407            pr "   * malloc(1)).\n";
6408            pr "   */\n";
6409            pr "  if (ret.%s.%s_len > 0) {\n" n n;
6410            pr "    *size_r = ret.%s.%s_len;\n" n n;
6411            pr "    return ret.%s.%s_val; /* caller will free */\n" n n;
6412            pr "  } else {\n";
6413            pr "    free (ret.%s.%s_val);\n" n n;
6414            pr "    char *p = safe_malloc (g, 1);\n";
6415            pr "    *size_r = ret.%s.%s_len;\n" n n;
6416            pr "    return p;\n";
6417            pr "  }\n";
6418       );
6419
6420       pr "}\n\n"
6421   ) daemon_functions;
6422
6423   (* Functions to free structures. *)
6424   pr "/* Structure-freeing functions.  These rely on the fact that the\n";
6425   pr " * structure format is identical to the XDR format.  See note in\n";
6426   pr " * generator.ml.\n";
6427   pr " */\n";
6428   pr "\n";
6429
6430   List.iter (
6431     fun (typ, _) ->
6432       pr "void\n";
6433       pr "guestfs_free_%s (struct guestfs_%s *x)\n" typ typ;
6434       pr "{\n";
6435       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s, (char *) x);\n" typ;
6436       pr "  free (x);\n";
6437       pr "}\n";
6438       pr "\n";
6439
6440       pr "void\n";
6441       pr "guestfs_free_%s_list (struct guestfs_%s_list *x)\n" typ typ;
6442       pr "{\n";
6443       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s_list, (char *) x);\n" typ;
6444       pr "  free (x);\n";
6445       pr "}\n";
6446       pr "\n";
6447
6448   ) structs;
6449
6450 (* Generate daemon/actions.h. *)
6451 and generate_daemon_actions_h () =
6452   generate_header CStyle GPLv2plus;
6453
6454   pr "#include \"../src/guestfs_protocol.h\"\n";
6455   pr "\n";
6456
6457   List.iter (
6458     fun (name, style, _, _, _, _, _) ->
6459       generate_prototype
6460         ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
6461         name style;
6462   ) daemon_functions
6463
6464 (* Generate the linker script which controls the visibility of
6465  * symbols in the public ABI and ensures no other symbols get
6466  * exported accidentally.
6467  *)
6468 and generate_linker_script () =
6469   generate_header HashStyle GPLv2plus;
6470
6471   let globals = [
6472     "guestfs_create";
6473     "guestfs_close";
6474     "guestfs_get_error_handler";
6475     "guestfs_get_out_of_memory_handler";
6476     "guestfs_last_error";
6477     "guestfs_set_close_callback";
6478     "guestfs_set_error_handler";
6479     "guestfs_set_launch_done_callback";
6480     "guestfs_set_log_message_callback";
6481     "guestfs_set_out_of_memory_handler";
6482     "guestfs_set_subprocess_quit_callback";
6483
6484     (* Unofficial parts of the API: the bindings code use these
6485      * functions, so it is useful to export them.
6486      *)
6487     "guestfs_safe_calloc";
6488     "guestfs_safe_malloc";
6489     "guestfs_safe_strdup";
6490     "guestfs_safe_memdup";
6491   ] in
6492   let functions =
6493     List.map (fun (name, _, _, _, _, _, _) -> "guestfs_" ^ name)
6494       all_functions in
6495   let structs =
6496     List.concat (
6497       List.map (fun (typ, _) ->
6498                   ["guestfs_free_" ^ typ; "guestfs_free_" ^ typ ^ "_list"])
6499         structs
6500     ) in
6501   let globals = List.sort compare (globals @ functions @ structs) in
6502
6503   pr "{\n";
6504   pr "    global:\n";
6505   List.iter (pr "        %s;\n") globals;
6506   pr "\n";
6507
6508   pr "    local:\n";
6509   pr "        *;\n";
6510   pr "};\n"
6511
6512 (* Generate the server-side stubs. *)
6513 and generate_daemon_actions () =
6514   generate_header CStyle GPLv2plus;
6515
6516   pr "#include <config.h>\n";
6517   pr "\n";
6518   pr "#include <stdio.h>\n";
6519   pr "#include <stdlib.h>\n";
6520   pr "#include <string.h>\n";
6521   pr "#include <inttypes.h>\n";
6522   pr "#include <rpc/types.h>\n";
6523   pr "#include <rpc/xdr.h>\n";
6524   pr "\n";
6525   pr "#include \"daemon.h\"\n";
6526   pr "#include \"c-ctype.h\"\n";
6527   pr "#include \"../src/guestfs_protocol.h\"\n";
6528   pr "#include \"actions.h\"\n";
6529   pr "\n";
6530
6531   List.iter (
6532     fun (name, style, _, _, _, _, _) ->
6533       (* Generate server-side stubs. *)
6534       pr "static void %s_stub (XDR *xdr_in)\n" name;
6535       pr "{\n";
6536       let error_code =
6537         match fst style with
6538         | RErr | RInt _ -> pr "  int r;\n"; "-1"
6539         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6540         | RBool _ -> pr "  int r;\n"; "-1"
6541         | RConstString _ | RConstOptString _ ->
6542             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6543         | RString _ -> pr "  char *r;\n"; "NULL"
6544         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
6545         | RStruct (_, typ) -> pr "  guestfs_int_%s *r;\n" typ; "NULL"
6546         | RStructList (_, typ) -> pr "  guestfs_int_%s_list *r;\n" typ; "NULL"
6547         | RBufferOut _ ->
6548             pr "  size_t size = 1;\n";
6549             pr "  char *r;\n";
6550             "NULL" in
6551
6552       (match snd style with
6553        | [] -> ()
6554        | args ->
6555            pr "  struct guestfs_%s_args args;\n" name;
6556            List.iter (
6557              function
6558              | Device n | Dev_or_Path n
6559              | Pathname n
6560              | String n
6561              | Key n -> ()
6562              | OptString n -> pr "  char *%s;\n" n
6563              | StringList n | DeviceList n -> pr "  char **%s;\n" n
6564              | Bool n -> pr "  int %s;\n" n
6565              | Int n -> pr "  int %s;\n" n
6566              | Int64 n -> pr "  int64_t %s;\n" n
6567              | FileIn _ | FileOut _ -> ()
6568              | BufferIn n ->
6569                  pr "  const char *%s;\n" n;
6570                  pr "  size_t %s_size;\n" n
6571            ) args
6572       );
6573       pr "\n";
6574
6575       let is_filein =
6576         List.exists (function FileIn _ -> true | _ -> false) (snd style) in
6577
6578       (match snd style with
6579        | [] -> ()
6580        | args ->
6581            pr "  memset (&args, 0, sizeof args);\n";
6582            pr "\n";
6583            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
6584            if is_filein then
6585              pr "    if (cancel_receive () != -2)\n";
6586            pr "      reply_with_error (\"daemon failed to decode procedure arguments\");\n";
6587            pr "    goto done;\n";
6588            pr "  }\n";
6589            let pr_args n =
6590              pr "  char *%s = args.%s;\n" n n
6591            in
6592            let pr_list_handling_code n =
6593              pr "  %s = realloc (args.%s.%s_val,\n" n n n;
6594              pr "                sizeof (char *) * (args.%s.%s_len+1));\n" n n;
6595              pr "  if (%s == NULL) {\n" n;
6596              if is_filein then
6597                pr "    if (cancel_receive () != -2)\n";
6598              pr "      reply_with_perror (\"realloc\");\n";
6599              pr "    goto done;\n";
6600              pr "  }\n";
6601              pr "  %s[args.%s.%s_len] = NULL;\n" n n n;
6602              pr "  args.%s.%s_val = %s;\n" n n n;
6603            in
6604            List.iter (
6605              function
6606              | Pathname n ->
6607                  pr_args n;
6608                  pr "  ABS_PATH (%s, %s, goto done);\n"
6609                    n (if is_filein then "cancel_receive ()" else "0");
6610              | Device n ->
6611                  pr_args n;
6612                  pr "  RESOLVE_DEVICE (%s, %s, goto done);\n"
6613                    n (if is_filein then "cancel_receive ()" else "0");
6614              | Dev_or_Path n ->
6615                  pr_args n;
6616                  pr "  REQUIRE_ROOT_OR_RESOLVE_DEVICE (%s, %s, goto done);\n"
6617                    n (if is_filein then "cancel_receive ()" else "0");
6618              | String n | Key n -> pr_args n
6619              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
6620              | StringList n ->
6621                  pr_list_handling_code n;
6622              | DeviceList n ->
6623                  pr_list_handling_code n;
6624                  pr "  /* Ensure that each is a device,\n";
6625                  pr "   * and perform device name translation.\n";
6626                  pr "   */\n";
6627                  pr "  {\n";
6628                  pr "    size_t i;\n";
6629                  pr "    for (i = 0; %s[i] != NULL; ++i)\n" n;
6630                  pr "      RESOLVE_DEVICE (%s[i], %s, goto done);\n" n
6631                    (if is_filein then "cancel_receive ()" else "0");
6632                  pr "  }\n";
6633              | Bool n -> pr "  %s = args.%s;\n" n n
6634              | Int n -> pr "  %s = args.%s;\n" n n
6635              | Int64 n -> pr "  %s = args.%s;\n" n n
6636              | FileIn _ | FileOut _ -> ()
6637              | BufferIn n ->
6638                  pr "  %s = args.%s.%s_val;\n" n n n;
6639                  pr "  %s_size = args.%s.%s_len;\n" n n n
6640            ) args;
6641            pr "\n"
6642       );
6643
6644       (* this is used at least for do_equal *)
6645       if List.exists (function Pathname _ -> true | _ -> false) (snd style) then (
6646         (* Emit NEED_ROOT just once, even when there are two or
6647            more Pathname args *)
6648         pr "  NEED_ROOT (%s, goto done);\n"
6649           (if is_filein then "cancel_receive ()" else "0");
6650       );
6651
6652       (* Don't want to call the impl with any FileIn or FileOut
6653        * parameters, since these go "outside" the RPC protocol.
6654        *)
6655       let args' =
6656         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
6657           (snd style) in
6658       pr "  r = do_%s " name;
6659       generate_c_call_args (fst style, args');
6660       pr ";\n";
6661
6662       (match fst style with
6663        | RErr | RInt _ | RInt64 _ | RBool _
6664        | RConstString _ | RConstOptString _
6665        | RString _ | RStringList _ | RHashtable _
6666        | RStruct (_, _) | RStructList (_, _) ->
6667            pr "  if (r == %s)\n" error_code;
6668            pr "    /* do_%s has already called reply_with_error */\n" name;
6669            pr "    goto done;\n";
6670            pr "\n"
6671        | RBufferOut _ ->
6672            pr "  /* size == 0 && r == NULL could be a non-error case (just\n";
6673            pr "   * an ordinary zero-length buffer), so be careful ...\n";
6674            pr "   */\n";
6675            pr "  if (size == 1 && r == %s)\n" error_code;
6676            pr "    /* do_%s has already called reply_with_error */\n" name;
6677            pr "    goto done;\n";
6678            pr "\n"
6679       );
6680
6681       (* If there are any FileOut parameters, then the impl must
6682        * send its own reply.
6683        *)
6684       let no_reply =
6685         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
6686       if no_reply then
6687         pr "  /* do_%s has already sent a reply */\n" name
6688       else (
6689         match fst style with
6690         | RErr -> pr "  reply (NULL, NULL);\n"
6691         | RInt n | RInt64 n | RBool n ->
6692             pr "  struct guestfs_%s_ret ret;\n" name;
6693             pr "  ret.%s = r;\n" n;
6694             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6695               name
6696         | RConstString _ | RConstOptString _ ->
6697             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6698         | RString n ->
6699             pr "  struct guestfs_%s_ret ret;\n" name;
6700             pr "  ret.%s = r;\n" n;
6701             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6702               name;
6703             pr "  free (r);\n"
6704         | RStringList n | RHashtable n ->
6705             pr "  struct guestfs_%s_ret ret;\n" name;
6706             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
6707             pr "  ret.%s.%s_val = r;\n" n n;
6708             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6709               name;
6710             pr "  free_strings (r);\n"
6711         | RStruct (n, _) ->
6712             pr "  struct guestfs_%s_ret ret;\n" name;
6713             pr "  ret.%s = *r;\n" n;
6714             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6715               name;
6716             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6717               name
6718         | RStructList (n, _) ->
6719             pr "  struct guestfs_%s_ret ret;\n" name;
6720             pr "  ret.%s = *r;\n" n;
6721             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6722               name;
6723             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6724               name
6725         | RBufferOut n ->
6726             pr "  struct guestfs_%s_ret ret;\n" name;
6727             pr "  ret.%s.%s_val = r;\n" n n;
6728             pr "  ret.%s.%s_len = size;\n" n n;
6729             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6730               name;
6731             pr "  free (r);\n"
6732       );
6733
6734       (* Free the args. *)
6735       pr "done:\n";
6736       (match snd style with
6737        | [] -> ()
6738        | _ ->
6739            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
6740              name
6741       );
6742       pr "  return;\n";
6743       pr "}\n\n";
6744   ) daemon_functions;
6745
6746   (* Dispatch function. *)
6747   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
6748   pr "{\n";
6749   pr "  switch (proc_nr) {\n";
6750
6751   List.iter (
6752     fun (name, style, _, _, _, _, _) ->
6753       pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
6754       pr "      %s_stub (xdr_in);\n" name;
6755       pr "      break;\n"
6756   ) daemon_functions;
6757
6758   pr "    default:\n";
6759   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";
6760   pr "  }\n";
6761   pr "}\n";
6762   pr "\n";
6763
6764   (* LVM columns and tokenization functions. *)
6765   (* XXX This generates crap code.  We should rethink how we
6766    * do this parsing.
6767    *)
6768   List.iter (
6769     function
6770     | typ, cols ->
6771         pr "static const char *lvm_%s_cols = \"%s\";\n"
6772           typ (String.concat "," (List.map fst cols));
6773         pr "\n";
6774
6775         pr "static int lvm_tokenize_%s (char *str, guestfs_int_lvm_%s *r)\n" typ typ;
6776         pr "{\n";
6777         pr "  char *tok, *p, *next;\n";
6778         pr "  size_t i, j;\n";
6779         pr "\n";
6780         (*
6781           pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
6782           pr "\n";
6783         *)
6784         pr "  if (!str) {\n";
6785         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
6786         pr "    return -1;\n";
6787         pr "  }\n";
6788         pr "  if (!*str || c_isspace (*str)) {\n";
6789         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
6790         pr "    return -1;\n";
6791         pr "  }\n";
6792         pr "  tok = str;\n";
6793         List.iter (
6794           fun (name, coltype) ->
6795             pr "  if (!tok) {\n";
6796             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
6797             pr "    return -1;\n";
6798             pr "  }\n";
6799             pr "  p = strchrnul (tok, ',');\n";
6800             pr "  if (*p) next = p+1; else next = NULL;\n";
6801             pr "  *p = '\\0';\n";
6802             (match coltype with
6803              | FString ->
6804                  pr "  r->%s = strdup (tok);\n" name;
6805                  pr "  if (r->%s == NULL) {\n" name;
6806                  pr "    perror (\"strdup\");\n";
6807                  pr "    return -1;\n";
6808                  pr "  }\n"
6809              | FUUID ->
6810                  pr "  for (i = j = 0; i < 32; ++j) {\n";
6811                  pr "    if (tok[j] == '\\0') {\n";
6812                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
6813                  pr "      return -1;\n";
6814                  pr "    } else if (tok[j] != '-')\n";
6815                  pr "      r->%s[i++] = tok[j];\n" name;
6816                  pr "  }\n";
6817              | FBytes ->
6818                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
6819                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6820                  pr "    return -1;\n";
6821                  pr "  }\n";
6822              | FInt64 ->
6823                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
6824                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6825                  pr "    return -1;\n";
6826                  pr "  }\n";
6827              | FOptPercent ->
6828                  pr "  if (tok[0] == '\\0')\n";
6829                  pr "    r->%s = -1;\n" name;
6830                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
6831                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6832                  pr "    return -1;\n";
6833                  pr "  }\n";
6834              | FBuffer | FInt32 | FUInt32 | FUInt64 | FChar ->
6835                  assert false (* can never be an LVM column *)
6836             );
6837             pr "  tok = next;\n";
6838         ) cols;
6839
6840         pr "  if (tok != NULL) {\n";
6841         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
6842         pr "    return -1;\n";
6843         pr "  }\n";
6844         pr "  return 0;\n";
6845         pr "}\n";
6846         pr "\n";
6847
6848         pr "guestfs_int_lvm_%s_list *\n" typ;
6849         pr "parse_command_line_%ss (void)\n" typ;
6850         pr "{\n";
6851         pr "  char *out, *err;\n";
6852         pr "  char *p, *pend;\n";
6853         pr "  int r, i;\n";
6854         pr "  guestfs_int_lvm_%s_list *ret;\n" typ;
6855         pr "  void *newp;\n";
6856         pr "\n";
6857         pr "  ret = malloc (sizeof *ret);\n";
6858         pr "  if (!ret) {\n";
6859         pr "    reply_with_perror (\"malloc\");\n";
6860         pr "    return NULL;\n";
6861         pr "  }\n";
6862         pr "\n";
6863         pr "  ret->guestfs_int_lvm_%s_list_len = 0;\n" typ;
6864         pr "  ret->guestfs_int_lvm_%s_list_val = NULL;\n" typ;
6865         pr "\n";
6866         pr "  r = command (&out, &err,\n";
6867         pr "           \"lvm\", \"%ss\",\n" typ;
6868         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
6869         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
6870         pr "  if (r == -1) {\n";
6871         pr "    reply_with_error (\"%%s\", err);\n";
6872         pr "    free (out);\n";
6873         pr "    free (err);\n";
6874         pr "    free (ret);\n";
6875         pr "    return NULL;\n";
6876         pr "  }\n";
6877         pr "\n";
6878         pr "  free (err);\n";
6879         pr "\n";
6880         pr "  /* Tokenize each line of the output. */\n";
6881         pr "  p = out;\n";
6882         pr "  i = 0;\n";
6883         pr "  while (p) {\n";
6884         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
6885         pr "    if (pend) {\n";
6886         pr "      *pend = '\\0';\n";
6887         pr "      pend++;\n";
6888         pr "    }\n";
6889         pr "\n";
6890         pr "    while (*p && c_isspace (*p))    /* Skip any leading whitespace. */\n";
6891         pr "      p++;\n";
6892         pr "\n";
6893         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
6894         pr "      p = pend;\n";
6895         pr "      continue;\n";
6896         pr "    }\n";
6897         pr "\n";
6898         pr "    /* Allocate some space to store this next entry. */\n";
6899         pr "    newp = realloc (ret->guestfs_int_lvm_%s_list_val,\n" typ;
6900         pr "                sizeof (guestfs_int_lvm_%s) * (i+1));\n" typ;
6901         pr "    if (newp == NULL) {\n";
6902         pr "      reply_with_perror (\"realloc\");\n";
6903         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6904         pr "      free (ret);\n";
6905         pr "      free (out);\n";
6906         pr "      return NULL;\n";
6907         pr "    }\n";
6908         pr "    ret->guestfs_int_lvm_%s_list_val = newp;\n" typ;
6909         pr "\n";
6910         pr "    /* Tokenize the next entry. */\n";
6911         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_int_lvm_%s_list_val[i]);\n" typ typ;
6912         pr "    if (r == -1) {\n";
6913         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
6914         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6915         pr "      free (ret);\n";
6916         pr "      free (out);\n";
6917         pr "      return NULL;\n";
6918         pr "    }\n";
6919         pr "\n";
6920         pr "    ++i;\n";
6921         pr "    p = pend;\n";
6922         pr "  }\n";
6923         pr "\n";
6924         pr "  ret->guestfs_int_lvm_%s_list_len = i;\n" typ;
6925         pr "\n";
6926         pr "  free (out);\n";
6927         pr "  return ret;\n";
6928         pr "}\n"
6929
6930   ) ["pv", lvm_pv_cols; "vg", lvm_vg_cols; "lv", lvm_lv_cols]
6931
6932 (* Generate a list of function names, for debugging in the daemon.. *)
6933 and generate_daemon_names () =
6934   generate_header CStyle GPLv2plus;
6935
6936   pr "#include <config.h>\n";
6937   pr "\n";
6938   pr "#include \"daemon.h\"\n";
6939   pr "\n";
6940
6941   pr "/* This array is indexed by proc_nr.  See guestfs_protocol.x. */\n";
6942   pr "const char *function_names[] = {\n";
6943   List.iter (
6944     fun (name, _, proc_nr, _, _, _, _) -> pr "  [%d] = \"%s\",\n" proc_nr name
6945   ) daemon_functions;
6946   pr "};\n";
6947
6948 (* Generate the optional groups for the daemon to implement
6949  * guestfs_available.
6950  *)
6951 and generate_daemon_optgroups_c () =
6952   generate_header CStyle GPLv2plus;
6953
6954   pr "#include <config.h>\n";
6955   pr "\n";
6956   pr "#include \"daemon.h\"\n";
6957   pr "#include \"optgroups.h\"\n";
6958   pr "\n";
6959
6960   pr "struct optgroup optgroups[] = {\n";
6961   List.iter (
6962     fun (group, _) ->
6963       pr "  { \"%s\", optgroup_%s_available },\n" group group
6964   ) optgroups;
6965   pr "  { NULL, NULL }\n";
6966   pr "};\n"
6967
6968 and generate_daemon_optgroups_h () =
6969   generate_header CStyle GPLv2plus;
6970
6971   List.iter (
6972     fun (group, _) ->
6973       pr "extern int optgroup_%s_available (void);\n" group
6974   ) optgroups
6975
6976 (* Generate the tests. *)
6977 and generate_tests () =
6978   generate_header CStyle GPLv2plus;
6979
6980   pr "\
6981 #include <stdio.h>
6982 #include <stdlib.h>
6983 #include <string.h>
6984 #include <unistd.h>
6985 #include <sys/types.h>
6986 #include <fcntl.h>
6987
6988 #include \"guestfs.h\"
6989 #include \"guestfs-internal.h\"
6990
6991 static guestfs_h *g;
6992 static int suppress_error = 0;
6993
6994 static void print_error (guestfs_h *g, void *data, const char *msg)
6995 {
6996   if (!suppress_error)
6997     fprintf (stderr, \"%%s\\n\", msg);
6998 }
6999
7000 /* FIXME: nearly identical code appears in fish.c */
7001 static void print_strings (char *const *argv)
7002 {
7003   size_t argc;
7004
7005   for (argc = 0; argv[argc] != NULL; ++argc)
7006     printf (\"\\t%%s\\n\", argv[argc]);
7007 }
7008
7009 /*
7010 static void print_table (char const *const *argv)
7011 {
7012   size_t i;
7013
7014   for (i = 0; argv[i] != NULL; i += 2)
7015     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
7016 }
7017 */
7018
7019 static int
7020 is_available (const char *group)
7021 {
7022   const char *groups[] = { group, NULL };
7023   int r;
7024
7025   suppress_error = 1;
7026   r = guestfs_available (g, (char **) groups);
7027   suppress_error = 0;
7028
7029   return r == 0;
7030 }
7031
7032 static void
7033 incr (guestfs_h *g, void *iv)
7034 {
7035   int *i = (int *) iv;
7036   (*i)++;
7037 }
7038
7039 ";
7040
7041   (* Generate a list of commands which are not tested anywhere. *)
7042   pr "static void no_test_warnings (void)\n";
7043   pr "{\n";
7044
7045   let hash : (string, bool) Hashtbl.t = Hashtbl.create 13 in
7046   List.iter (
7047     fun (_, _, _, _, tests, _, _) ->
7048       let tests = filter_map (
7049         function
7050         | (_, (Always|If _|Unless _|IfAvailable _), test) -> Some test
7051         | (_, Disabled, _) -> None
7052       ) tests in
7053       let seq = List.concat (List.map seq_of_test tests) in
7054       let cmds_tested = List.map List.hd seq in
7055       List.iter (fun cmd -> Hashtbl.replace hash cmd true) cmds_tested
7056   ) all_functions;
7057
7058   List.iter (
7059     fun (name, _, _, _, _, _, _) ->
7060       if not (Hashtbl.mem hash name) then
7061         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
7062   ) all_functions;
7063
7064   pr "}\n";
7065   pr "\n";
7066
7067   (* Generate the actual tests.  Note that we generate the tests
7068    * in reverse order, deliberately, so that (in general) the
7069    * newest tests run first.  This makes it quicker and easier to
7070    * debug them.
7071    *)
7072   let test_names =
7073     List.map (
7074       fun (name, _, _, flags, tests, _, _) ->
7075         mapi (generate_one_test name flags) tests
7076     ) (List.rev all_functions) in
7077   let test_names = List.concat test_names in
7078   let nr_tests = List.length test_names in
7079
7080   pr "\
7081 int main (int argc, char *argv[])
7082 {
7083   char c = 0;
7084   unsigned long int n_failed = 0;
7085   const char *filename;
7086   int fd;
7087   int nr_tests, test_num = 0;
7088
7089   setbuf (stdout, NULL);
7090
7091   no_test_warnings ();
7092
7093   g = guestfs_create ();
7094   if (g == NULL) {
7095     printf (\"guestfs_create FAILED\\n\");
7096     exit (EXIT_FAILURE);
7097   }
7098
7099   guestfs_set_error_handler (g, print_error, NULL);
7100
7101   guestfs_set_path (g, \"../appliance\");
7102
7103   filename = \"test1.img\";
7104   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
7105   if (fd == -1) {
7106     perror (filename);
7107     exit (EXIT_FAILURE);
7108   }
7109   if (lseek (fd, %d, SEEK_SET) == -1) {
7110     perror (\"lseek\");
7111     close (fd);
7112     unlink (filename);
7113     exit (EXIT_FAILURE);
7114   }
7115   if (write (fd, &c, 1) == -1) {
7116     perror (\"write\");
7117     close (fd);
7118     unlink (filename);
7119     exit (EXIT_FAILURE);
7120   }
7121   if (close (fd) == -1) {
7122     perror (filename);
7123     unlink (filename);
7124     exit (EXIT_FAILURE);
7125   }
7126   if (guestfs_add_drive (g, filename) == -1) {
7127     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
7128     exit (EXIT_FAILURE);
7129   }
7130
7131   filename = \"test2.img\";
7132   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
7133   if (fd == -1) {
7134     perror (filename);
7135     exit (EXIT_FAILURE);
7136   }
7137   if (lseek (fd, %d, SEEK_SET) == -1) {
7138     perror (\"lseek\");
7139     close (fd);
7140     unlink (filename);
7141     exit (EXIT_FAILURE);
7142   }
7143   if (write (fd, &c, 1) == -1) {
7144     perror (\"write\");
7145     close (fd);
7146     unlink (filename);
7147     exit (EXIT_FAILURE);
7148   }
7149   if (close (fd) == -1) {
7150     perror (filename);
7151     unlink (filename);
7152     exit (EXIT_FAILURE);
7153   }
7154   if (guestfs_add_drive (g, filename) == -1) {
7155     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
7156     exit (EXIT_FAILURE);
7157   }
7158
7159   filename = \"test3.img\";
7160   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
7161   if (fd == -1) {
7162     perror (filename);
7163     exit (EXIT_FAILURE);
7164   }
7165   if (lseek (fd, %d, SEEK_SET) == -1) {
7166     perror (\"lseek\");
7167     close (fd);
7168     unlink (filename);
7169     exit (EXIT_FAILURE);
7170   }
7171   if (write (fd, &c, 1) == -1) {
7172     perror (\"write\");
7173     close (fd);
7174     unlink (filename);
7175     exit (EXIT_FAILURE);
7176   }
7177   if (close (fd) == -1) {
7178     perror (filename);
7179     unlink (filename);
7180     exit (EXIT_FAILURE);
7181   }
7182   if (guestfs_add_drive (g, filename) == -1) {
7183     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
7184     exit (EXIT_FAILURE);
7185   }
7186
7187   if (guestfs_add_drive_ro (g, \"../images/test.iso\") == -1) {
7188     printf (\"guestfs_add_drive_ro ../images/test.iso FAILED\\n\");
7189     exit (EXIT_FAILURE);
7190   }
7191
7192   /* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
7193   alarm (600);
7194
7195   if (guestfs_launch (g) == -1) {
7196     printf (\"guestfs_launch FAILED\\n\");
7197     exit (EXIT_FAILURE);
7198   }
7199
7200   /* Cancel previous alarm. */
7201   alarm (0);
7202
7203   nr_tests = %d;
7204
7205 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
7206
7207   iteri (
7208     fun i test_name ->
7209       pr "  test_num++;\n";
7210       pr "  if (guestfs_get_verbose (g))\n";
7211       pr "    printf (\"-------------------------------------------------------------------------------\\n\");\n";
7212       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
7213       pr "  if (%s () == -1) {\n" test_name;
7214       pr "    printf (\"%s FAILED\\n\");\n" test_name;
7215       pr "    n_failed++;\n";
7216       pr "  }\n";
7217   ) test_names;
7218   pr "\n";
7219
7220   pr "  /* Check close callback is called. */
7221   int close_sentinel = 1;
7222   guestfs_set_close_callback (g, incr, &close_sentinel);
7223
7224   guestfs_close (g);
7225
7226   if (close_sentinel != 2) {
7227     fprintf (stderr, \"close callback was not called\\n\");
7228     exit (EXIT_FAILURE);
7229   }
7230
7231   unlink (\"test1.img\");
7232   unlink (\"test2.img\");
7233   unlink (\"test3.img\");
7234
7235 ";
7236
7237   pr "  if (n_failed > 0) {\n";
7238   pr "    printf (\"***** %%lu / %%d tests FAILED *****\\n\", n_failed, nr_tests);\n";
7239   pr "    exit (EXIT_FAILURE);\n";
7240   pr "  }\n";
7241   pr "\n";
7242
7243   pr "  exit (EXIT_SUCCESS);\n";
7244   pr "}\n"
7245
7246 and generate_one_test name flags i (init, prereq, test) =
7247   let test_name = sprintf "test_%s_%d" name i in
7248
7249   pr "\
7250 static int %s_skip (void)
7251 {
7252   const char *str;
7253
7254   str = getenv (\"TEST_ONLY\");
7255   if (str)
7256     return strstr (str, \"%s\") == NULL;
7257   str = getenv (\"SKIP_%s\");
7258   if (str && STREQ (str, \"1\")) return 1;
7259   str = getenv (\"SKIP_TEST_%s\");
7260   if (str && STREQ (str, \"1\")) return 1;
7261   return 0;
7262 }
7263
7264 " test_name name (String.uppercase test_name) (String.uppercase name);
7265
7266   (match prereq with
7267    | Disabled | Always | IfAvailable _ -> ()
7268    | If code | Unless code ->
7269        pr "static int %s_prereq (void)\n" test_name;
7270        pr "{\n";
7271        pr "  %s\n" code;
7272        pr "}\n";
7273        pr "\n";
7274   );
7275
7276   pr "\
7277 static int %s (void)
7278 {
7279   if (%s_skip ()) {
7280     printf (\"        %%s skipped (reason: environment variable set)\\n\", \"%s\");
7281     return 0;
7282   }
7283
7284 " test_name test_name test_name;
7285
7286   (* Optional functions should only be tested if the relevant
7287    * support is available in the daemon.
7288    *)
7289   List.iter (
7290     function
7291     | Optional group ->
7292         pr "  if (!is_available (\"%s\")) {\n" group;
7293         pr "    printf (\"        %%s skipped (reason: group %%s not available in daemon)\\n\", \"%s\", \"%s\");\n" test_name group;
7294         pr "    return 0;\n";
7295         pr "  }\n";
7296     | _ -> ()
7297   ) flags;
7298
7299   (match prereq with
7300    | Disabled ->
7301        pr "  printf (\"        %%s skipped (reason: test disabled in generator)\\n\", \"%s\");\n" test_name
7302    | If _ ->
7303        pr "  if (! %s_prereq ()) {\n" test_name;
7304        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
7305        pr "    return 0;\n";
7306        pr "  }\n";
7307        pr "\n";
7308        generate_one_test_body name i test_name init test;
7309    | Unless _ ->
7310        pr "  if (%s_prereq ()) {\n" test_name;
7311        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
7312        pr "    return 0;\n";
7313        pr "  }\n";
7314        pr "\n";
7315        generate_one_test_body name i test_name init test;
7316    | IfAvailable group ->
7317        pr "  if (!is_available (\"%s\")) {\n" group;
7318        pr "    printf (\"        %%s skipped (reason: %%s not available)\\n\", \"%s\", \"%s\");\n" test_name group;
7319        pr "    return 0;\n";
7320        pr "  }\n";
7321        pr "\n";
7322        generate_one_test_body name i test_name init test;
7323    | Always ->
7324        generate_one_test_body name i test_name init test
7325   );
7326
7327   pr "  return 0;\n";
7328   pr "}\n";
7329   pr "\n";
7330   test_name
7331
7332 and generate_one_test_body name i test_name init test =
7333   (match init with
7334    | InitNone (* XXX at some point, InitNone and InitEmpty became
7335                * folded together as the same thing.  Really we should
7336                * make InitNone do nothing at all, but the tests may
7337                * need to be checked to make sure this is OK.
7338                *)
7339    | InitEmpty ->
7340        pr "  /* InitNone|InitEmpty for %s */\n" test_name;
7341        List.iter (generate_test_command_call test_name)
7342          [["blockdev_setrw"; "/dev/sda"];
7343           ["umount_all"];
7344           ["lvm_remove_all"]]
7345    | InitPartition ->
7346        pr "  /* InitPartition for %s: create /dev/sda1 */\n" test_name;
7347        List.iter (generate_test_command_call test_name)
7348          [["blockdev_setrw"; "/dev/sda"];
7349           ["umount_all"];
7350           ["lvm_remove_all"];
7351           ["part_disk"; "/dev/sda"; "mbr"]]
7352    | InitBasicFS ->
7353        pr "  /* InitBasicFS for %s: create ext2 on /dev/sda1 */\n" test_name;
7354        List.iter (generate_test_command_call test_name)
7355          [["blockdev_setrw"; "/dev/sda"];
7356           ["umount_all"];
7357           ["lvm_remove_all"];
7358           ["part_disk"; "/dev/sda"; "mbr"];
7359           ["mkfs"; "ext2"; "/dev/sda1"];
7360           ["mount_options"; ""; "/dev/sda1"; "/"]]
7361    | InitBasicFSonLVM ->
7362        pr "  /* InitBasicFSonLVM for %s: create ext2 on /dev/VG/LV */\n"
7363          test_name;
7364        List.iter (generate_test_command_call test_name)
7365          [["blockdev_setrw"; "/dev/sda"];
7366           ["umount_all"];
7367           ["lvm_remove_all"];
7368           ["part_disk"; "/dev/sda"; "mbr"];
7369           ["pvcreate"; "/dev/sda1"];
7370           ["vgcreate"; "VG"; "/dev/sda1"];
7371           ["lvcreate"; "LV"; "VG"; "8"];
7372           ["mkfs"; "ext2"; "/dev/VG/LV"];
7373           ["mount_options"; ""; "/dev/VG/LV"; "/"]]
7374    | InitISOFS ->
7375        pr "  /* InitISOFS for %s */\n" test_name;
7376        List.iter (generate_test_command_call test_name)
7377          [["blockdev_setrw"; "/dev/sda"];
7378           ["umount_all"];
7379           ["lvm_remove_all"];
7380           ["mount_ro"; "/dev/sdd"; "/"]]
7381   );
7382
7383   let get_seq_last = function
7384     | [] ->
7385         failwithf "%s: you cannot use [] (empty list) when expecting a command"
7386           test_name
7387     | seq ->
7388         let seq = List.rev seq in
7389         List.rev (List.tl seq), List.hd seq
7390   in
7391
7392   match test with
7393   | TestRun seq ->
7394       pr "  /* TestRun for %s (%d) */\n" name i;
7395       List.iter (generate_test_command_call test_name) seq
7396   | TestOutput (seq, expected) ->
7397       pr "  /* TestOutput for %s (%d) */\n" name i;
7398       pr "  const char *expected = \"%s\";\n" (c_quote expected);
7399       let seq, last = get_seq_last seq in
7400       let test () =
7401         pr "    if (STRNEQ (r, expected)) {\n";
7402         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
7403         pr "      return -1;\n";
7404         pr "    }\n"
7405       in
7406       List.iter (generate_test_command_call test_name) seq;
7407       generate_test_command_call ~test test_name last
7408   | TestOutputList (seq, expected) ->
7409       pr "  /* TestOutputList for %s (%d) */\n" name i;
7410       let seq, last = get_seq_last seq in
7411       let test () =
7412         iteri (
7413           fun i str ->
7414             pr "    if (!r[%d]) {\n" i;
7415             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
7416             pr "      print_strings (r);\n";
7417             pr "      return -1;\n";
7418             pr "    }\n";
7419             pr "    {\n";
7420             pr "      const char *expected = \"%s\";\n" (c_quote str);
7421             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
7422             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
7423             pr "        return -1;\n";
7424             pr "      }\n";
7425             pr "    }\n"
7426         ) expected;
7427         pr "    if (r[%d] != NULL) {\n" (List.length expected);
7428         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
7429           test_name;
7430         pr "      print_strings (r);\n";
7431         pr "      return -1;\n";
7432         pr "    }\n"
7433       in
7434       List.iter (generate_test_command_call test_name) seq;
7435       generate_test_command_call ~test test_name last
7436   | TestOutputListOfDevices (seq, expected) ->
7437       pr "  /* TestOutputListOfDevices for %s (%d) */\n" name i;
7438       let seq, last = get_seq_last seq in
7439       let test () =
7440         iteri (
7441           fun i str ->
7442             pr "    if (!r[%d]) {\n" i;
7443             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
7444             pr "      print_strings (r);\n";
7445             pr "      return -1;\n";
7446             pr "    }\n";
7447             pr "    {\n";
7448             pr "      const char *expected = \"%s\";\n" (c_quote str);
7449             pr "      r[%d][5] = 's';\n" i;
7450             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
7451             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
7452             pr "        return -1;\n";
7453             pr "      }\n";
7454             pr "    }\n"
7455         ) expected;
7456         pr "    if (r[%d] != NULL) {\n" (List.length expected);
7457         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
7458           test_name;
7459         pr "      print_strings (r);\n";
7460         pr "      return -1;\n";
7461         pr "    }\n"
7462       in
7463       List.iter (generate_test_command_call test_name) seq;
7464       generate_test_command_call ~test test_name last
7465   | TestOutputInt (seq, expected) ->
7466       pr "  /* TestOutputInt for %s (%d) */\n" name i;
7467       let seq, last = get_seq_last seq in
7468       let test () =
7469         pr "    if (r != %d) {\n" expected;
7470         pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
7471           test_name expected;
7472         pr "               (int) r);\n";
7473         pr "      return -1;\n";
7474         pr "    }\n"
7475       in
7476       List.iter (generate_test_command_call test_name) seq;
7477       generate_test_command_call ~test test_name last
7478   | TestOutputIntOp (seq, op, expected) ->
7479       pr "  /* TestOutputIntOp for %s (%d) */\n" name i;
7480       let seq, last = get_seq_last seq in
7481       let test () =
7482         pr "    if (! (r %s %d)) {\n" op expected;
7483         pr "      fprintf (stderr, \"%s: expected %s %d but got %%d\\n\","
7484           test_name op expected;
7485         pr "               (int) r);\n";
7486         pr "      return -1;\n";
7487         pr "    }\n"
7488       in
7489       List.iter (generate_test_command_call test_name) seq;
7490       generate_test_command_call ~test test_name last
7491   | TestOutputTrue seq ->
7492       pr "  /* TestOutputTrue for %s (%d) */\n" name i;
7493       let seq, last = get_seq_last seq in
7494       let test () =
7495         pr "    if (!r) {\n";
7496         pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
7497           test_name;
7498         pr "      return -1;\n";
7499         pr "    }\n"
7500       in
7501       List.iter (generate_test_command_call test_name) seq;
7502       generate_test_command_call ~test test_name last
7503   | TestOutputFalse seq ->
7504       pr "  /* TestOutputFalse for %s (%d) */\n" name i;
7505       let seq, last = get_seq_last seq in
7506       let test () =
7507         pr "    if (r) {\n";
7508         pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
7509           test_name;
7510         pr "      return -1;\n";
7511         pr "    }\n"
7512       in
7513       List.iter (generate_test_command_call test_name) seq;
7514       generate_test_command_call ~test test_name last
7515   | TestOutputLength (seq, expected) ->
7516       pr "  /* TestOutputLength for %s (%d) */\n" name i;
7517       let seq, last = get_seq_last seq in
7518       let test () =
7519         pr "    int j;\n";
7520         pr "    for (j = 0; j < %d; ++j)\n" expected;
7521         pr "      if (r[j] == NULL) {\n";
7522         pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
7523           test_name;
7524         pr "        print_strings (r);\n";
7525         pr "        return -1;\n";
7526         pr "      }\n";
7527         pr "    if (r[j] != NULL) {\n";
7528         pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
7529           test_name;
7530         pr "      print_strings (r);\n";
7531         pr "      return -1;\n";
7532         pr "    }\n"
7533       in
7534       List.iter (generate_test_command_call test_name) seq;
7535       generate_test_command_call ~test test_name last
7536   | TestOutputBuffer (seq, expected) ->
7537       pr "  /* TestOutputBuffer for %s (%d) */\n" name i;
7538       pr "  const char *expected = \"%s\";\n" (c_quote expected);
7539       let seq, last = get_seq_last seq in
7540       let len = String.length expected in
7541       let test () =
7542         pr "    if (size != %d) {\n" len;
7543         pr "      fprintf (stderr, \"%s: returned size of buffer wrong, expected %d but got %%zu\\n\", size);\n" test_name len;
7544         pr "      return -1;\n";
7545         pr "    }\n";
7546         pr "    if (STRNEQLEN (r, expected, size)) {\n";
7547         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
7548         pr "      return -1;\n";
7549         pr "    }\n"
7550       in
7551       List.iter (generate_test_command_call test_name) seq;
7552       generate_test_command_call ~test test_name last
7553   | TestOutputStruct (seq, checks) ->
7554       pr "  /* TestOutputStruct for %s (%d) */\n" name i;
7555       let seq, last = get_seq_last seq in
7556       let test () =
7557         List.iter (
7558           function
7559           | CompareWithInt (field, expected) ->
7560               pr "    if (r->%s != %d) {\n" field expected;
7561               pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
7562                 test_name field expected;
7563               pr "               (int) r->%s);\n" field;
7564               pr "      return -1;\n";
7565               pr "    }\n"
7566           | CompareWithIntOp (field, op, expected) ->
7567               pr "    if (!(r->%s %s %d)) {\n" field op expected;
7568               pr "      fprintf (stderr, \"%s: %s was %%d, expected %s %d\\n\",\n"
7569                 test_name field op expected;
7570               pr "               (int) r->%s);\n" field;
7571               pr "      return -1;\n";
7572               pr "    }\n"
7573           | CompareWithString (field, expected) ->
7574               pr "    if (STRNEQ (r->%s, \"%s\")) {\n" field expected;
7575               pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
7576                 test_name field expected;
7577               pr "               r->%s);\n" field;
7578               pr "      return -1;\n";
7579               pr "    }\n"
7580           | CompareFieldsIntEq (field1, field2) ->
7581               pr "    if (r->%s != r->%s) {\n" field1 field2;
7582               pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
7583                 test_name field1 field2;
7584               pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
7585               pr "      return -1;\n";
7586               pr "    }\n"
7587           | CompareFieldsStrEq (field1, field2) ->
7588               pr "    if (STRNEQ (r->%s, r->%s)) {\n" field1 field2;
7589               pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
7590                 test_name field1 field2;
7591               pr "               r->%s, r->%s);\n" field1 field2;
7592               pr "      return -1;\n";
7593               pr "    }\n"
7594         ) checks
7595       in
7596       List.iter (generate_test_command_call test_name) seq;
7597       generate_test_command_call ~test test_name last
7598   | TestLastFail seq ->
7599       pr "  /* TestLastFail for %s (%d) */\n" name i;
7600       let seq, last = get_seq_last seq in
7601       List.iter (generate_test_command_call test_name) seq;
7602       generate_test_command_call test_name ~expect_error:true last
7603
7604 (* Generate the code to run a command, leaving the result in 'r'.
7605  * If you expect to get an error then you should set expect_error:true.
7606  *)
7607 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
7608   match cmd with
7609   | [] -> assert false
7610   | name :: args ->
7611       (* Look up the command to find out what args/ret it has. *)
7612       let style =
7613         try
7614           let _, style, _, _, _, _, _ =
7615             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
7616           style
7617         with Not_found ->
7618           failwithf "%s: in test, command %s was not found" test_name name in
7619
7620       if List.length (snd style) <> List.length args then
7621         failwithf "%s: in test, wrong number of args given to %s"
7622           test_name name;
7623
7624       pr "  {\n";
7625
7626       List.iter (
7627         function
7628         | OptString n, "NULL" -> ()
7629         | Pathname n, arg
7630         | Device n, arg
7631         | Dev_or_Path n, arg
7632         | String n, arg
7633         | OptString n, arg
7634         | Key n, arg ->
7635             pr "    const char *%s = \"%s\";\n" n (c_quote arg);
7636         | BufferIn n, arg ->
7637             pr "    const char *%s = \"%s\";\n" n (c_quote arg);
7638             pr "    size_t %s_size = %d;\n" n (String.length arg)
7639         | Int _, _
7640         | Int64 _, _
7641         | Bool _, _
7642         | FileIn _, _ | FileOut _, _ -> ()
7643         | StringList n, "" | DeviceList n, "" ->
7644             pr "    const char *const %s[1] = { NULL };\n" n
7645         | StringList n, arg | DeviceList n, arg ->
7646             let strs = string_split " " arg in
7647             iteri (
7648               fun i str ->
7649                 pr "    const char *%s_%d = \"%s\";\n" n i (c_quote str);
7650             ) strs;
7651             pr "    const char *const %s[] = {\n" n;
7652             iteri (
7653               fun i _ -> pr "      %s_%d,\n" n i
7654             ) strs;
7655             pr "      NULL\n";
7656             pr "    };\n";
7657       ) (List.combine (snd style) args);
7658
7659       let error_code =
7660         match fst style with
7661         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
7662         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
7663         | RConstString _ | RConstOptString _ ->
7664             pr "    const char *r;\n"; "NULL"
7665         | RString _ -> pr "    char *r;\n"; "NULL"
7666         | RStringList _ | RHashtable _ ->
7667             pr "    char **r;\n";
7668             pr "    size_t i;\n";
7669             "NULL"
7670         | RStruct (_, typ) ->
7671             pr "    struct guestfs_%s *r;\n" typ; "NULL"
7672         | RStructList (_, typ) ->
7673             pr "    struct guestfs_%s_list *r;\n" typ; "NULL"
7674         | RBufferOut _ ->
7675             pr "    char *r;\n";
7676             pr "    size_t size;\n";
7677             "NULL" in
7678
7679       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
7680       pr "    r = guestfs_%s (g" name;
7681
7682       (* Generate the parameters. *)
7683       List.iter (
7684         function
7685         | OptString _, "NULL" -> pr ", NULL"
7686         | Pathname n, _
7687         | Device n, _ | Dev_or_Path n, _
7688         | String n, _
7689         | OptString n, _
7690         | Key n, _ ->
7691             pr ", %s" n
7692         | BufferIn n, _ ->
7693             pr ", %s, %s_size" n n
7694         | FileIn _, arg | FileOut _, arg ->
7695             pr ", \"%s\"" (c_quote arg)
7696         | StringList n, _ | DeviceList n, _ ->
7697             pr ", (char **) %s" n
7698         | Int _, arg ->
7699             let i =
7700               try int_of_string arg
7701               with Failure "int_of_string" ->
7702                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
7703             pr ", %d" i
7704         | Int64 _, arg ->
7705             let i =
7706               try Int64.of_string arg
7707               with Failure "int_of_string" ->
7708                 failwithf "%s: expecting an int64, but got '%s'" test_name arg in
7709             pr ", %Ld" i
7710         | Bool _, arg ->
7711             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
7712       ) (List.combine (snd style) args);
7713
7714       (match fst style with
7715        | RBufferOut _ -> pr ", &size"
7716        | _ -> ()
7717       );
7718
7719       pr ");\n";
7720
7721       if not expect_error then
7722         pr "    if (r == %s)\n" error_code
7723       else
7724         pr "    if (r != %s)\n" error_code;
7725       pr "      return -1;\n";
7726
7727       (* Insert the test code. *)
7728       (match test with
7729        | None -> ()
7730        | Some f -> f ()
7731       );
7732
7733       (match fst style with
7734        | RErr | RInt _ | RInt64 _ | RBool _
7735        | RConstString _ | RConstOptString _ -> ()
7736        | RString _ | RBufferOut _ -> pr "    free (r);\n"
7737        | RStringList _ | RHashtable _ ->
7738            pr "    for (i = 0; r[i] != NULL; ++i)\n";
7739            pr "      free (r[i]);\n";
7740            pr "    free (r);\n"
7741        | RStruct (_, typ) ->
7742            pr "    guestfs_free_%s (r);\n" typ
7743        | RStructList (_, typ) ->
7744            pr "    guestfs_free_%s_list (r);\n" typ
7745       );
7746
7747       pr "  }\n"
7748
7749 and c_quote str =
7750   let str = replace_str str "\r" "\\r" in
7751   let str = replace_str str "\n" "\\n" in
7752   let str = replace_str str "\t" "\\t" in
7753   let str = replace_str str "\000" "\\0" in
7754   str
7755
7756 (* Generate a lot of different functions for guestfish. *)
7757 and generate_fish_cmds () =
7758   generate_header CStyle GPLv2plus;
7759
7760   let all_functions =
7761     List.filter (
7762       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7763     ) all_functions in
7764   let all_functions_sorted =
7765     List.filter (
7766       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7767     ) all_functions_sorted in
7768
7769   pr "#include <config.h>\n";
7770   pr "\n";
7771   pr "#include <stdio.h>\n";
7772   pr "#include <stdlib.h>\n";
7773   pr "#include <string.h>\n";
7774   pr "#include <inttypes.h>\n";
7775   pr "\n";
7776   pr "#include <guestfs.h>\n";
7777   pr "#include \"c-ctype.h\"\n";
7778   pr "#include \"full-write.h\"\n";
7779   pr "#include \"xstrtol.h\"\n";
7780   pr "#include \"fish.h\"\n";
7781   pr "\n";
7782   pr "/* Valid suffixes allowed for numbers.  See Gnulib xstrtol function. */\n";
7783   pr "static const char *xstrtol_suffixes = \"0kKMGTPEZY\";\n";
7784   pr "\n";
7785
7786   (* list_commands function, which implements guestfish -h *)
7787   pr "void list_commands (void)\n";
7788   pr "{\n";
7789   pr "  printf (\"    %%-16s     %%s\\n\", _(\"Command\"), _(\"Description\"));\n";
7790   pr "  list_builtin_commands ();\n";
7791   List.iter (
7792     fun (name, _, _, flags, _, shortdesc, _) ->
7793       let name = replace_char name '_' '-' in
7794       pr "  printf (\"%%-20s %%s\\n\", \"%s\", _(\"%s\"));\n"
7795         name shortdesc
7796   ) all_functions_sorted;
7797   pr "  printf (\"    %%s\\n\",";
7798   pr "          _(\"Use -h <cmd> / help <cmd> to show detailed help for a command.\"));\n";
7799   pr "}\n";
7800   pr "\n";
7801
7802   (* display_command function, which implements guestfish -h cmd *)
7803   pr "int display_command (const char *cmd)\n";
7804   pr "{\n";
7805   List.iter (
7806     fun (name, style, _, flags, _, shortdesc, longdesc) ->
7807       let name2 = replace_char name '_' '-' in
7808       let alias =
7809         try find_map (function FishAlias n -> Some n | _ -> None) flags
7810         with Not_found -> name in
7811       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
7812       let synopsis =
7813         match snd style with
7814         | [] -> name2
7815         | args ->
7816             let args = List.filter (function Key _ -> false | _ -> true) args in
7817             sprintf "%s %s"
7818               name2 (String.concat " " (List.map name_of_argt args)) in
7819
7820       let warnings =
7821         if List.exists (function Key _ -> true | _ -> false) (snd style) then
7822           "\n\nThis command has one or more key or passphrase parameters.
7823 Guestfish will prompt for these separately."
7824         else "" in
7825
7826       let warnings =
7827         warnings ^
7828           if List.mem ProtocolLimitWarning flags then
7829             ("\n\n" ^ protocol_limit_warning)
7830           else "" in
7831
7832       (* For DangerWillRobinson commands, we should probably have
7833        * guestfish prompt before allowing you to use them (especially
7834        * in interactive mode). XXX
7835        *)
7836       let warnings =
7837         warnings ^
7838           if List.mem DangerWillRobinson flags then
7839             ("\n\n" ^ danger_will_robinson)
7840           else "" in
7841
7842       let warnings =
7843         warnings ^
7844           match deprecation_notice flags with
7845           | None -> ""
7846           | Some txt -> "\n\n" ^ txt in
7847
7848       let describe_alias =
7849         if name <> alias then
7850           sprintf "\n\nYou can use '%s' as an alias for this command." alias
7851         else "" in
7852
7853       pr "  if (";
7854       pr "STRCASEEQ (cmd, \"%s\")" name;
7855       if name <> name2 then
7856         pr " || STRCASEEQ (cmd, \"%s\")" name2;
7857       if name <> alias then
7858         pr " || STRCASEEQ (cmd, \"%s\")" alias;
7859       pr ") {\n";
7860       pr "    pod2text (\"%s\", _(\"%s\"), %S);\n"
7861         name2 shortdesc
7862         ("=head1 SYNOPSIS\n\n " ^ synopsis ^ "\n\n" ^
7863          "=head1 DESCRIPTION\n\n" ^
7864          longdesc ^ warnings ^ describe_alias);
7865       pr "    return 0;\n";
7866       pr "  }\n";
7867       pr "  else\n"
7868   ) all_functions;
7869   pr "    return display_builtin_command (cmd);\n";
7870   pr "}\n";
7871   pr "\n";
7872
7873   let emit_print_list_function typ =
7874     pr "static void print_%s_list (struct guestfs_%s_list *%ss)\n"
7875       typ typ typ;
7876     pr "{\n";
7877     pr "  unsigned int i;\n";
7878     pr "\n";
7879     pr "  for (i = 0; i < %ss->len; ++i) {\n" typ;
7880     pr "    printf (\"[%%d] = {\\n\", i);\n";
7881     pr "    print_%s_indent (&%ss->val[i], \"  \");\n" typ typ;
7882     pr "    printf (\"}\\n\");\n";
7883     pr "  }\n";
7884     pr "}\n";
7885     pr "\n";
7886   in
7887
7888   (* print_* functions *)
7889   List.iter (
7890     fun (typ, cols) ->
7891       let needs_i =
7892         List.exists (function (_, (FUUID|FBuffer)) -> true | _ -> false) cols in
7893
7894       pr "static void print_%s_indent (struct guestfs_%s *%s, const char *indent)\n" typ typ typ;
7895       pr "{\n";
7896       if needs_i then (
7897         pr "  unsigned int i;\n";
7898         pr "\n"
7899       );
7900       List.iter (
7901         function
7902         | name, FString ->
7903             pr "  printf (\"%%s%s: %%s\\n\", indent, %s->%s);\n" name typ name
7904         | name, FUUID ->
7905             pr "  printf (\"%%s%s: \", indent);\n" name;
7906             pr "  for (i = 0; i < 32; ++i)\n";
7907             pr "    printf (\"%%c\", %s->%s[i]);\n" typ name;
7908             pr "  printf (\"\\n\");\n"
7909         | name, FBuffer ->
7910             pr "  printf (\"%%s%s: \", indent);\n" name;
7911             pr "  for (i = 0; i < %s->%s_len; ++i)\n" typ name;
7912             pr "    if (c_isprint (%s->%s[i]))\n" typ name;
7913             pr "      printf (\"%%c\", %s->%s[i]);\n" typ name;
7914             pr "    else\n";
7915             pr "      printf (\"\\\\x%%02x\", %s->%s[i]);\n" typ name;
7916             pr "  printf (\"\\n\");\n"
7917         | name, (FUInt64|FBytes) ->
7918             pr "  printf (\"%%s%s: %%\" PRIu64 \"\\n\", indent, %s->%s);\n"
7919               name typ name
7920         | name, FInt64 ->
7921             pr "  printf (\"%%s%s: %%\" PRIi64 \"\\n\", indent, %s->%s);\n"
7922               name typ name
7923         | name, FUInt32 ->
7924             pr "  printf (\"%%s%s: %%\" PRIu32 \"\\n\", indent, %s->%s);\n"
7925               name typ name
7926         | name, FInt32 ->
7927             pr "  printf (\"%%s%s: %%\" PRIi32 \"\\n\", indent, %s->%s);\n"
7928               name typ name
7929         | name, FChar ->
7930             pr "  printf (\"%%s%s: %%c\\n\", indent, %s->%s);\n"
7931               name typ name
7932         | name, FOptPercent ->
7933             pr "  if (%s->%s >= 0) printf (\"%%s%s: %%g %%%%\\n\", indent, %s->%s);\n"
7934               typ name name typ name;
7935             pr "  else printf (\"%%s%s: \\n\", indent);\n" name
7936       ) cols;
7937       pr "}\n";
7938       pr "\n";
7939   ) structs;
7940
7941   (* Emit a print_TYPE_list function definition only if that function is used. *)
7942   List.iter (
7943     function
7944     | typ, (RStructListOnly | RStructAndList) ->
7945         (* generate the function for typ *)
7946         emit_print_list_function typ
7947     | typ, _ -> () (* empty *)
7948   ) (rstructs_used_by all_functions);
7949
7950   (* Emit a print_TYPE function definition only if that function is used. *)
7951   List.iter (
7952     function
7953     | typ, (RStructOnly | RStructAndList) ->
7954         pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
7955         pr "{\n";
7956         pr "  print_%s_indent (%s, \"\");\n" typ typ;
7957         pr "}\n";
7958         pr "\n";
7959     | typ, _ -> () (* empty *)
7960   ) (rstructs_used_by all_functions);
7961
7962   (* run_<action> actions *)
7963   List.iter (
7964     fun (name, style, _, flags, _, _, _) ->
7965       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
7966       pr "{\n";
7967       (match fst style with
7968        | RErr
7969        | RInt _
7970        | RBool _ -> pr "  int r;\n"
7971        | RInt64 _ -> pr "  int64_t r;\n"
7972        | RConstString _ | RConstOptString _ -> pr "  const char *r;\n"
7973        | RString _ -> pr "  char *r;\n"
7974        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
7975        | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ
7976        | RStructList (_, typ) -> pr "  struct guestfs_%s_list *r;\n" typ
7977        | RBufferOut _ ->
7978            pr "  char *r;\n";
7979            pr "  size_t size;\n";
7980       );
7981       List.iter (
7982         function
7983         | Device n
7984         | String n
7985         | OptString n -> pr "  const char *%s;\n" n
7986         | Pathname n
7987         | Dev_or_Path n
7988         | FileIn n
7989         | FileOut n
7990         | Key n -> pr "  char *%s;\n" n
7991         | BufferIn n ->
7992             pr "  const char *%s;\n" n;
7993             pr "  size_t %s_size;\n" n
7994         | StringList n | DeviceList n -> pr "  char **%s;\n" n
7995         | Bool n -> pr "  int %s;\n" n
7996         | Int n -> pr "  int %s;\n" n
7997         | Int64 n -> pr "  int64_t %s;\n" n
7998       ) (snd style);
7999
8000       (* Check and convert parameters. *)
8001       let argc_expected =
8002         let args_no_keys =
8003           List.filter (function Key _ -> false | _ -> true) (snd style) in
8004         List.length args_no_keys in
8005       pr "  if (argc != %d) {\n" argc_expected;
8006       pr "    fprintf (stderr, _(\"%%s should have %%d parameter(s)\\n\"), cmd, %d);\n"
8007         argc_expected;
8008       pr "    fprintf (stderr, _(\"type 'help %%s' for help on %%s\\n\"), cmd, cmd);\n";
8009       pr "    return -1;\n";
8010       pr "  }\n";
8011
8012       let parse_integer fn fntyp rtyp range name =
8013         pr "  {\n";
8014         pr "    strtol_error xerr;\n";
8015         pr "    %s r;\n" fntyp;
8016         pr "\n";
8017         pr "    xerr = %s (argv[i++], NULL, 0, &r, xstrtol_suffixes);\n" fn;
8018         pr "    if (xerr != LONGINT_OK) {\n";
8019         pr "      fprintf (stderr,\n";
8020         pr "               _(\"%%s: %%s: invalid integer parameter (%%s returned %%d)\\n\"),\n";
8021         pr "               cmd, \"%s\", \"%s\", xerr);\n" name fn;
8022         pr "      return -1;\n";
8023         pr "    }\n";
8024         (match range with
8025          | None -> ()
8026          | Some (min, max, comment) ->
8027              pr "    /* %s */\n" comment;
8028              pr "    if (r < %s || r > %s) {\n" min max;
8029              pr "      fprintf (stderr, _(\"%%s: %%s: integer out of range\\n\"), cmd, \"%s\");\n"
8030                name;
8031              pr "      return -1;\n";
8032              pr "    }\n";
8033              pr "    /* The check above should ensure this assignment does not overflow. */\n";
8034         );
8035         pr "    %s = r;\n" name;
8036         pr "  }\n";
8037       in
8038
8039       if snd style <> [] then
8040         pr "  size_t i = 0;\n";
8041
8042       List.iter (
8043         function
8044         | Device name
8045         | String name ->
8046             pr "  %s = argv[i++];\n" name
8047         | Pathname name
8048         | Dev_or_Path name ->
8049             pr "  %s = resolve_win_path (argv[i++]);\n" name;
8050             pr "  if (%s == NULL) return -1;\n" name
8051         | OptString name ->
8052             pr "  %s = STRNEQ (argv[i], \"\") ? argv[i] : NULL;\n" name;
8053             pr "  i++;\n"
8054         | BufferIn name ->
8055             pr "  %s = argv[i];\n" name;
8056             pr "  %s_size = strlen (argv[i]);\n" name;
8057             pr "  i++;\n"
8058         | FileIn name ->
8059             pr "  %s = file_in (argv[i++]);\n" name;
8060             pr "  if (%s == NULL) return -1;\n" name
8061         | FileOut name ->
8062             pr "  %s = file_out (argv[i++]);\n" name;
8063             pr "  if (%s == NULL) return -1;\n" name
8064         | StringList name | DeviceList name ->
8065             pr "  %s = parse_string_list (argv[i++]);\n" name;
8066             pr "  if (%s == NULL) return -1;\n" name
8067         | Key name ->
8068             pr "  %s = read_key (\"%s\");\n" name name;
8069             pr "  if (%s == NULL) return -1;\n" name
8070         | Bool name ->
8071             pr "  %s = is_true (argv[i++]) ? 1 : 0;\n" name
8072         | Int name ->
8073             let range =
8074               let min = "(-(2LL<<30))"
8075               and max = "((2LL<<30)-1)"
8076               and comment =
8077                 "The Int type in the generator is a signed 31 bit int." in
8078               Some (min, max, comment) in
8079             parse_integer "xstrtoll" "long long" "int" range name
8080         | Int64 name ->
8081             parse_integer "xstrtoll" "long long" "int64_t" None name
8082       ) (snd style);
8083
8084       (* Call C API function. *)
8085       pr "  r = guestfs_%s " name;
8086       generate_c_call_args ~handle:"g" style;
8087       pr ";\n";
8088
8089       List.iter (
8090         function
8091         | Device _ | String _
8092         | OptString _ | Bool _
8093         | Int _ | Int64 _
8094         | BufferIn _ -> ()
8095         | Pathname name | Dev_or_Path name | FileOut name
8096         | Key name ->
8097             pr "  free (%s);\n" name
8098         | FileIn name ->
8099             pr "  free_file_in (%s);\n" name
8100         | StringList name | DeviceList name ->
8101             pr "  free_strings (%s);\n" name
8102       ) (snd style);
8103
8104       (* Any output flags? *)
8105       let fish_output =
8106         let flags = filter_map (
8107           function FishOutput flag -> Some flag | _ -> None
8108         ) flags in
8109         match flags with
8110         | [] -> None
8111         | [f] -> Some f
8112         | _ ->
8113             failwithf "%s: more than one FishOutput flag is not allowed" name in
8114
8115       (* Check return value for errors and display command results. *)
8116       (match fst style with
8117        | RErr -> pr "  return r;\n"
8118        | RInt _ ->
8119            pr "  if (r == -1) return -1;\n";
8120            (match fish_output with
8121             | None ->
8122                 pr "  printf (\"%%d\\n\", r);\n";
8123             | Some FishOutputOctal ->
8124                 pr "  printf (\"%%s%%o\\n\", r != 0 ? \"0\" : \"\", r);\n";
8125             | Some FishOutputHexadecimal ->
8126                 pr "  printf (\"%%s%%x\\n\", r != 0 ? \"0x\" : \"\", r);\n");
8127            pr "  return 0;\n"
8128        | RInt64 _ ->
8129            pr "  if (r == -1) return -1;\n";
8130            (match fish_output with
8131             | None ->
8132                 pr "  printf (\"%%\" PRIi64 \"\\n\", r);\n";
8133             | Some FishOutputOctal ->
8134                 pr "  printf (\"%%s%%\" PRIo64 \"\\n\", r != 0 ? \"0\" : \"\", r);\n";
8135             | Some FishOutputHexadecimal ->
8136                 pr "  printf (\"%%s%%\" PRIx64 \"\\n\", r != 0 ? \"0x\" : \"\", r);\n");
8137            pr "  return 0;\n"
8138        | RBool _ ->
8139            pr "  if (r == -1) return -1;\n";
8140            pr "  if (r) printf (\"true\\n\"); else printf (\"false\\n\");\n";
8141            pr "  return 0;\n"
8142        | RConstString _ ->
8143            pr "  if (r == NULL) return -1;\n";
8144            pr "  printf (\"%%s\\n\", r);\n";
8145            pr "  return 0;\n"
8146        | RConstOptString _ ->
8147            pr "  printf (\"%%s\\n\", r ? : \"(null)\");\n";
8148            pr "  return 0;\n"
8149        | RString _ ->
8150            pr "  if (r == NULL) return -1;\n";
8151            pr "  printf (\"%%s\\n\", r);\n";
8152            pr "  free (r);\n";
8153            pr "  return 0;\n"
8154        | RStringList _ ->
8155            pr "  if (r == NULL) return -1;\n";
8156            pr "  print_strings (r);\n";
8157            pr "  free_strings (r);\n";
8158            pr "  return 0;\n"
8159        | RStruct (_, typ) ->
8160            pr "  if (r == NULL) return -1;\n";
8161            pr "  print_%s (r);\n" typ;
8162            pr "  guestfs_free_%s (r);\n" typ;
8163            pr "  return 0;\n"
8164        | RStructList (_, typ) ->
8165            pr "  if (r == NULL) return -1;\n";
8166            pr "  print_%s_list (r);\n" typ;
8167            pr "  guestfs_free_%s_list (r);\n" typ;
8168            pr "  return 0;\n"
8169        | RHashtable _ ->
8170            pr "  if (r == NULL) return -1;\n";
8171            pr "  print_table (r);\n";
8172            pr "  free_strings (r);\n";
8173            pr "  return 0;\n"
8174        | RBufferOut _ ->
8175            pr "  if (r == NULL) return -1;\n";
8176            pr "  if (full_write (1, r, size) != size) {\n";
8177            pr "    perror (\"write\");\n";
8178            pr "    free (r);\n";
8179            pr "    return -1;\n";
8180            pr "  }\n";
8181            pr "  free (r);\n";
8182            pr "  return 0;\n"
8183       );
8184       pr "}\n";
8185       pr "\n"
8186   ) all_functions;
8187
8188   (* run_action function *)
8189   pr "int run_action (const char *cmd, int argc, char *argv[])\n";
8190   pr "{\n";
8191   List.iter (
8192     fun (name, _, _, flags, _, _, _) ->
8193       let name2 = replace_char name '_' '-' in
8194       let alias =
8195         try find_map (function FishAlias n -> Some n | _ -> None) flags
8196         with Not_found -> name in
8197       pr "  if (";
8198       pr "STRCASEEQ (cmd, \"%s\")" name;
8199       if name <> name2 then
8200         pr " || STRCASEEQ (cmd, \"%s\")" name2;
8201       if name <> alias then
8202         pr " || STRCASEEQ (cmd, \"%s\")" alias;
8203       pr ")\n";
8204       pr "    return run_%s (cmd, argc, argv);\n" name;
8205       pr "  else\n";
8206   ) all_functions;
8207   pr "    {\n";
8208   pr "      fprintf (stderr, _(\"%%s: unknown command\\n\"), cmd);\n";
8209   pr "      if (command_num == 1)\n";
8210   pr "        extended_help_message ();\n";
8211   pr "      return -1;\n";
8212   pr "    }\n";
8213   pr "  return 0;\n";
8214   pr "}\n";
8215   pr "\n"
8216
8217 (* Readline completion for guestfish. *)
8218 and generate_fish_completion () =
8219   generate_header CStyle GPLv2plus;
8220
8221   let all_functions =
8222     List.filter (
8223       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
8224     ) all_functions in
8225
8226   pr "\
8227 #include <config.h>
8228
8229 #include <stdio.h>
8230 #include <stdlib.h>
8231 #include <string.h>
8232
8233 #ifdef HAVE_LIBREADLINE
8234 #include <readline/readline.h>
8235 #endif
8236
8237 #include \"fish.h\"
8238
8239 #ifdef HAVE_LIBREADLINE
8240
8241 static const char *const commands[] = {
8242   BUILTIN_COMMANDS_FOR_COMPLETION,
8243 ";
8244
8245   (* Get the commands, including the aliases.  They don't need to be
8246    * sorted - the generator() function just does a dumb linear search.
8247    *)
8248   let commands =
8249     List.map (
8250       fun (name, _, _, flags, _, _, _) ->
8251         let name2 = replace_char name '_' '-' in
8252         let alias =
8253           try find_map (function FishAlias n -> Some n | _ -> None) flags
8254           with Not_found -> name in
8255
8256         if name <> alias then [name2; alias] else [name2]
8257     ) all_functions in
8258   let commands = List.flatten commands in
8259
8260   List.iter (pr "  \"%s\",\n") commands;
8261
8262   pr "  NULL
8263 };
8264
8265 static char *
8266 generator (const char *text, int state)
8267 {
8268   static size_t index, len;
8269   const char *name;
8270
8271   if (!state) {
8272     index = 0;
8273     len = strlen (text);
8274   }
8275
8276   rl_attempted_completion_over = 1;
8277
8278   while ((name = commands[index]) != NULL) {
8279     index++;
8280     if (STRCASEEQLEN (name, text, len))
8281       return strdup (name);
8282   }
8283
8284   return NULL;
8285 }
8286
8287 #endif /* HAVE_LIBREADLINE */
8288
8289 #ifdef HAVE_RL_COMPLETION_MATCHES
8290 #define RL_COMPLETION_MATCHES rl_completion_matches
8291 #else
8292 #ifdef HAVE_COMPLETION_MATCHES
8293 #define RL_COMPLETION_MATCHES completion_matches
8294 #endif
8295 #endif /* else just fail if we don't have either symbol */
8296
8297 char **
8298 do_completion (const char *text, int start, int end)
8299 {
8300   char **matches = NULL;
8301
8302 #ifdef HAVE_LIBREADLINE
8303   rl_completion_append_character = ' ';
8304
8305   if (start == 0)
8306     matches = RL_COMPLETION_MATCHES (text, generator);
8307   else if (complete_dest_paths)
8308     matches = RL_COMPLETION_MATCHES (text, complete_dest_paths_generator);
8309 #endif
8310
8311   return matches;
8312 }
8313 ";
8314
8315 (* Generate the POD documentation for guestfish. *)
8316 and generate_fish_actions_pod () =
8317   let all_functions_sorted =
8318     List.filter (
8319       fun (_, _, _, flags, _, _, _) ->
8320         not (List.mem NotInFish flags || List.mem NotInDocs flags)
8321     ) all_functions_sorted in
8322
8323   let rex = Str.regexp "C<guestfs_\\([^>]+\\)>" in
8324
8325   List.iter (
8326     fun (name, style, _, flags, _, _, longdesc) ->
8327       let longdesc =
8328         Str.global_substitute rex (
8329           fun s ->
8330             let sub =
8331               try Str.matched_group 1 s
8332               with Not_found ->
8333                 failwithf "error substituting C<guestfs_...> in longdesc of function %s" name in
8334             "C<" ^ replace_char sub '_' '-' ^ ">"
8335         ) longdesc in
8336       let name = replace_char name '_' '-' in
8337       let alias =
8338         try find_map (function FishAlias n -> Some n | _ -> None) flags
8339         with Not_found -> name in
8340
8341       pr "=head2 %s" name;
8342       if name <> alias then
8343         pr " | %s" alias;
8344       pr "\n";
8345       pr "\n";
8346       pr " %s" name;
8347       List.iter (
8348         function
8349         | Pathname n | Device n | Dev_or_Path n | String n ->
8350             pr " %s" n
8351         | OptString n -> pr " %s" n
8352         | StringList n | DeviceList n -> pr " '%s ...'" n
8353         | Bool _ -> pr " true|false"
8354         | Int n -> pr " %s" n
8355         | Int64 n -> pr " %s" n
8356         | FileIn n | FileOut n -> pr " (%s|-)" n
8357         | BufferIn n -> pr " %s" n
8358         | Key _ -> () (* keys are entered at a prompt *)
8359       ) (snd style);
8360       pr "\n";
8361       pr "\n";
8362       pr "%s\n\n" longdesc;
8363
8364       if List.exists (function FileIn _ | FileOut _ -> true
8365                       | _ -> false) (snd style) then
8366         pr "Use C<-> instead of a filename to read/write from stdin/stdout.\n\n";
8367
8368       if List.exists (function Key _ -> true | _ -> false) (snd style) then
8369         pr "This command has one or more key or passphrase parameters.
8370 Guestfish will prompt for these separately.\n\n";
8371
8372       if List.mem ProtocolLimitWarning flags then
8373         pr "%s\n\n" protocol_limit_warning;
8374
8375       if List.mem DangerWillRobinson flags then
8376         pr "%s\n\n" danger_will_robinson;
8377
8378       match deprecation_notice flags with
8379       | None -> ()
8380       | Some txt -> pr "%s\n\n" txt
8381   ) all_functions_sorted
8382
8383 (* Generate a C function prototype. *)
8384 and generate_prototype ?(extern = true) ?(static = false) ?(semicolon = true)
8385     ?(single_line = false) ?(newline = false) ?(in_daemon = false)
8386     ?(prefix = "")
8387     ?handle name style =
8388   if extern then pr "extern ";
8389   if static then pr "static ";
8390   (match fst style with
8391    | RErr -> pr "int "
8392    | RInt _ -> pr "int "
8393    | RInt64 _ -> pr "int64_t "
8394    | RBool _ -> pr "int "
8395    | RConstString _ | RConstOptString _ -> pr "const char *"
8396    | RString _ | RBufferOut _ -> pr "char *"
8397    | RStringList _ | RHashtable _ -> pr "char **"
8398    | RStruct (_, typ) ->
8399        if not in_daemon then pr "struct guestfs_%s *" typ
8400        else pr "guestfs_int_%s *" typ
8401    | RStructList (_, typ) ->
8402        if not in_daemon then pr "struct guestfs_%s_list *" typ
8403        else pr "guestfs_int_%s_list *" typ
8404   );
8405   let is_RBufferOut = match fst style with RBufferOut _ -> true | _ -> false in
8406   pr "%s%s (" prefix name;
8407   if handle = None && List.length (snd style) = 0 && not is_RBufferOut then
8408     pr "void"
8409   else (
8410     let comma = ref false in
8411     (match handle with
8412      | None -> ()
8413      | Some handle -> pr "guestfs_h *%s" handle; comma := true
8414     );
8415     let next () =
8416       if !comma then (
8417         if single_line then pr ", " else pr ",\n\t\t"
8418       );
8419       comma := true
8420     in
8421     List.iter (
8422       function
8423       | Pathname n
8424       | Device n | Dev_or_Path n
8425       | String n
8426       | OptString n
8427       | Key n ->
8428           next ();
8429           pr "const char *%s" n
8430       | StringList n | DeviceList n ->
8431           next ();
8432           pr "char *const *%s" n
8433       | Bool n -> next (); pr "int %s" n
8434       | Int n -> next (); pr "int %s" n
8435       | Int64 n -> next (); pr "int64_t %s" n
8436       | FileIn n
8437       | FileOut n ->
8438           if not in_daemon then (next (); pr "const char *%s" n)
8439       | BufferIn n ->
8440           next ();
8441           pr "const char *%s" n;
8442           next ();
8443           pr "size_t %s_size" n
8444     ) (snd style);
8445     if is_RBufferOut then (next (); pr "size_t *size_r");
8446   );
8447   pr ")";
8448   if semicolon then pr ";";
8449   if newline then pr "\n"
8450
8451 (* Generate C call arguments, eg "(handle, foo, bar)" *)
8452 and generate_c_call_args ?handle ?(decl = false) style =
8453   pr "(";
8454   let comma = ref false in
8455   let next () =
8456     if !comma then pr ", ";
8457     comma := true
8458   in
8459   (match handle with
8460    | None -> ()
8461    | Some handle -> pr "%s" handle; comma := true
8462   );
8463   List.iter (
8464     function
8465     | BufferIn n ->
8466         next ();
8467         pr "%s, %s_size" n n
8468     | arg ->
8469         next ();
8470         pr "%s" (name_of_argt arg)
8471   ) (snd style);
8472   (* For RBufferOut calls, add implicit &size parameter. *)
8473   if not decl then (
8474     match fst style with
8475     | RBufferOut _ ->
8476         next ();
8477         pr "&size"
8478     | _ -> ()
8479   );
8480   pr ")"
8481
8482 (* Generate the OCaml bindings interface. *)
8483 and generate_ocaml_mli () =
8484   generate_header OCamlStyle LGPLv2plus;
8485
8486   pr "\
8487 (** For API documentation you should refer to the C API
8488     in the guestfs(3) manual page.  The OCaml API uses almost
8489     exactly the same calls. *)
8490
8491 type t
8492 (** A [guestfs_h] handle. *)
8493
8494 exception Error of string
8495 (** This exception is raised when there is an error. *)
8496
8497 exception Handle_closed of string
8498 (** This exception is raised if you use a {!Guestfs.t} handle
8499     after calling {!close} on it.  The string is the name of
8500     the function. *)
8501
8502 val create : unit -> t
8503 (** Create a {!Guestfs.t} handle. *)
8504
8505 val close : t -> unit
8506 (** Close the {!Guestfs.t} handle and free up all resources used
8507     by it immediately.
8508
8509     Handles are closed by the garbage collector when they become
8510     unreferenced, but callers can call this in order to provide
8511     predictable cleanup. *)
8512
8513 ";
8514   generate_ocaml_structure_decls ();
8515
8516   (* The actions. *)
8517   List.iter (
8518     fun (name, style, _, _, _, shortdesc, _) ->
8519       generate_ocaml_prototype name style;
8520       pr "(** %s *)\n" shortdesc;
8521       pr "\n"
8522   ) all_functions_sorted
8523
8524 (* Generate the OCaml bindings implementation. *)
8525 and generate_ocaml_ml () =
8526   generate_header OCamlStyle LGPLv2plus;
8527
8528   pr "\
8529 type t
8530
8531 exception Error of string
8532 exception Handle_closed of string
8533
8534 external create : unit -> t = \"ocaml_guestfs_create\"
8535 external close : t -> unit = \"ocaml_guestfs_close\"
8536
8537 (* Give the exceptions names, so they can be raised from the C code. *)
8538 let () =
8539   Callback.register_exception \"ocaml_guestfs_error\" (Error \"\");
8540   Callback.register_exception \"ocaml_guestfs_closed\" (Handle_closed \"\")
8541
8542 ";
8543
8544   generate_ocaml_structure_decls ();
8545
8546   (* The actions. *)
8547   List.iter (
8548     fun (name, style, _, _, _, shortdesc, _) ->
8549       generate_ocaml_prototype ~is_external:true name style;
8550   ) all_functions_sorted
8551
8552 (* Generate the OCaml bindings C implementation. *)
8553 and generate_ocaml_c () =
8554   generate_header CStyle LGPLv2plus;
8555
8556   pr "\
8557 #include <stdio.h>
8558 #include <stdlib.h>
8559 #include <string.h>
8560
8561 #include <caml/config.h>
8562 #include <caml/alloc.h>
8563 #include <caml/callback.h>
8564 #include <caml/fail.h>
8565 #include <caml/memory.h>
8566 #include <caml/mlvalues.h>
8567 #include <caml/signals.h>
8568
8569 #include \"guestfs.h\"
8570
8571 #include \"guestfs_c.h\"
8572
8573 /* Copy a hashtable of string pairs into an assoc-list.  We return
8574  * the list in reverse order, but hashtables aren't supposed to be
8575  * ordered anyway.
8576  */
8577 static CAMLprim value
8578 copy_table (char * const * argv)
8579 {
8580   CAMLparam0 ();
8581   CAMLlocal5 (rv, pairv, kv, vv, cons);
8582   size_t i;
8583
8584   rv = Val_int (0);
8585   for (i = 0; argv[i] != NULL; i += 2) {
8586     kv = caml_copy_string (argv[i]);
8587     vv = caml_copy_string (argv[i+1]);
8588     pairv = caml_alloc (2, 0);
8589     Store_field (pairv, 0, kv);
8590     Store_field (pairv, 1, vv);
8591     cons = caml_alloc (2, 0);
8592     Store_field (cons, 1, rv);
8593     rv = cons;
8594     Store_field (cons, 0, pairv);
8595   }
8596
8597   CAMLreturn (rv);
8598 }
8599
8600 ";
8601
8602   (* Struct copy functions. *)
8603
8604   let emit_ocaml_copy_list_function typ =
8605     pr "static CAMLprim value\n";
8606     pr "copy_%s_list (const struct guestfs_%s_list *%ss)\n" typ typ typ;
8607     pr "{\n";
8608     pr "  CAMLparam0 ();\n";
8609     pr "  CAMLlocal2 (rv, v);\n";
8610     pr "  unsigned int i;\n";
8611     pr "\n";
8612     pr "  if (%ss->len == 0)\n" typ;
8613     pr "    CAMLreturn (Atom (0));\n";
8614     pr "  else {\n";
8615     pr "    rv = caml_alloc (%ss->len, 0);\n" typ;
8616     pr "    for (i = 0; i < %ss->len; ++i) {\n" typ;
8617     pr "      v = copy_%s (&%ss->val[i]);\n" typ typ;
8618     pr "      caml_modify (&Field (rv, i), v);\n";
8619     pr "    }\n";
8620     pr "    CAMLreturn (rv);\n";
8621     pr "  }\n";
8622     pr "}\n";
8623     pr "\n";
8624   in
8625
8626   List.iter (
8627     fun (typ, cols) ->
8628       let has_optpercent_col =
8629         List.exists (function (_, FOptPercent) -> true | _ -> false) cols in
8630
8631       pr "static CAMLprim value\n";
8632       pr "copy_%s (const struct guestfs_%s *%s)\n" typ typ typ;
8633       pr "{\n";
8634       pr "  CAMLparam0 ();\n";
8635       if has_optpercent_col then
8636         pr "  CAMLlocal3 (rv, v, v2);\n"
8637       else
8638         pr "  CAMLlocal2 (rv, v);\n";
8639       pr "\n";
8640       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
8641       iteri (
8642         fun i col ->
8643           (match col with
8644            | name, FString ->
8645                pr "  v = caml_copy_string (%s->%s);\n" typ name
8646            | name, FBuffer ->
8647                pr "  v = caml_alloc_string (%s->%s_len);\n" typ name;
8648                pr "  memcpy (String_val (v), %s->%s, %s->%s_len);\n"
8649                  typ name typ name
8650            | name, FUUID ->
8651                pr "  v = caml_alloc_string (32);\n";
8652                pr "  memcpy (String_val (v), %s->%s, 32);\n" typ name
8653            | name, (FBytes|FInt64|FUInt64) ->
8654                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
8655            | name, (FInt32|FUInt32) ->
8656                pr "  v = caml_copy_int32 (%s->%s);\n" typ name
8657            | name, FOptPercent ->
8658                pr "  if (%s->%s >= 0) { /* Some %s */\n" typ name name;
8659                pr "    v2 = caml_copy_double (%s->%s);\n" typ name;
8660                pr "    v = caml_alloc (1, 0);\n";
8661                pr "    Store_field (v, 0, v2);\n";
8662                pr "  } else /* None */\n";
8663                pr "    v = Val_int (0);\n";
8664            | name, FChar ->
8665                pr "  v = Val_int (%s->%s);\n" typ name
8666           );
8667           pr "  Store_field (rv, %d, v);\n" i
8668       ) cols;
8669       pr "  CAMLreturn (rv);\n";
8670       pr "}\n";
8671       pr "\n";
8672   ) structs;
8673
8674   (* Emit a copy_TYPE_list function definition only if that function is used. *)
8675   List.iter (
8676     function
8677     | typ, (RStructListOnly | RStructAndList) ->
8678         (* generate the function for typ *)
8679         emit_ocaml_copy_list_function typ
8680     | typ, _ -> () (* empty *)
8681   ) (rstructs_used_by all_functions);
8682
8683   (* The wrappers. *)
8684   List.iter (
8685     fun (name, style, _, _, _, _, _) ->
8686       pr "/* Automatically generated wrapper for function\n";
8687       pr " * ";
8688       generate_ocaml_prototype name style;
8689       pr " */\n";
8690       pr "\n";
8691
8692       let params =
8693         "gv" :: List.map (fun arg -> name_of_argt arg ^ "v") (snd style) in
8694
8695       let needs_extra_vs =
8696         match fst style with RConstOptString _ -> true | _ -> false in
8697
8698       pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
8699       pr "CAMLprim value ocaml_guestfs_%s (value %s" name (List.hd params);
8700       List.iter (pr ", value %s") (List.tl params); pr ");\n";
8701       pr "\n";
8702
8703       pr "CAMLprim value\n";
8704       pr "ocaml_guestfs_%s (value %s" name (List.hd params);
8705       List.iter (pr ", value %s") (List.tl params);
8706       pr ")\n";
8707       pr "{\n";
8708
8709       (match params with
8710        | [p1; p2; p3; p4; p5] ->
8711            pr "  CAMLparam5 (%s);\n" (String.concat ", " params)
8712        | p1 :: p2 :: p3 :: p4 :: p5 :: rest ->
8713            pr "  CAMLparam5 (%s);\n" (String.concat ", " [p1; p2; p3; p4; p5]);
8714            pr "  CAMLxparam%d (%s);\n"
8715              (List.length rest) (String.concat ", " rest)
8716        | ps ->
8717            pr "  CAMLparam%d (%s);\n" (List.length ps) (String.concat ", " ps)
8718       );
8719       if not needs_extra_vs then
8720         pr "  CAMLlocal1 (rv);\n"
8721       else
8722         pr "  CAMLlocal3 (rv, v, v2);\n";
8723       pr "\n";
8724
8725       pr "  guestfs_h *g = Guestfs_val (gv);\n";
8726       pr "  if (g == NULL)\n";
8727       pr "    ocaml_guestfs_raise_closed (\"%s\");\n" name;
8728       pr "\n";
8729
8730       List.iter (
8731         function
8732         | Pathname n
8733         | Device n | Dev_or_Path n
8734         | String n
8735         | FileIn n
8736         | FileOut n
8737         | Key n ->
8738             (* Copy strings in case the GC moves them: RHBZ#604691 *)
8739             pr "  char *%s = guestfs_safe_strdup (g, String_val (%sv));\n" n n
8740         | OptString n ->
8741             pr "  char *%s =\n" n;
8742             pr "    %sv != Val_int (0) ?" n;
8743             pr "      guestfs_safe_strdup (g, String_val (Field (%sv, 0))) : NULL;\n" n
8744         | BufferIn n ->
8745             pr "  size_t %s_size = caml_string_length (%sv);\n" n n;
8746             pr "  char *%s = guestfs_safe_memdup (g, String_val (%sv), %s_size);\n" n n n
8747         | StringList n | DeviceList n ->
8748             pr "  char **%s = ocaml_guestfs_strings_val (g, %sv);\n" n n
8749         | Bool n ->
8750             pr "  int %s = Bool_val (%sv);\n" n n
8751         | Int n ->
8752             pr "  int %s = Int_val (%sv);\n" n n
8753         | Int64 n ->
8754             pr "  int64_t %s = Int64_val (%sv);\n" n n
8755       ) (snd style);
8756       let error_code =
8757         match fst style with
8758         | RErr -> pr "  int r;\n"; "-1"
8759         | RInt _ -> pr "  int r;\n"; "-1"
8760         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
8761         | RBool _ -> pr "  int r;\n"; "-1"
8762         | RConstString _ | RConstOptString _ ->
8763             pr "  const char *r;\n"; "NULL"
8764         | RString _ -> pr "  char *r;\n"; "NULL"
8765         | RStringList _ ->
8766             pr "  size_t i;\n";
8767             pr "  char **r;\n";
8768             "NULL"
8769         | RStruct (_, typ) ->
8770             pr "  struct guestfs_%s *r;\n" typ; "NULL"
8771         | RStructList (_, typ) ->
8772             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
8773         | RHashtable _ ->
8774             pr "  size_t i;\n";
8775             pr "  char **r;\n";
8776             "NULL"
8777         | RBufferOut _ ->
8778             pr "  char *r;\n";
8779             pr "  size_t size;\n";
8780             "NULL" in
8781       pr "\n";
8782
8783       pr "  caml_enter_blocking_section ();\n";
8784       pr "  r = guestfs_%s " name;
8785       generate_c_call_args ~handle:"g" style;
8786       pr ";\n";
8787       pr "  caml_leave_blocking_section ();\n";
8788
8789       (* Free strings if we copied them above. *)
8790       List.iter (
8791         function
8792         | Pathname n | Device n | Dev_or_Path n | String n | OptString n
8793         | FileIn n | FileOut n | BufferIn n | Key n ->
8794             pr "  free (%s);\n" n
8795         | StringList n | DeviceList n ->
8796             pr "  ocaml_guestfs_free_strings (%s);\n" n;
8797         | Bool _ | Int _ | Int64 _ -> ()
8798       ) (snd style);
8799
8800       pr "  if (r == %s)\n" error_code;
8801       pr "    ocaml_guestfs_raise_error (g, \"%s\");\n" name;
8802       pr "\n";
8803
8804       (match fst style with
8805        | RErr -> pr "  rv = Val_unit;\n"
8806        | RInt _ -> pr "  rv = Val_int (r);\n"
8807        | RInt64 _ ->
8808            pr "  rv = caml_copy_int64 (r);\n"
8809        | RBool _ -> pr "  rv = Val_bool (r);\n"
8810        | RConstString _ ->
8811            pr "  rv = caml_copy_string (r);\n"
8812        | RConstOptString _ ->
8813            pr "  if (r) { /* Some string */\n";
8814            pr "    v = caml_alloc (1, 0);\n";
8815            pr "    v2 = caml_copy_string (r);\n";
8816            pr "    Store_field (v, 0, v2);\n";
8817            pr "  } else /* None */\n";
8818            pr "    v = Val_int (0);\n";
8819        | RString _ ->
8820            pr "  rv = caml_copy_string (r);\n";
8821            pr "  free (r);\n"
8822        | RStringList _ ->
8823            pr "  rv = caml_copy_string_array ((const char **) r);\n";
8824            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
8825            pr "  free (r);\n"
8826        | RStruct (_, typ) ->
8827            pr "  rv = copy_%s (r);\n" typ;
8828            pr "  guestfs_free_%s (r);\n" typ;
8829        | RStructList (_, typ) ->
8830            pr "  rv = copy_%s_list (r);\n" typ;
8831            pr "  guestfs_free_%s_list (r);\n" typ;
8832        | RHashtable _ ->
8833            pr "  rv = copy_table (r);\n";
8834            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
8835            pr "  free (r);\n";
8836        | RBufferOut _ ->
8837            pr "  rv = caml_alloc_string (size);\n";
8838            pr "  memcpy (String_val (rv), r, size);\n";
8839       );
8840
8841       pr "  CAMLreturn (rv);\n";
8842       pr "}\n";
8843       pr "\n";
8844
8845       if List.length params > 5 then (
8846         pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
8847         pr "CAMLprim value ";
8848         pr "ocaml_guestfs_%s_byte (value *argv, int argn);\n" name;
8849         pr "CAMLprim value\n";
8850         pr "ocaml_guestfs_%s_byte (value *argv, int argn)\n" name;
8851         pr "{\n";
8852         pr "  return ocaml_guestfs_%s (argv[0]" name;
8853         iteri (fun i _ -> pr ", argv[%d]" i) (List.tl params);
8854         pr ");\n";
8855         pr "}\n";
8856         pr "\n"
8857       )
8858   ) all_functions_sorted
8859
8860 and generate_ocaml_structure_decls () =
8861   List.iter (
8862     fun (typ, cols) ->
8863       pr "type %s = {\n" typ;
8864       List.iter (
8865         function
8866         | name, FString -> pr "  %s : string;\n" name
8867         | name, FBuffer -> pr "  %s : string;\n" name
8868         | name, FUUID -> pr "  %s : string;\n" name
8869         | name, (FBytes|FInt64|FUInt64) -> pr "  %s : int64;\n" name
8870         | name, (FInt32|FUInt32) -> pr "  %s : int32;\n" name
8871         | name, FChar -> pr "  %s : char;\n" name
8872         | name, FOptPercent -> pr "  %s : float option;\n" name
8873       ) cols;
8874       pr "}\n";
8875       pr "\n"
8876   ) structs
8877
8878 and generate_ocaml_prototype ?(is_external = false) name style =
8879   if is_external then pr "external " else pr "val ";
8880   pr "%s : t -> " name;
8881   List.iter (
8882     function
8883     | Pathname _ | Device _ | Dev_or_Path _ | String _ | FileIn _ | FileOut _
8884     | BufferIn _ | Key _ -> pr "string -> "
8885     | OptString _ -> pr "string option -> "
8886     | StringList _ | DeviceList _ -> pr "string array -> "
8887     | Bool _ -> pr "bool -> "
8888     | Int _ -> pr "int -> "
8889     | Int64 _ -> pr "int64 -> "
8890   ) (snd style);
8891   (match fst style with
8892    | RErr -> pr "unit" (* all errors are turned into exceptions *)
8893    | RInt _ -> pr "int"
8894    | RInt64 _ -> pr "int64"
8895    | RBool _ -> pr "bool"
8896    | RConstString _ -> pr "string"
8897    | RConstOptString _ -> pr "string option"
8898    | RString _ | RBufferOut _ -> pr "string"
8899    | RStringList _ -> pr "string array"
8900    | RStruct (_, typ) -> pr "%s" typ
8901    | RStructList (_, typ) -> pr "%s array" typ
8902    | RHashtable _ -> pr "(string * string) list"
8903   );
8904   if is_external then (
8905     pr " = ";
8906     if List.length (snd style) + 1 > 5 then
8907       pr "\"ocaml_guestfs_%s_byte\" " name;
8908     pr "\"ocaml_guestfs_%s\"" name
8909   );
8910   pr "\n"
8911
8912 (* Generate Perl xs code, a sort of crazy variation of C with macros. *)
8913 and generate_perl_xs () =
8914   generate_header CStyle LGPLv2plus;
8915
8916   pr "\
8917 #include \"EXTERN.h\"
8918 #include \"perl.h\"
8919 #include \"XSUB.h\"
8920
8921 #include <guestfs.h>
8922
8923 #ifndef PRId64
8924 #define PRId64 \"lld\"
8925 #endif
8926
8927 static SV *
8928 my_newSVll(long long val) {
8929 #ifdef USE_64_BIT_ALL
8930   return newSViv(val);
8931 #else
8932   char buf[100];
8933   int len;
8934   len = snprintf(buf, 100, \"%%\" PRId64, val);
8935   return newSVpv(buf, len);
8936 #endif
8937 }
8938
8939 #ifndef PRIu64
8940 #define PRIu64 \"llu\"
8941 #endif
8942
8943 static SV *
8944 my_newSVull(unsigned long long val) {
8945 #ifdef USE_64_BIT_ALL
8946   return newSVuv(val);
8947 #else
8948   char buf[100];
8949   int len;
8950   len = snprintf(buf, 100, \"%%\" PRIu64, val);
8951   return newSVpv(buf, len);
8952 #endif
8953 }
8954
8955 /* http://www.perlmonks.org/?node_id=680842 */
8956 static char **
8957 XS_unpack_charPtrPtr (SV *arg) {
8958   char **ret;
8959   AV *av;
8960   I32 i;
8961
8962   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
8963     croak (\"array reference expected\");
8964
8965   av = (AV *)SvRV (arg);
8966   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
8967   if (!ret)
8968     croak (\"malloc failed\");
8969
8970   for (i = 0; i <= av_len (av); i++) {
8971     SV **elem = av_fetch (av, i, 0);
8972
8973     if (!elem || !*elem)
8974       croak (\"missing element in list\");
8975
8976     ret[i] = SvPV_nolen (*elem);
8977   }
8978
8979   ret[i] = NULL;
8980
8981   return ret;
8982 }
8983
8984 MODULE = Sys::Guestfs  PACKAGE = Sys::Guestfs
8985
8986 PROTOTYPES: ENABLE
8987
8988 guestfs_h *
8989 _create ()
8990    CODE:
8991       RETVAL = guestfs_create ();
8992       if (!RETVAL)
8993         croak (\"could not create guestfs handle\");
8994       guestfs_set_error_handler (RETVAL, NULL, NULL);
8995  OUTPUT:
8996       RETVAL
8997
8998 void
8999 DESTROY (sv)
9000       SV *sv;
9001  PPCODE:
9002       /* For the 'g' argument above we do the conversion explicitly and
9003        * don't rely on the typemap, because if the handle has been
9004        * explicitly closed we don't want the typemap conversion to
9005        * display an error.
9006        */
9007       HV *hv = (HV *) SvRV (sv);
9008       SV **svp = hv_fetch (hv, \"_g\", 2, 0);
9009       if (svp != NULL) {
9010         guestfs_h *g = (guestfs_h *) SvIV (*svp);
9011         assert (g != NULL);
9012         guestfs_close (g);
9013       }
9014
9015 void
9016 close (g)
9017       guestfs_h *g;
9018  PPCODE:
9019       guestfs_close (g);
9020       /* Avoid double-free in DESTROY method. */
9021       HV *hv = (HV *) SvRV (ST(0));
9022       (void) hv_delete (hv, \"_g\", 2, G_DISCARD);
9023
9024 ";
9025
9026   List.iter (
9027     fun (name, style, _, _, _, _, _) ->
9028       (match fst style with
9029        | RErr -> pr "void\n"
9030        | RInt _ -> pr "SV *\n"
9031        | RInt64 _ -> pr "SV *\n"
9032        | RBool _ -> pr "SV *\n"
9033        | RConstString _ -> pr "SV *\n"
9034        | RConstOptString _ -> pr "SV *\n"
9035        | RString _ -> pr "SV *\n"
9036        | RBufferOut _ -> pr "SV *\n"
9037        | RStringList _
9038        | RStruct _ | RStructList _
9039        | RHashtable _ ->
9040            pr "void\n" (* all lists returned implictly on the stack *)
9041       );
9042       (* Call and arguments. *)
9043       pr "%s (g" name;
9044       List.iter (
9045         fun arg -> pr ", %s" (name_of_argt arg)
9046       ) (snd style);
9047       pr ")\n";
9048       pr "      guestfs_h *g;\n";
9049       iteri (
9050         fun i ->
9051           function
9052           | Pathname n | Device n | Dev_or_Path n | String n
9053           | FileIn n | FileOut n | Key n ->
9054               pr "      char *%s;\n" n
9055           | BufferIn n ->
9056               pr "      char *%s;\n" n;
9057               pr "      size_t %s_size = SvCUR (ST(%d));\n" n (i+1)
9058           | OptString n ->
9059               (* http://www.perlmonks.org/?node_id=554277
9060                * Note that the implicit handle argument means we have
9061                * to add 1 to the ST(x) operator.
9062                *)
9063               pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n (i+1) (i+1)
9064           | StringList n | DeviceList n -> pr "      char **%s;\n" n
9065           | Bool n -> pr "      int %s;\n" n
9066           | Int n -> pr "      int %s;\n" n
9067           | Int64 n -> pr "      int64_t %s;\n" n
9068       ) (snd style);
9069
9070       let do_cleanups () =
9071         List.iter (
9072           function
9073           | Pathname _ | Device _ | Dev_or_Path _ | String _ | OptString _
9074           | Bool _ | Int _ | Int64 _
9075           | FileIn _ | FileOut _
9076           | BufferIn _ | Key _ -> ()
9077           | StringList n | DeviceList n -> pr "      free (%s);\n" n
9078         ) (snd style)
9079       in
9080
9081       (* Code. *)
9082       (match fst style with
9083        | RErr ->
9084            pr "PREINIT:\n";
9085            pr "      int r;\n";
9086            pr " PPCODE:\n";
9087            pr "      r = guestfs_%s " name;
9088            generate_c_call_args ~handle:"g" style;
9089            pr ";\n";
9090            do_cleanups ();
9091            pr "      if (r == -1)\n";
9092            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9093        | RInt n
9094        | RBool n ->
9095            pr "PREINIT:\n";
9096            pr "      int %s;\n" n;
9097            pr "   CODE:\n";
9098            pr "      %s = guestfs_%s " n name;
9099            generate_c_call_args ~handle:"g" style;
9100            pr ";\n";
9101            do_cleanups ();
9102            pr "      if (%s == -1)\n" n;
9103            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9104            pr "      RETVAL = newSViv (%s);\n" n;
9105            pr " OUTPUT:\n";
9106            pr "      RETVAL\n"
9107        | RInt64 n ->
9108            pr "PREINIT:\n";
9109            pr "      int64_t %s;\n" n;
9110            pr "   CODE:\n";
9111            pr "      %s = guestfs_%s " n name;
9112            generate_c_call_args ~handle:"g" style;
9113            pr ";\n";
9114            do_cleanups ();
9115            pr "      if (%s == -1)\n" n;
9116            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9117            pr "      RETVAL = my_newSVll (%s);\n" n;
9118            pr " OUTPUT:\n";
9119            pr "      RETVAL\n"
9120        | RConstString n ->
9121            pr "PREINIT:\n";
9122            pr "      const char *%s;\n" n;
9123            pr "   CODE:\n";
9124            pr "      %s = guestfs_%s " n name;
9125            generate_c_call_args ~handle:"g" style;
9126            pr ";\n";
9127            do_cleanups ();
9128            pr "      if (%s == NULL)\n" n;
9129            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9130            pr "      RETVAL = newSVpv (%s, 0);\n" n;
9131            pr " OUTPUT:\n";
9132            pr "      RETVAL\n"
9133        | RConstOptString n ->
9134            pr "PREINIT:\n";
9135            pr "      const char *%s;\n" n;
9136            pr "   CODE:\n";
9137            pr "      %s = guestfs_%s " n name;
9138            generate_c_call_args ~handle:"g" style;
9139            pr ";\n";
9140            do_cleanups ();
9141            pr "      if (%s == NULL)\n" n;
9142            pr "        RETVAL = &PL_sv_undef;\n";
9143            pr "      else\n";
9144            pr "        RETVAL = newSVpv (%s, 0);\n" n;
9145            pr " OUTPUT:\n";
9146            pr "      RETVAL\n"
9147        | RString n ->
9148            pr "PREINIT:\n";
9149            pr "      char *%s;\n" n;
9150            pr "   CODE:\n";
9151            pr "      %s = guestfs_%s " n name;
9152            generate_c_call_args ~handle:"g" style;
9153            pr ";\n";
9154            do_cleanups ();
9155            pr "      if (%s == NULL)\n" n;
9156            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9157            pr "      RETVAL = newSVpv (%s, 0);\n" n;
9158            pr "      free (%s);\n" n;
9159            pr " OUTPUT:\n";
9160            pr "      RETVAL\n"
9161        | RStringList n | RHashtable n ->
9162            pr "PREINIT:\n";
9163            pr "      char **%s;\n" n;
9164            pr "      size_t i, n;\n";
9165            pr " PPCODE:\n";
9166            pr "      %s = guestfs_%s " n name;
9167            generate_c_call_args ~handle:"g" style;
9168            pr ";\n";
9169            do_cleanups ();
9170            pr "      if (%s == NULL)\n" n;
9171            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9172            pr "      for (n = 0; %s[n] != NULL; ++n) /**/;\n" n;
9173            pr "      EXTEND (SP, n);\n";
9174            pr "      for (i = 0; i < n; ++i) {\n";
9175            pr "        PUSHs (sv_2mortal (newSVpv (%s[i], 0)));\n" n;
9176            pr "        free (%s[i]);\n" n;
9177            pr "      }\n";
9178            pr "      free (%s);\n" n;
9179        | RStruct (n, typ) ->
9180            let cols = cols_of_struct typ in
9181            generate_perl_struct_code typ cols name style n do_cleanups
9182        | RStructList (n, typ) ->
9183            let cols = cols_of_struct typ in
9184            generate_perl_struct_list_code typ cols name style n do_cleanups
9185        | RBufferOut n ->
9186            pr "PREINIT:\n";
9187            pr "      char *%s;\n" n;
9188            pr "      size_t size;\n";
9189            pr "   CODE:\n";
9190            pr "      %s = guestfs_%s " n name;
9191            generate_c_call_args ~handle:"g" style;
9192            pr ";\n";
9193            do_cleanups ();
9194            pr "      if (%s == NULL)\n" n;
9195            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9196            pr "      RETVAL = newSVpvn (%s, size);\n" n;
9197            pr "      free (%s);\n" n;
9198            pr " OUTPUT:\n";
9199            pr "      RETVAL\n"
9200       );
9201
9202       pr "\n"
9203   ) all_functions
9204
9205 and generate_perl_struct_list_code typ cols name style n do_cleanups =
9206   pr "PREINIT:\n";
9207   pr "      struct guestfs_%s_list *%s;\n" typ n;
9208   pr "      size_t i;\n";
9209   pr "      HV *hv;\n";
9210   pr " PPCODE:\n";
9211   pr "      %s = guestfs_%s " n name;
9212   generate_c_call_args ~handle:"g" style;
9213   pr ";\n";
9214   do_cleanups ();
9215   pr "      if (%s == NULL)\n" n;
9216   pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9217   pr "      EXTEND (SP, %s->len);\n" n;
9218   pr "      for (i = 0; i < %s->len; ++i) {\n" n;
9219   pr "        hv = newHV ();\n";
9220   List.iter (
9221     function
9222     | name, FString ->
9223         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 0), 0);\n"
9224           name (String.length name) n name
9225     | name, FUUID ->
9226         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 32), 0);\n"
9227           name (String.length name) n name
9228     | name, FBuffer ->
9229         pr "        (void) hv_store (hv, \"%s\", %d, newSVpvn (%s->val[i].%s, %s->val[i].%s_len), 0);\n"
9230           name (String.length name) n name n name
9231     | name, (FBytes|FUInt64) ->
9232         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVull (%s->val[i].%s), 0);\n"
9233           name (String.length name) n name
9234     | name, FInt64 ->
9235         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVll (%s->val[i].%s), 0);\n"
9236           name (String.length name) n name
9237     | name, (FInt32|FUInt32) ->
9238         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
9239           name (String.length name) n name
9240     | name, FChar ->
9241         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (&%s->val[i].%s, 1), 0);\n"
9242           name (String.length name) n name
9243     | name, FOptPercent ->
9244         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
9245           name (String.length name) n name
9246   ) cols;
9247   pr "        PUSHs (sv_2mortal (newRV ((SV *) hv)));\n";
9248   pr "      }\n";
9249   pr "      guestfs_free_%s_list (%s);\n" typ n
9250
9251 and generate_perl_struct_code typ cols name style n do_cleanups =
9252   pr "PREINIT:\n";
9253   pr "      struct guestfs_%s *%s;\n" typ n;
9254   pr " PPCODE:\n";
9255   pr "      %s = guestfs_%s " n name;
9256   generate_c_call_args ~handle:"g" style;
9257   pr ";\n";
9258   do_cleanups ();
9259   pr "      if (%s == NULL)\n" n;
9260   pr "        croak (\"%%s\", guestfs_last_error (g));\n";
9261   pr "      EXTEND (SP, 2 * %d);\n" (List.length cols);
9262   List.iter (
9263     fun ((name, _) as col) ->
9264       pr "      PUSHs (sv_2mortal (newSVpv (\"%s\", 0)));\n" name;
9265
9266       match col with
9267       | name, FString ->
9268           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 0)));\n"
9269             n name
9270       | name, FBuffer ->
9271           pr "      PUSHs (sv_2mortal (newSVpvn (%s->%s, %s->%s_len)));\n"
9272             n name n name
9273       | name, FUUID ->
9274           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 32)));\n"
9275             n name
9276       | name, (FBytes|FUInt64) ->
9277           pr "      PUSHs (sv_2mortal (my_newSVull (%s->%s)));\n"
9278             n name
9279       | name, FInt64 ->
9280           pr "      PUSHs (sv_2mortal (my_newSVll (%s->%s)));\n"
9281             n name
9282       | name, (FInt32|FUInt32) ->
9283           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
9284             n name
9285       | name, FChar ->
9286           pr "      PUSHs (sv_2mortal (newSVpv (&%s->%s, 1)));\n"
9287             n name
9288       | name, FOptPercent ->
9289           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
9290             n name
9291   ) cols;
9292   pr "      free (%s);\n" n
9293
9294 (* Generate Sys/Guestfs.pm. *)
9295 and generate_perl_pm () =
9296   generate_header HashStyle LGPLv2plus;
9297
9298   pr "\
9299 =pod
9300
9301 =head1 NAME
9302
9303 Sys::Guestfs - Perl bindings for libguestfs
9304
9305 =head1 SYNOPSIS
9306
9307  use Sys::Guestfs;
9308
9309  my $h = Sys::Guestfs->new ();
9310  $h->add_drive ('guest.img');
9311  $h->launch ();
9312  $h->mount ('/dev/sda1', '/');
9313  $h->touch ('/hello');
9314  $h->sync ();
9315
9316 =head1 DESCRIPTION
9317
9318 The C<Sys::Guestfs> module provides a Perl XS binding to the
9319 libguestfs API for examining and modifying virtual machine
9320 disk images.
9321
9322 Amongst the things this is good for: making batch configuration
9323 changes to guests, getting disk used/free statistics (see also:
9324 virt-df), migrating between virtualization systems (see also:
9325 virt-p2v), performing partial backups, performing partial guest
9326 clones, cloning guests and changing registry/UUID/hostname info, and
9327 much else besides.
9328
9329 Libguestfs uses Linux kernel and qemu code, and can access any type of
9330 guest filesystem that Linux and qemu can, including but not limited
9331 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
9332 schemes, qcow, qcow2, vmdk.
9333
9334 Libguestfs provides ways to enumerate guest storage (eg. partitions,
9335 LVs, what filesystem is in each LV, etc.).  It can also run commands
9336 in the context of the guest.  Also you can access filesystems over
9337 FUSE.
9338
9339 See also L<Sys::Guestfs::Lib(3)> for a set of useful library
9340 functions for using libguestfs from Perl, including integration
9341 with libvirt.
9342
9343 =head1 ERRORS
9344
9345 All errors turn into calls to C<croak> (see L<Carp(3)>).
9346
9347 =head1 METHODS
9348
9349 =over 4
9350
9351 =cut
9352
9353 package Sys::Guestfs;
9354
9355 use strict;
9356 use warnings;
9357
9358 # This version number changes whenever a new function
9359 # is added to the libguestfs API.  It is not directly
9360 # related to the libguestfs version number.
9361 use vars qw($VERSION);
9362 $VERSION = '0.%d';
9363
9364 require XSLoader;
9365 XSLoader::load ('Sys::Guestfs');
9366
9367 =item $h = Sys::Guestfs->new ();
9368
9369 Create a new guestfs handle.
9370
9371 =cut
9372
9373 sub new {
9374   my $proto = shift;
9375   my $class = ref ($proto) || $proto;
9376
9377   my $g = Sys::Guestfs::_create ();
9378   my $self = { _g => $g };
9379   bless $self, $class;
9380   return $self;
9381 }
9382
9383 =item $h->close ();
9384
9385 Explicitly close the guestfs handle.
9386
9387 B<Note:> You should not usually call this function.  The handle will
9388 be closed implicitly when its reference count goes to zero (eg.
9389 when it goes out of scope or the program ends).  This call is
9390 only required in some exceptional cases, such as where the program
9391 may contain cached references to the handle 'somewhere' and you
9392 really have to have the close happen right away.  After calling
9393 C<close> the program must not call any method (including C<close>)
9394 on the handle (but the implicit call to C<DESTROY> that happens
9395 when the final reference is cleaned up is OK).
9396
9397 =cut
9398
9399 " max_proc_nr;
9400
9401   (* Actions.  We only need to print documentation for these as
9402    * they are pulled in from the XS code automatically.
9403    *)
9404   List.iter (
9405     fun (name, style, _, flags, _, _, longdesc) ->
9406       if not (List.mem NotInDocs flags) then (
9407         let longdesc = replace_str longdesc "C<guestfs_" "C<$h-E<gt>" in
9408         pr "=item ";
9409         generate_perl_prototype name style;
9410         pr "\n\n";
9411         pr "%s\n\n" longdesc;
9412         if List.mem ProtocolLimitWarning flags then
9413           pr "%s\n\n" protocol_limit_warning;
9414         if List.mem DangerWillRobinson flags then
9415           pr "%s\n\n" danger_will_robinson;
9416         match deprecation_notice flags with
9417         | None -> ()
9418         | Some txt -> pr "%s\n\n" txt
9419       )
9420   ) all_functions_sorted;
9421
9422   (* End of file. *)
9423   pr "\
9424 =cut
9425
9426 1;
9427
9428 =back
9429
9430 =head1 COPYRIGHT
9431
9432 Copyright (C) %s Red Hat Inc.
9433
9434 =head1 LICENSE
9435
9436 Please see the file COPYING.LIB for the full license.
9437
9438 =head1 SEE ALSO
9439
9440 L<guestfs(3)>,
9441 L<guestfish(1)>,
9442 L<http://libguestfs.org>,
9443 L<Sys::Guestfs::Lib(3)>.
9444
9445 =cut
9446 " copyright_years
9447
9448 and generate_perl_prototype name style =
9449   (match fst style with
9450    | RErr -> ()
9451    | RBool n
9452    | RInt n
9453    | RInt64 n
9454    | RConstString n
9455    | RConstOptString n
9456    | RString n
9457    | RBufferOut n -> pr "$%s = " n
9458    | RStruct (n,_)
9459    | RHashtable n -> pr "%%%s = " n
9460    | RStringList n
9461    | RStructList (n,_) -> pr "@%s = " n
9462   );
9463   pr "$h->%s (" name;
9464   let comma = ref false in
9465   List.iter (
9466     fun arg ->
9467       if !comma then pr ", ";
9468       comma := true;
9469       match arg with
9470       | Pathname n | Device n | Dev_or_Path n | String n
9471       | OptString n | Bool n | Int n | Int64 n | FileIn n | FileOut n
9472       | BufferIn n | Key n ->
9473           pr "$%s" n
9474       | StringList n | DeviceList n ->
9475           pr "\\@%s" n
9476   ) (snd style);
9477   pr ");"
9478
9479 (* Generate Python C module. *)
9480 and generate_python_c () =
9481   generate_header CStyle LGPLv2plus;
9482
9483   pr "\
9484 #define PY_SSIZE_T_CLEAN 1
9485 #include <Python.h>
9486
9487 #if PY_VERSION_HEX < 0x02050000
9488 typedef int Py_ssize_t;
9489 #define PY_SSIZE_T_MAX INT_MAX
9490 #define PY_SSIZE_T_MIN INT_MIN
9491 #endif
9492
9493 #include <stdio.h>
9494 #include <stdlib.h>
9495 #include <assert.h>
9496
9497 #include \"guestfs.h\"
9498
9499 #ifndef HAVE_PYCAPSULE_NEW
9500 typedef struct {
9501   PyObject_HEAD
9502   guestfs_h *g;
9503 } Pyguestfs_Object;
9504 #endif
9505
9506 static guestfs_h *
9507 get_handle (PyObject *obj)
9508 {
9509   assert (obj);
9510   assert (obj != Py_None);
9511 #ifndef HAVE_PYCAPSULE_NEW
9512   return ((Pyguestfs_Object *) obj)->g;
9513 #else
9514   return (guestfs_h*) PyCapsule_GetPointer(obj, \"guestfs_h\");
9515 #endif
9516 }
9517
9518 static PyObject *
9519 put_handle (guestfs_h *g)
9520 {
9521   assert (g);
9522 #ifndef HAVE_PYCAPSULE_NEW
9523   return
9524     PyCObject_FromVoidPtrAndDesc ((void *) g, (char *) \"guestfs_h\", NULL);
9525 #else
9526   return PyCapsule_New ((void *) g, \"guestfs_h\", NULL);
9527 #endif
9528 }
9529
9530 /* This list should be freed (but not the strings) after use. */
9531 static char **
9532 get_string_list (PyObject *obj)
9533 {
9534   size_t i, len;
9535   char **r;
9536
9537   assert (obj);
9538
9539   if (!PyList_Check (obj)) {
9540     PyErr_SetString (PyExc_RuntimeError, \"expecting a list parameter\");
9541     return NULL;
9542   }
9543
9544   Py_ssize_t slen = PyList_Size (obj);
9545   if (slen == -1) {
9546     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: PyList_Size failure\");
9547     return NULL;
9548   }
9549   len = (size_t) slen;
9550   r = malloc (sizeof (char *) * (len+1));
9551   if (r == NULL) {
9552     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: out of memory\");
9553     return NULL;
9554   }
9555
9556   for (i = 0; i < len; ++i)
9557     r[i] = PyString_AsString (PyList_GetItem (obj, i));
9558   r[len] = NULL;
9559
9560   return r;
9561 }
9562
9563 static PyObject *
9564 put_string_list (char * const * const argv)
9565 {
9566   PyObject *list;
9567   int argc, i;
9568
9569   for (argc = 0; argv[argc] != NULL; ++argc)
9570     ;
9571
9572   list = PyList_New (argc);
9573   for (i = 0; i < argc; ++i)
9574     PyList_SetItem (list, i, PyString_FromString (argv[i]));
9575
9576   return list;
9577 }
9578
9579 static PyObject *
9580 put_table (char * const * const argv)
9581 {
9582   PyObject *list, *item;
9583   int argc, i;
9584
9585   for (argc = 0; argv[argc] != NULL; ++argc)
9586     ;
9587
9588   list = PyList_New (argc >> 1);
9589   for (i = 0; i < argc; i += 2) {
9590     item = PyTuple_New (2);
9591     PyTuple_SetItem (item, 0, PyString_FromString (argv[i]));
9592     PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1]));
9593     PyList_SetItem (list, i >> 1, item);
9594   }
9595
9596   return list;
9597 }
9598
9599 static void
9600 free_strings (char **argv)
9601 {
9602   int argc;
9603
9604   for (argc = 0; argv[argc] != NULL; ++argc)
9605     free (argv[argc]);
9606   free (argv);
9607 }
9608
9609 static PyObject *
9610 py_guestfs_create (PyObject *self, PyObject *args)
9611 {
9612   guestfs_h *g;
9613
9614   g = guestfs_create ();
9615   if (g == NULL) {
9616     PyErr_SetString (PyExc_RuntimeError,
9617                      \"guestfs.create: failed to allocate handle\");
9618     return NULL;
9619   }
9620   guestfs_set_error_handler (g, NULL, NULL);
9621   /* This can return NULL, but in that case put_handle will have
9622    * set the Python error string.
9623    */
9624   return put_handle (g);
9625 }
9626
9627 static PyObject *
9628 py_guestfs_close (PyObject *self, PyObject *args)
9629 {
9630   PyObject *py_g;
9631   guestfs_h *g;
9632
9633   if (!PyArg_ParseTuple (args, (char *) \"O:guestfs_close\", &py_g))
9634     return NULL;
9635   g = get_handle (py_g);
9636
9637   guestfs_close (g);
9638
9639   Py_INCREF (Py_None);
9640   return Py_None;
9641 }
9642
9643 ";
9644
9645   let emit_put_list_function typ =
9646     pr "static PyObject *\n";
9647     pr "put_%s_list (struct guestfs_%s_list *%ss)\n" typ typ typ;
9648     pr "{\n";
9649     pr "  PyObject *list;\n";
9650     pr "  size_t i;\n";
9651     pr "\n";
9652     pr "  list = PyList_New (%ss->len);\n" typ;
9653     pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
9654     pr "    PyList_SetItem (list, i, put_%s (&%ss->val[i]));\n" typ typ;
9655     pr "  return list;\n";
9656     pr "};\n";
9657     pr "\n"
9658   in
9659
9660   (* Structures, turned into Python dictionaries. *)
9661   List.iter (
9662     fun (typ, cols) ->
9663       pr "static PyObject *\n";
9664       pr "put_%s (struct guestfs_%s *%s)\n" typ typ typ;
9665       pr "{\n";
9666       pr "  PyObject *dict;\n";
9667       pr "\n";
9668       pr "  dict = PyDict_New ();\n";
9669       List.iter (
9670         function
9671         | name, FString ->
9672             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9673             pr "                        PyString_FromString (%s->%s));\n"
9674               typ name
9675         | name, FBuffer ->
9676             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9677             pr "                        PyString_FromStringAndSize (%s->%s, %s->%s_len));\n"
9678               typ name typ name
9679         | name, FUUID ->
9680             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9681             pr "                        PyString_FromStringAndSize (%s->%s, 32));\n"
9682               typ name
9683         | name, (FBytes|FUInt64) ->
9684             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9685             pr "                        PyLong_FromUnsignedLongLong (%s->%s));\n"
9686               typ name
9687         | name, FInt64 ->
9688             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9689             pr "                        PyLong_FromLongLong (%s->%s));\n"
9690               typ name
9691         | name, FUInt32 ->
9692             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9693             pr "                        PyLong_FromUnsignedLong (%s->%s));\n"
9694               typ name
9695         | name, FInt32 ->
9696             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9697             pr "                        PyLong_FromLong (%s->%s));\n"
9698               typ name
9699         | name, FOptPercent ->
9700             pr "  if (%s->%s >= 0)\n" typ name;
9701             pr "    PyDict_SetItemString (dict, \"%s\",\n" name;
9702             pr "                          PyFloat_FromDouble ((double) %s->%s));\n"
9703               typ name;
9704             pr "  else {\n";
9705             pr "    Py_INCREF (Py_None);\n";
9706             pr "    PyDict_SetItemString (dict, \"%s\", Py_None);\n" name;
9707             pr "  }\n"
9708         | name, FChar ->
9709             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9710             pr "                        PyString_FromStringAndSize (&dirent->%s, 1));\n" name
9711       ) cols;
9712       pr "  return dict;\n";
9713       pr "};\n";
9714       pr "\n";
9715
9716   ) structs;
9717
9718   (* Emit a put_TYPE_list function definition only if that function is used. *)
9719   List.iter (
9720     function
9721     | typ, (RStructListOnly | RStructAndList) ->
9722         (* generate the function for typ *)
9723         emit_put_list_function typ
9724     | typ, _ -> () (* empty *)
9725   ) (rstructs_used_by all_functions);
9726
9727   (* Python wrapper functions. *)
9728   List.iter (
9729     fun (name, style, _, _, _, _, _) ->
9730       pr "static PyObject *\n";
9731       pr "py_guestfs_%s (PyObject *self, PyObject *args)\n" name;
9732       pr "{\n";
9733
9734       pr "  PyObject *py_g;\n";
9735       pr "  guestfs_h *g;\n";
9736       pr "  PyObject *py_r;\n";
9737
9738       let error_code =
9739         match fst style with
9740         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
9741         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
9742         | RConstString _ | RConstOptString _ ->
9743             pr "  const char *r;\n"; "NULL"
9744         | RString _ -> pr "  char *r;\n"; "NULL"
9745         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
9746         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
9747         | RStructList (_, typ) ->
9748             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
9749         | RBufferOut _ ->
9750             pr "  char *r;\n";
9751             pr "  size_t size;\n";
9752             "NULL" in
9753
9754       List.iter (
9755         function
9756         | Pathname n | Device n | Dev_or_Path n | String n | Key n
9757         | FileIn n | FileOut n ->
9758             pr "  const char *%s;\n" n
9759         | OptString n -> pr "  const char *%s;\n" n
9760         | BufferIn n ->
9761             pr "  const char *%s;\n" n;
9762             pr "  Py_ssize_t %s_size;\n" n
9763         | StringList n | DeviceList n ->
9764             pr "  PyObject *py_%s;\n" n;
9765             pr "  char **%s;\n" n
9766         | Bool n -> pr "  int %s;\n" n
9767         | Int n -> pr "  int %s;\n" n
9768         | Int64 n -> pr "  long long %s;\n" n
9769       ) (snd style);
9770
9771       pr "\n";
9772
9773       (* Convert the parameters. *)
9774       pr "  if (!PyArg_ParseTuple (args, (char *) \"O";
9775       List.iter (
9776         function
9777         | Pathname _ | Device _ | Dev_or_Path _ | String _ | Key _
9778         | FileIn _ | FileOut _ -> pr "s"
9779         | OptString _ -> pr "z"
9780         | StringList _ | DeviceList _ -> pr "O"
9781         | Bool _ -> pr "i" (* XXX Python has booleans? *)
9782         | Int _ -> pr "i"
9783         | Int64 _ -> pr "L" (* XXX Whoever thought it was a good idea to
9784                              * emulate C's int/long/long long in Python?
9785                              *)
9786         | BufferIn _ -> pr "s#"
9787       ) (snd style);
9788       pr ":guestfs_%s\",\n" name;
9789       pr "                         &py_g";
9790       List.iter (
9791         function
9792         | Pathname n | Device n | Dev_or_Path n | String n | Key n
9793         | FileIn n | FileOut n -> pr ", &%s" n
9794         | OptString n -> pr ", &%s" n
9795         | StringList n | DeviceList n -> pr ", &py_%s" n
9796         | Bool n -> pr ", &%s" n
9797         | Int n -> pr ", &%s" n
9798         | Int64 n -> pr ", &%s" n
9799         | BufferIn n -> pr ", &%s, &%s_size" n n
9800       ) (snd style);
9801
9802       pr "))\n";
9803       pr "    return NULL;\n";
9804
9805       pr "  g = get_handle (py_g);\n";
9806       List.iter (
9807         function
9808         | Pathname _ | Device _ | Dev_or_Path _ | String _ | Key _
9809         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _
9810         | BufferIn _ -> ()
9811         | StringList n | DeviceList n ->
9812             pr "  %s = get_string_list (py_%s);\n" n n;
9813             pr "  if (!%s) return NULL;\n" n
9814       ) (snd style);
9815
9816       pr "\n";
9817
9818       pr "  r = guestfs_%s " name;
9819       generate_c_call_args ~handle:"g" style;
9820       pr ";\n";
9821
9822       List.iter (
9823         function
9824         | Pathname _ | Device _ | Dev_or_Path _ | String _ | Key _
9825         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _
9826         | BufferIn _ -> ()
9827         | StringList n | DeviceList n ->
9828             pr "  free (%s);\n" n
9829       ) (snd style);
9830
9831       pr "  if (r == %s) {\n" error_code;
9832       pr "    PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g));\n";
9833       pr "    return NULL;\n";
9834       pr "  }\n";
9835       pr "\n";
9836
9837       (match fst style with
9838        | RErr ->
9839            pr "  Py_INCREF (Py_None);\n";
9840            pr "  py_r = Py_None;\n"
9841        | RInt _
9842        | RBool _ -> pr "  py_r = PyInt_FromLong ((long) r);\n"
9843        | RInt64 _ -> pr "  py_r = PyLong_FromLongLong (r);\n"
9844        | RConstString _ -> pr "  py_r = PyString_FromString (r);\n"
9845        | RConstOptString _ ->
9846            pr "  if (r)\n";
9847            pr "    py_r = PyString_FromString (r);\n";
9848            pr "  else {\n";
9849            pr "    Py_INCREF (Py_None);\n";
9850            pr "    py_r = Py_None;\n";
9851            pr "  }\n"
9852        | RString _ ->
9853            pr "  py_r = PyString_FromString (r);\n";
9854            pr "  free (r);\n"
9855        | RStringList _ ->
9856            pr "  py_r = put_string_list (r);\n";
9857            pr "  free_strings (r);\n"
9858        | RStruct (_, typ) ->
9859            pr "  py_r = put_%s (r);\n" typ;
9860            pr "  guestfs_free_%s (r);\n" typ
9861        | RStructList (_, typ) ->
9862            pr "  py_r = put_%s_list (r);\n" typ;
9863            pr "  guestfs_free_%s_list (r);\n" typ
9864        | RHashtable n ->
9865            pr "  py_r = put_table (r);\n";
9866            pr "  free_strings (r);\n"
9867        | RBufferOut _ ->
9868            pr "  py_r = PyString_FromStringAndSize (r, size);\n";
9869            pr "  free (r);\n"
9870       );
9871
9872       pr "  return py_r;\n";
9873       pr "}\n";
9874       pr "\n"
9875   ) all_functions;
9876
9877   (* Table of functions. *)
9878   pr "static PyMethodDef methods[] = {\n";
9879   pr "  { (char *) \"create\", py_guestfs_create, METH_VARARGS, NULL },\n";
9880   pr "  { (char *) \"close\", py_guestfs_close, METH_VARARGS, NULL },\n";
9881   List.iter (
9882     fun (name, _, _, _, _, _, _) ->
9883       pr "  { (char *) \"%s\", py_guestfs_%s, METH_VARARGS, NULL },\n"
9884         name name
9885   ) all_functions;
9886   pr "  { NULL, NULL, 0, NULL }\n";
9887   pr "};\n";
9888   pr "\n";
9889
9890   (* Init function. *)
9891   pr "\
9892 void
9893 initlibguestfsmod (void)
9894 {
9895   static int initialized = 0;
9896
9897   if (initialized) return;
9898   Py_InitModule ((char *) \"libguestfsmod\", methods);
9899   initialized = 1;
9900 }
9901 "
9902
9903 (* Generate Python module. *)
9904 and generate_python_py () =
9905   generate_header HashStyle LGPLv2plus;
9906
9907   pr "\
9908 u\"\"\"Python bindings for libguestfs
9909
9910 import guestfs
9911 g = guestfs.GuestFS ()
9912 g.add_drive (\"guest.img\")
9913 g.launch ()
9914 parts = g.list_partitions ()
9915
9916 The guestfs module provides a Python binding to the libguestfs API
9917 for examining and modifying virtual machine disk images.
9918
9919 Amongst the things this is good for: making batch configuration
9920 changes to guests, getting disk used/free statistics (see also:
9921 virt-df), migrating between virtualization systems (see also:
9922 virt-p2v), performing partial backups, performing partial guest
9923 clones, cloning guests and changing registry/UUID/hostname info, and
9924 much else besides.
9925
9926 Libguestfs uses Linux kernel and qemu code, and can access any type of
9927 guest filesystem that Linux and qemu can, including but not limited
9928 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
9929 schemes, qcow, qcow2, vmdk.
9930
9931 Libguestfs provides ways to enumerate guest storage (eg. partitions,
9932 LVs, what filesystem is in each LV, etc.).  It can also run commands
9933 in the context of the guest.  Also you can access filesystems over
9934 FUSE.
9935
9936 Errors which happen while using the API are turned into Python
9937 RuntimeError exceptions.
9938
9939 To create a guestfs handle you usually have to perform the following
9940 sequence of calls:
9941
9942 # Create the handle, call add_drive at least once, and possibly
9943 # several times if the guest has multiple block devices:
9944 g = guestfs.GuestFS ()
9945 g.add_drive (\"guest.img\")
9946
9947 # Launch the qemu subprocess and wait for it to become ready:
9948 g.launch ()
9949
9950 # Now you can issue commands, for example:
9951 logvols = g.lvs ()
9952
9953 \"\"\"
9954
9955 import libguestfsmod
9956
9957 class GuestFS:
9958     \"\"\"Instances of this class are libguestfs API handles.\"\"\"
9959
9960     def __init__ (self):
9961         \"\"\"Create a new libguestfs handle.\"\"\"
9962         self._o = libguestfsmod.create ()
9963
9964     def __del__ (self):
9965         libguestfsmod.close (self._o)
9966
9967 ";
9968
9969   List.iter (
9970     fun (name, style, _, flags, _, _, longdesc) ->
9971       pr "    def %s " name;
9972       generate_py_call_args ~handle:"self" (snd style);
9973       pr ":\n";
9974
9975       if not (List.mem NotInDocs flags) then (
9976         let doc = replace_str longdesc "C<guestfs_" "C<g." in
9977         let doc =
9978           match fst style with
9979           | RErr | RInt _ | RInt64 _ | RBool _
9980           | RConstOptString _ | RConstString _
9981           | RString _ | RBufferOut _ -> doc
9982           | RStringList _ ->
9983               doc ^ "\n\nThis function returns a list of strings."
9984           | RStruct (_, typ) ->
9985               doc ^ sprintf "\n\nThis function returns a dictionary, with keys matching the various fields in the guestfs_%s structure." typ
9986           | RStructList (_, typ) ->
9987               doc ^ sprintf "\n\nThis function returns a list of %ss.  Each %s is represented as a dictionary." typ typ
9988           | RHashtable _ ->
9989               doc ^ "\n\nThis function returns a dictionary." in
9990         let doc =
9991           if List.mem ProtocolLimitWarning flags then
9992             doc ^ "\n\n" ^ protocol_limit_warning
9993           else doc in
9994         let doc =
9995           if List.mem DangerWillRobinson flags then
9996             doc ^ "\n\n" ^ danger_will_robinson
9997           else doc in
9998         let doc =
9999           match deprecation_notice flags with
10000           | None -> doc
10001           | Some txt -> doc ^ "\n\n" ^ txt in
10002         let doc = pod2text ~width:60 name doc in
10003         let doc = List.map (fun line -> replace_str line "\\" "\\\\") doc in
10004         let doc = String.concat "\n        " doc in
10005         pr "        u\"\"\"%s\"\"\"\n" doc;
10006       );
10007       pr "        return libguestfsmod.%s " name;
10008       generate_py_call_args ~handle:"self._o" (snd style);
10009       pr "\n";
10010       pr "\n";
10011   ) all_functions
10012
10013 (* Generate Python call arguments, eg "(handle, foo, bar)" *)
10014 and generate_py_call_args ~handle args =
10015   pr "(%s" handle;
10016   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
10017   pr ")"
10018
10019 (* Useful if you need the longdesc POD text as plain text.  Returns a
10020  * list of lines.
10021  *
10022  * Because this is very slow (the slowest part of autogeneration),
10023  * we memoize the results.
10024  *)
10025 and pod2text ~width name longdesc =
10026   let key = width, name, longdesc in
10027   try Hashtbl.find pod2text_memo key
10028   with Not_found ->
10029     let filename, chan = Filename.open_temp_file "gen" ".tmp" in
10030     fprintf chan "=head1 %s\n\n%s\n" name longdesc;
10031     close_out chan;
10032     let cmd = sprintf "pod2text -w %d %s" width (Filename.quote filename) in
10033     let chan = open_process_in cmd in
10034     let lines = ref [] in
10035     let rec loop i =
10036       let line = input_line chan in
10037       if i = 1 then             (* discard the first line of output *)
10038         loop (i+1)
10039       else (
10040         let line = triml line in
10041         lines := line :: !lines;
10042         loop (i+1)
10043       ) in
10044     let lines = try loop 1 with End_of_file -> List.rev !lines in
10045     unlink filename;
10046     (match close_process_in chan with
10047      | WEXITED 0 -> ()
10048      | WEXITED i ->
10049          failwithf "pod2text: process exited with non-zero status (%d)" i
10050      | WSIGNALED i | WSTOPPED i ->
10051          failwithf "pod2text: process signalled or stopped by signal %d" i
10052     );
10053     Hashtbl.add pod2text_memo key lines;
10054     pod2text_memo_updated ();
10055     lines
10056
10057 (* Generate ruby bindings. *)
10058 and generate_ruby_c () =
10059   generate_header CStyle LGPLv2plus;
10060
10061   pr "\
10062 #include <stdio.h>
10063 #include <stdlib.h>
10064
10065 #include <ruby.h>
10066
10067 #include \"guestfs.h\"
10068
10069 #include \"extconf.h\"
10070
10071 /* For Ruby < 1.9 */
10072 #ifndef RARRAY_LEN
10073 #define RARRAY_LEN(r) (RARRAY((r))->len)
10074 #endif
10075
10076 static VALUE m_guestfs;                 /* guestfs module */
10077 static VALUE c_guestfs;                 /* guestfs_h handle */
10078 static VALUE e_Error;                   /* used for all errors */
10079
10080 static void ruby_guestfs_free (void *p)
10081 {
10082   if (!p) return;
10083   guestfs_close ((guestfs_h *) p);
10084 }
10085
10086 static VALUE ruby_guestfs_create (VALUE m)
10087 {
10088   guestfs_h *g;
10089
10090   g = guestfs_create ();
10091   if (!g)
10092     rb_raise (e_Error, \"failed to create guestfs handle\");
10093
10094   /* Don't print error messages to stderr by default. */
10095   guestfs_set_error_handler (g, NULL, NULL);
10096
10097   /* Wrap it, and make sure the close function is called when the
10098    * handle goes away.
10099    */
10100   return Data_Wrap_Struct (c_guestfs, NULL, ruby_guestfs_free, g);
10101 }
10102
10103 static VALUE ruby_guestfs_close (VALUE gv)
10104 {
10105   guestfs_h *g;
10106   Data_Get_Struct (gv, guestfs_h, g);
10107
10108   ruby_guestfs_free (g);
10109   DATA_PTR (gv) = NULL;
10110
10111   return Qnil;
10112 }
10113
10114 ";
10115
10116   List.iter (
10117     fun (name, style, _, _, _, _, _) ->
10118       pr "static VALUE ruby_guestfs_%s (VALUE gv" name;
10119       List.iter (fun arg -> pr ", VALUE %sv" (name_of_argt arg)) (snd style);
10120       pr ")\n";
10121       pr "{\n";
10122       pr "  guestfs_h *g;\n";
10123       pr "  Data_Get_Struct (gv, guestfs_h, g);\n";
10124       pr "  if (!g)\n";
10125       pr "    rb_raise (rb_eArgError, \"%%s: used handle after closing it\", \"%s\");\n"
10126         name;
10127       pr "\n";
10128
10129       List.iter (
10130         function
10131         | Pathname n | Device n | Dev_or_Path n | String n | Key n
10132         | FileIn n | FileOut n ->
10133             pr "  Check_Type (%sv, T_STRING);\n" n;
10134             pr "  const char *%s = StringValueCStr (%sv);\n" n n;
10135             pr "  if (!%s)\n" n;
10136             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
10137             pr "              \"%s\", \"%s\");\n" n name
10138         | BufferIn n ->
10139             pr "  Check_Type (%sv, T_STRING);\n" n;
10140             pr "  const char *%s = RSTRING (%sv)->ptr;\n" n n;
10141             pr "  if (!%s)\n" n;
10142             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
10143             pr "              \"%s\", \"%s\");\n" n name;
10144             pr "  size_t %s_size = RSTRING (%sv)->len;\n" n n
10145         | OptString n ->
10146             pr "  const char *%s = !NIL_P (%sv) ? StringValueCStr (%sv) : NULL;\n" n n n
10147         | StringList n | DeviceList n ->
10148             pr "  char **%s;\n" n;
10149             pr "  Check_Type (%sv, T_ARRAY);\n" n;
10150             pr "  {\n";
10151             pr "    size_t i, len;\n";
10152             pr "    len = RARRAY_LEN (%sv);\n" n;
10153             pr "    %s = guestfs_safe_malloc (g, sizeof (char *) * (len+1));\n"
10154               n;
10155             pr "    for (i = 0; i < len; ++i) {\n";
10156             pr "      VALUE v = rb_ary_entry (%sv, i);\n" n;
10157             pr "      %s[i] = StringValueCStr (v);\n" n;
10158             pr "    }\n";
10159             pr "    %s[len] = NULL;\n" n;
10160             pr "  }\n";
10161         | Bool n ->
10162             pr "  int %s = RTEST (%sv);\n" n n
10163         | Int n ->
10164             pr "  int %s = NUM2INT (%sv);\n" n n
10165         | Int64 n ->
10166             pr "  long long %s = NUM2LL (%sv);\n" n n
10167       ) (snd style);
10168       pr "\n";
10169
10170       let error_code =
10171         match fst style with
10172         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
10173         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
10174         | RConstString _ | RConstOptString _ ->
10175             pr "  const char *r;\n"; "NULL"
10176         | RString _ -> pr "  char *r;\n"; "NULL"
10177         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
10178         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
10179         | RStructList (_, typ) ->
10180             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
10181         | RBufferOut _ ->
10182             pr "  char *r;\n";
10183             pr "  size_t size;\n";
10184             "NULL" in
10185       pr "\n";
10186
10187       pr "  r = guestfs_%s " name;
10188       generate_c_call_args ~handle:"g" style;
10189       pr ";\n";
10190
10191       List.iter (
10192         function
10193         | Pathname _ | Device _ | Dev_or_Path _ | String _ | Key _
10194         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _
10195         | BufferIn _ -> ()
10196         | StringList n | DeviceList n ->
10197             pr "  free (%s);\n" n
10198       ) (snd style);
10199
10200       pr "  if (r == %s)\n" error_code;
10201       pr "    rb_raise (e_Error, \"%%s\", guestfs_last_error (g));\n";
10202       pr "\n";
10203
10204       (match fst style with
10205        | RErr ->
10206            pr "  return Qnil;\n"
10207        | RInt _ | RBool _ ->
10208            pr "  return INT2NUM (r);\n"
10209        | RInt64 _ ->
10210            pr "  return ULL2NUM (r);\n"
10211        | RConstString _ ->
10212            pr "  return rb_str_new2 (r);\n";
10213        | RConstOptString _ ->
10214            pr "  if (r)\n";
10215            pr "    return rb_str_new2 (r);\n";
10216            pr "  else\n";
10217            pr "    return Qnil;\n";
10218        | RString _ ->
10219            pr "  VALUE rv = rb_str_new2 (r);\n";
10220            pr "  free (r);\n";
10221            pr "  return rv;\n";
10222        | RStringList _ ->
10223            pr "  size_t i, len = 0;\n";
10224            pr "  for (i = 0; r[i] != NULL; ++i) len++;\n";
10225            pr "  VALUE rv = rb_ary_new2 (len);\n";
10226            pr "  for (i = 0; r[i] != NULL; ++i) {\n";
10227            pr "    rb_ary_push (rv, rb_str_new2 (r[i]));\n";
10228            pr "    free (r[i]);\n";
10229            pr "  }\n";
10230            pr "  free (r);\n";
10231            pr "  return rv;\n"
10232        | RStruct (_, typ) ->
10233            let cols = cols_of_struct typ in
10234            generate_ruby_struct_code typ cols
10235        | RStructList (_, typ) ->
10236            let cols = cols_of_struct typ in
10237            generate_ruby_struct_list_code typ cols
10238        | RHashtable _ ->
10239            pr "  VALUE rv = rb_hash_new ();\n";
10240            pr "  size_t i;\n";
10241            pr "  for (i = 0; r[i] != NULL; i+=2) {\n";
10242            pr "    rb_hash_aset (rv, rb_str_new2 (r[i]), rb_str_new2 (r[i+1]));\n";
10243            pr "    free (r[i]);\n";
10244            pr "    free (r[i+1]);\n";
10245            pr "  }\n";
10246            pr "  free (r);\n";
10247            pr "  return rv;\n"
10248        | RBufferOut _ ->
10249            pr "  VALUE rv = rb_str_new (r, size);\n";
10250            pr "  free (r);\n";
10251            pr "  return rv;\n";
10252       );
10253
10254       pr "}\n";
10255       pr "\n"
10256   ) all_functions;
10257
10258   pr "\
10259 /* Initialize the module. */
10260 void Init__guestfs ()
10261 {
10262   m_guestfs = rb_define_module (\"Guestfs\");
10263   c_guestfs = rb_define_class_under (m_guestfs, \"Guestfs\", rb_cObject);
10264   e_Error = rb_define_class_under (m_guestfs, \"Error\", rb_eStandardError);
10265
10266   rb_define_module_function (m_guestfs, \"create\", ruby_guestfs_create, 0);
10267   rb_define_method (c_guestfs, \"close\", ruby_guestfs_close, 0);
10268
10269 ";
10270   (* Define the rest of the methods. *)
10271   List.iter (
10272     fun (name, style, _, _, _, _, _) ->
10273       pr "  rb_define_method (c_guestfs, \"%s\",\n" name;
10274       pr "        ruby_guestfs_%s, %d);\n" name (List.length (snd style))
10275   ) all_functions;
10276
10277   pr "}\n"
10278
10279 (* Ruby code to return a struct. *)
10280 and generate_ruby_struct_code typ cols =
10281   pr "  VALUE rv = rb_hash_new ();\n";
10282   List.iter (
10283     function
10284     | name, FString ->
10285         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new2 (r->%s));\n" name name
10286     | name, FBuffer ->
10287         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, r->%s_len));\n" name name name
10288     | name, FUUID ->
10289         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, 32));\n" name name
10290     | name, (FBytes|FUInt64) ->
10291         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
10292     | name, FInt64 ->
10293         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), LL2NUM (r->%s));\n" name name
10294     | name, FUInt32 ->
10295         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), UINT2NUM (r->%s));\n" name name
10296     | name, FInt32 ->
10297         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), INT2NUM (r->%s));\n" name name
10298     | name, FOptPercent ->
10299         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_dbl2big (r->%s));\n" name name
10300     | name, FChar -> (* XXX wrong? *)
10301         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
10302   ) cols;
10303   pr "  guestfs_free_%s (r);\n" typ;
10304   pr "  return rv;\n"
10305
10306 (* Ruby code to return a struct list. *)
10307 and generate_ruby_struct_list_code typ cols =
10308   pr "  VALUE rv = rb_ary_new2 (r->len);\n";
10309   pr "  size_t i;\n";
10310   pr "  for (i = 0; i < r->len; ++i) {\n";
10311   pr "    VALUE hv = rb_hash_new ();\n";
10312   List.iter (
10313     function
10314     | name, FString ->
10315         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new2 (r->val[i].%s));\n" name name
10316     | name, FBuffer ->
10317         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
10318     | name, FUUID ->
10319         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, 32));\n" name name
10320     | name, (FBytes|FUInt64) ->
10321         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
10322     | name, FInt64 ->
10323         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), LL2NUM (r->val[i].%s));\n" name name
10324     | name, FUInt32 ->
10325         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), UINT2NUM (r->val[i].%s));\n" name name
10326     | name, FInt32 ->
10327         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), INT2NUM (r->val[i].%s));\n" name name
10328     | name, FOptPercent ->
10329         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_dbl2big (r->val[i].%s));\n" name name
10330     | name, FChar -> (* XXX wrong? *)
10331         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
10332   ) cols;
10333   pr "    rb_ary_push (rv, hv);\n";
10334   pr "  }\n";
10335   pr "  guestfs_free_%s_list (r);\n" typ;
10336   pr "  return rv;\n"
10337
10338 (* Generate Java bindings GuestFS.java file. *)
10339 and generate_java_java () =
10340   generate_header CStyle LGPLv2plus;
10341
10342   pr "\
10343 package com.redhat.et.libguestfs;
10344
10345 import java.util.HashMap;
10346 import com.redhat.et.libguestfs.LibGuestFSException;
10347 import com.redhat.et.libguestfs.PV;
10348 import com.redhat.et.libguestfs.VG;
10349 import com.redhat.et.libguestfs.LV;
10350 import com.redhat.et.libguestfs.Stat;
10351 import com.redhat.et.libguestfs.StatVFS;
10352 import com.redhat.et.libguestfs.IntBool;
10353 import com.redhat.et.libguestfs.Dirent;
10354
10355 /**
10356  * The GuestFS object is a libguestfs handle.
10357  *
10358  * @author rjones
10359  */
10360 public class GuestFS {
10361   // Load the native code.
10362   static {
10363     System.loadLibrary (\"guestfs_jni\");
10364   }
10365
10366   /**
10367    * The native guestfs_h pointer.
10368    */
10369   long g;
10370
10371   /**
10372    * Create a libguestfs handle.
10373    *
10374    * @throws LibGuestFSException
10375    */
10376   public GuestFS () throws LibGuestFSException
10377   {
10378     g = _create ();
10379   }
10380   private native long _create () throws LibGuestFSException;
10381
10382   /**
10383    * Close a libguestfs handle.
10384    *
10385    * You can also leave handles to be collected by the garbage
10386    * collector, but this method ensures that the resources used
10387    * by the handle are freed up immediately.  If you call any
10388    * other methods after closing the handle, you will get an
10389    * exception.
10390    *
10391    * @throws LibGuestFSException
10392    */
10393   public void close () throws LibGuestFSException
10394   {
10395     if (g != 0)
10396       _close (g);
10397     g = 0;
10398   }
10399   private native void _close (long g) throws LibGuestFSException;
10400
10401   public void finalize () throws LibGuestFSException
10402   {
10403     close ();
10404   }
10405
10406 ";
10407
10408   List.iter (
10409     fun (name, style, _, flags, _, shortdesc, longdesc) ->
10410       if not (List.mem NotInDocs flags); then (
10411         let doc = replace_str longdesc "C<guestfs_" "C<g." in
10412         let doc =
10413           if List.mem ProtocolLimitWarning flags then
10414             doc ^ "\n\n" ^ protocol_limit_warning
10415           else doc in
10416         let doc =
10417           if List.mem DangerWillRobinson flags then
10418             doc ^ "\n\n" ^ danger_will_robinson
10419           else doc in
10420         let doc =
10421           match deprecation_notice flags with
10422           | None -> doc
10423           | Some txt -> doc ^ "\n\n" ^ txt in
10424         let doc = pod2text ~width:60 name doc in
10425         let doc = List.map (            (* RHBZ#501883 *)
10426           function
10427           | "" -> "<p>"
10428           | nonempty -> nonempty
10429         ) doc in
10430         let doc = String.concat "\n   * " doc in
10431
10432         pr "  /**\n";
10433         pr "   * %s\n" shortdesc;
10434         pr "   * <p>\n";
10435         pr "   * %s\n" doc;
10436         pr "   * @throws LibGuestFSException\n";
10437         pr "   */\n";
10438         pr "  ";
10439       );
10440       generate_java_prototype ~public:true ~semicolon:false name style;
10441       pr "\n";
10442       pr "  {\n";
10443       pr "    if (g == 0)\n";
10444       pr "      throw new LibGuestFSException (\"%s: handle is closed\");\n"
10445         name;
10446       pr "    ";
10447       if fst style <> RErr then pr "return ";
10448       pr "_%s " name;
10449       generate_java_call_args ~handle:"g" (snd style);
10450       pr ";\n";
10451       pr "  }\n";
10452       pr "  ";
10453       generate_java_prototype ~privat:true ~native:true name style;
10454       pr "\n";
10455       pr "\n";
10456   ) all_functions;
10457
10458   pr "}\n"
10459
10460 (* Generate Java call arguments, eg "(handle, foo, bar)" *)
10461 and generate_java_call_args ~handle args =
10462   pr "(%s" handle;
10463   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
10464   pr ")"
10465
10466 and generate_java_prototype ?(public=false) ?(privat=false) ?(native=false)
10467     ?(semicolon=true) name style =
10468   if privat then pr "private ";
10469   if public then pr "public ";
10470   if native then pr "native ";
10471
10472   (* return type *)
10473   (match fst style with
10474    | RErr -> pr "void ";
10475    | RInt _ -> pr "int ";
10476    | RInt64 _ -> pr "long ";
10477    | RBool _ -> pr "boolean ";
10478    | RConstString _ | RConstOptString _ | RString _
10479    | RBufferOut _ -> pr "String ";
10480    | RStringList _ -> pr "String[] ";
10481    | RStruct (_, typ) ->
10482        let name = java_name_of_struct typ in
10483        pr "%s " name;
10484    | RStructList (_, typ) ->
10485        let name = java_name_of_struct typ in
10486        pr "%s[] " name;
10487    | RHashtable _ -> pr "HashMap<String,String> ";
10488   );
10489
10490   if native then pr "_%s " name else pr "%s " name;
10491   pr "(";
10492   let needs_comma = ref false in
10493   if native then (
10494     pr "long g";
10495     needs_comma := true
10496   );
10497
10498   (* args *)
10499   List.iter (
10500     fun arg ->
10501       if !needs_comma then pr ", ";
10502       needs_comma := true;
10503
10504       match arg with
10505       | Pathname n
10506       | Device n | Dev_or_Path n
10507       | String n
10508       | OptString n
10509       | FileIn n
10510       | FileOut n
10511       | Key n ->
10512           pr "String %s" n
10513       | BufferIn n ->
10514           pr "byte[] %s" n
10515       | StringList n | DeviceList n ->
10516           pr "String[] %s" n
10517       | Bool n ->
10518           pr "boolean %s" n
10519       | Int n ->
10520           pr "int %s" n
10521       | Int64 n ->
10522           pr "long %s" n
10523   ) (snd style);
10524
10525   pr ")\n";
10526   pr "    throws LibGuestFSException";
10527   if semicolon then pr ";"
10528
10529 and generate_java_struct jtyp cols () =
10530   generate_header CStyle LGPLv2plus;
10531
10532   pr "\
10533 package com.redhat.et.libguestfs;
10534
10535 /**
10536  * Libguestfs %s structure.
10537  *
10538  * @author rjones
10539  * @see GuestFS
10540  */
10541 public class %s {
10542 " jtyp jtyp;
10543
10544   List.iter (
10545     function
10546     | name, FString
10547     | name, FUUID
10548     | name, FBuffer -> pr "  public String %s;\n" name
10549     | name, (FBytes|FUInt64|FInt64) -> pr "  public long %s;\n" name
10550     | name, (FUInt32|FInt32) -> pr "  public int %s;\n" name
10551     | name, FChar -> pr "  public char %s;\n" name
10552     | name, FOptPercent ->
10553         pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
10554         pr "  public float %s;\n" name
10555   ) cols;
10556
10557   pr "}\n"
10558
10559 and generate_java_c () =
10560   generate_header CStyle LGPLv2plus;
10561
10562   pr "\
10563 #include <stdio.h>
10564 #include <stdlib.h>
10565 #include <string.h>
10566
10567 #include \"com_redhat_et_libguestfs_GuestFS.h\"
10568 #include \"guestfs.h\"
10569
10570 /* Note that this function returns.  The exception is not thrown
10571  * until after the wrapper function returns.
10572  */
10573 static void
10574 throw_exception (JNIEnv *env, const char *msg)
10575 {
10576   jclass cl;
10577   cl = (*env)->FindClass (env,
10578                           \"com/redhat/et/libguestfs/LibGuestFSException\");
10579   (*env)->ThrowNew (env, cl, msg);
10580 }
10581
10582 JNIEXPORT jlong JNICALL
10583 Java_com_redhat_et_libguestfs_GuestFS__1create
10584   (JNIEnv *env, jobject obj)
10585 {
10586   guestfs_h *g;
10587
10588   g = guestfs_create ();
10589   if (g == NULL) {
10590     throw_exception (env, \"GuestFS.create: failed to allocate handle\");
10591     return 0;
10592   }
10593   guestfs_set_error_handler (g, NULL, NULL);
10594   return (jlong) (long) g;
10595 }
10596
10597 JNIEXPORT void JNICALL
10598 Java_com_redhat_et_libguestfs_GuestFS__1close
10599   (JNIEnv *env, jobject obj, jlong jg)
10600 {
10601   guestfs_h *g = (guestfs_h *) (long) jg;
10602   guestfs_close (g);
10603 }
10604
10605 ";
10606
10607   List.iter (
10608     fun (name, style, _, _, _, _, _) ->
10609       pr "JNIEXPORT ";
10610       (match fst style with
10611        | RErr -> pr "void ";
10612        | RInt _ -> pr "jint ";
10613        | RInt64 _ -> pr "jlong ";
10614        | RBool _ -> pr "jboolean ";
10615        | RConstString _ | RConstOptString _ | RString _
10616        | RBufferOut _ -> pr "jstring ";
10617        | RStruct _ | RHashtable _ ->
10618            pr "jobject ";
10619        | RStringList _ | RStructList _ ->
10620            pr "jobjectArray ";
10621       );
10622       pr "JNICALL\n";
10623       pr "Java_com_redhat_et_libguestfs_GuestFS_";
10624       pr "%s" (replace_str ("_" ^ name) "_" "_1");
10625       pr "\n";
10626       pr "  (JNIEnv *env, jobject obj, jlong jg";
10627       List.iter (
10628         function
10629         | Pathname n
10630         | Device n | Dev_or_Path n
10631         | String n
10632         | OptString n
10633         | FileIn n
10634         | FileOut n
10635         | Key n ->
10636             pr ", jstring j%s" n
10637         | BufferIn n ->
10638             pr ", jbyteArray j%s" n
10639         | StringList n | DeviceList n ->
10640             pr ", jobjectArray j%s" n
10641         | Bool n ->
10642             pr ", jboolean j%s" n
10643         | Int n ->
10644             pr ", jint j%s" n
10645         | Int64 n ->
10646             pr ", jlong j%s" n
10647       ) (snd style);
10648       pr ")\n";
10649       pr "{\n";
10650       pr "  guestfs_h *g = (guestfs_h *) (long) jg;\n";
10651       let error_code, no_ret =
10652         match fst style with
10653         | RErr -> pr "  int r;\n"; "-1", ""
10654         | RBool _
10655         | RInt _ -> pr "  int r;\n"; "-1", "0"
10656         | RInt64 _ -> pr "  int64_t r;\n"; "-1", "0"
10657         | RConstString _ -> pr "  const char *r;\n"; "NULL", "NULL"
10658         | RConstOptString _ -> pr "  const char *r;\n"; "NULL", "NULL"
10659         | RString _ ->
10660             pr "  jstring jr;\n";
10661             pr "  char *r;\n"; "NULL", "NULL"
10662         | RStringList _ ->
10663             pr "  jobjectArray jr;\n";
10664             pr "  int r_len;\n";
10665             pr "  jclass cl;\n";
10666             pr "  jstring jstr;\n";
10667             pr "  char **r;\n"; "NULL", "NULL"
10668         | RStruct (_, typ) ->
10669             pr "  jobject jr;\n";
10670             pr "  jclass cl;\n";
10671             pr "  jfieldID fl;\n";
10672             pr "  struct guestfs_%s *r;\n" typ; "NULL", "NULL"
10673         | RStructList (_, typ) ->
10674             pr "  jobjectArray jr;\n";
10675             pr "  jclass cl;\n";
10676             pr "  jfieldID fl;\n";
10677             pr "  jobject jfl;\n";
10678             pr "  struct guestfs_%s_list *r;\n" typ; "NULL", "NULL"
10679         | RHashtable _ -> pr "  char **r;\n"; "NULL", "NULL"
10680         | RBufferOut _ ->
10681             pr "  jstring jr;\n";
10682             pr "  char *r;\n";
10683             pr "  size_t size;\n";
10684             "NULL", "NULL" in
10685       List.iter (
10686         function
10687         | Pathname n
10688         | Device n | Dev_or_Path n
10689         | String n
10690         | OptString n
10691         | FileIn n
10692         | FileOut n
10693         | Key n ->
10694             pr "  const char *%s;\n" n
10695         | BufferIn n ->
10696             pr "  jbyte *%s;\n" n;
10697             pr "  size_t %s_size;\n" n
10698         | StringList n | DeviceList n ->
10699             pr "  int %s_len;\n" n;
10700             pr "  const char **%s;\n" n
10701         | Bool n
10702         | Int n ->
10703             pr "  int %s;\n" n
10704         | Int64 n ->
10705             pr "  int64_t %s;\n" n
10706       ) (snd style);
10707
10708       let needs_i =
10709         (match fst style with
10710          | RStringList _ | RStructList _ -> true
10711          | RErr | RBool _ | RInt _ | RInt64 _ | RConstString _
10712          | RConstOptString _
10713          | RString _ | RBufferOut _ | RStruct _ | RHashtable _ -> false) ||
10714           List.exists (function
10715                        | StringList _ -> true
10716                        | DeviceList _ -> true
10717                        | _ -> false) (snd style) in
10718       if needs_i then
10719         pr "  size_t i;\n";
10720
10721       pr "\n";
10722
10723       (* Get the parameters. *)
10724       List.iter (
10725         function
10726         | Pathname n
10727         | Device n | Dev_or_Path n
10728         | String n
10729         | FileIn n
10730         | FileOut n
10731         | Key n ->
10732             pr "  %s = (*env)->GetStringUTFChars (env, j%s, NULL);\n" n n
10733         | OptString n ->
10734             (* This is completely undocumented, but Java null becomes
10735              * a NULL parameter.
10736              *)
10737             pr "  %s = j%s ? (*env)->GetStringUTFChars (env, j%s, NULL) : NULL;\n" n n n
10738         | BufferIn n ->
10739             pr "  %s = (*env)->GetByteArrayElements (env, j%s, NULL);\n" n n;
10740             pr "  %s_size = (*env)->GetArrayLength (env, j%s);\n" n n
10741         | StringList n | DeviceList n ->
10742             pr "  %s_len = (*env)->GetArrayLength (env, j%s);\n" n n;
10743             pr "  %s = guestfs_safe_malloc (g, sizeof (char *) * (%s_len+1));\n" n n;
10744             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
10745             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
10746               n;
10747             pr "    %s[i] = (*env)->GetStringUTFChars (env, o, NULL);\n" n;
10748             pr "  }\n";
10749             pr "  %s[%s_len] = NULL;\n" n n;
10750         | Bool n
10751         | Int n
10752         | Int64 n ->
10753             pr "  %s = j%s;\n" n n
10754       ) (snd style);
10755
10756       (* Make the call. *)
10757       pr "  r = guestfs_%s " name;
10758       generate_c_call_args ~handle:"g" style;
10759       pr ";\n";
10760
10761       (* Release the parameters. *)
10762       List.iter (
10763         function
10764         | Pathname n
10765         | Device n | Dev_or_Path n
10766         | String n
10767         | FileIn n
10768         | FileOut n
10769         | Key n ->
10770             pr "  (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
10771         | OptString n ->
10772             pr "  if (j%s)\n" n;
10773             pr "    (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
10774         | BufferIn n ->
10775             pr "  (*env)->ReleaseByteArrayElements (env, j%s, %s, 0);\n" n n
10776         | StringList n | DeviceList n ->
10777             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
10778             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
10779               n;
10780             pr "    (*env)->ReleaseStringUTFChars (env, o, %s[i]);\n" n;
10781             pr "  }\n";
10782             pr "  free (%s);\n" n
10783         | Bool n
10784         | Int n
10785         | Int64 n -> ()
10786       ) (snd style);
10787
10788       (* Check for errors. *)
10789       pr "  if (r == %s) {\n" error_code;
10790       pr "    throw_exception (env, guestfs_last_error (g));\n";
10791       pr "    return %s;\n" no_ret;
10792       pr "  }\n";
10793
10794       (* Return value. *)
10795       (match fst style with
10796        | RErr -> ()
10797        | RInt _ -> pr "  return (jint) r;\n"
10798        | RBool _ -> pr "  return (jboolean) r;\n"
10799        | RInt64 _ -> pr "  return (jlong) r;\n"
10800        | RConstString _ -> pr "  return (*env)->NewStringUTF (env, r);\n"
10801        | RConstOptString _ ->
10802            pr "  return (*env)->NewStringUTF (env, r); /* XXX r NULL? */\n"
10803        | RString _ ->
10804            pr "  jr = (*env)->NewStringUTF (env, r);\n";
10805            pr "  free (r);\n";
10806            pr "  return jr;\n"
10807        | RStringList _ ->
10808            pr "  for (r_len = 0; r[r_len] != NULL; ++r_len) ;\n";
10809            pr "  cl = (*env)->FindClass (env, \"java/lang/String\");\n";
10810            pr "  jstr = (*env)->NewStringUTF (env, \"\");\n";
10811            pr "  jr = (*env)->NewObjectArray (env, r_len, cl, jstr);\n";
10812            pr "  for (i = 0; i < r_len; ++i) {\n";
10813            pr "    jstr = (*env)->NewStringUTF (env, r[i]);\n";
10814            pr "    (*env)->SetObjectArrayElement (env, jr, i, jstr);\n";
10815            pr "    free (r[i]);\n";
10816            pr "  }\n";
10817            pr "  free (r);\n";
10818            pr "  return jr;\n"
10819        | RStruct (_, typ) ->
10820            let jtyp = java_name_of_struct typ in
10821            let cols = cols_of_struct typ in
10822            generate_java_struct_return typ jtyp cols
10823        | RStructList (_, typ) ->
10824            let jtyp = java_name_of_struct typ in
10825            let cols = cols_of_struct typ in
10826            generate_java_struct_list_return typ jtyp cols
10827        | RHashtable _ ->
10828            (* XXX *)
10829            pr "  throw_exception (env, \"%s: internal error: please let us know how to make a Java HashMap from JNI bindings!\");\n" name;
10830            pr "  return NULL;\n"
10831        | RBufferOut _ ->
10832            pr "  jr = (*env)->NewStringUTF (env, r); /* XXX size */\n";
10833            pr "  free (r);\n";
10834            pr "  return jr;\n"
10835       );
10836
10837       pr "}\n";
10838       pr "\n"
10839   ) all_functions
10840
10841 and generate_java_struct_return typ jtyp cols =
10842   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
10843   pr "  jr = (*env)->AllocObject (env, cl);\n";
10844   List.iter (
10845     function
10846     | name, FString ->
10847         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10848         pr "  (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, r->%s));\n" name;
10849     | name, FUUID ->
10850         pr "  {\n";
10851         pr "    char s[33];\n";
10852         pr "    memcpy (s, r->%s, 32);\n" name;
10853         pr "    s[32] = 0;\n";
10854         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10855         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
10856         pr "  }\n";
10857     | name, FBuffer ->
10858         pr "  {\n";
10859         pr "    int len = r->%s_len;\n" name;
10860         pr "    char s[len+1];\n";
10861         pr "    memcpy (s, r->%s, len);\n" name;
10862         pr "    s[len] = 0;\n";
10863         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10864         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
10865         pr "  }\n";
10866     | name, (FBytes|FUInt64|FInt64) ->
10867         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
10868         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10869     | name, (FUInt32|FInt32) ->
10870         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
10871         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10872     | name, FOptPercent ->
10873         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
10874         pr "  (*env)->SetFloatField (env, jr, fl, r->%s);\n" name;
10875     | name, FChar ->
10876         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
10877         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10878   ) cols;
10879   pr "  free (r);\n";
10880   pr "  return jr;\n"
10881
10882 and generate_java_struct_list_return typ jtyp cols =
10883   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
10884   pr "  jr = (*env)->NewObjectArray (env, r->len, cl, NULL);\n";
10885   pr "  for (i = 0; i < r->len; ++i) {\n";
10886   pr "    jfl = (*env)->AllocObject (env, cl);\n";
10887   List.iter (
10888     function
10889     | name, FString ->
10890         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10891         pr "    (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, r->val[i].%s));\n" name;
10892     | name, FUUID ->
10893         pr "    {\n";
10894         pr "      char s[33];\n";
10895         pr "      memcpy (s, r->val[i].%s, 32);\n" name;
10896         pr "      s[32] = 0;\n";
10897         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10898         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
10899         pr "    }\n";
10900     | name, FBuffer ->
10901         pr "    {\n";
10902         pr "      int len = r->val[i].%s_len;\n" name;
10903         pr "      char s[len+1];\n";
10904         pr "      memcpy (s, r->val[i].%s, len);\n" name;
10905         pr "      s[len] = 0;\n";
10906         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10907         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
10908         pr "    }\n";
10909     | name, (FBytes|FUInt64|FInt64) ->
10910         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
10911         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10912     | name, (FUInt32|FInt32) ->
10913         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
10914         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10915     | name, FOptPercent ->
10916         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
10917         pr "    (*env)->SetFloatField (env, jfl, fl, r->val[i].%s);\n" name;
10918     | name, FChar ->
10919         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
10920         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10921   ) cols;
10922   pr "    (*env)->SetObjectArrayElement (env, jfl, i, jfl);\n";
10923   pr "  }\n";
10924   pr "  guestfs_free_%s_list (r);\n" typ;
10925   pr "  return jr;\n"
10926
10927 and generate_java_makefile_inc () =
10928   generate_header HashStyle GPLv2plus;
10929
10930   pr "java_built_sources = \\\n";
10931   List.iter (
10932     fun (typ, jtyp) ->
10933         pr "\tcom/redhat/et/libguestfs/%s.java \\\n" jtyp;
10934   ) java_structs;
10935   pr "\tcom/redhat/et/libguestfs/GuestFS.java\n"
10936
10937 and generate_haskell_hs () =
10938   generate_header HaskellStyle LGPLv2plus;
10939
10940   (* XXX We only know how to generate partial FFI for Haskell
10941    * at the moment.  Please help out!
10942    *)
10943   let can_generate style =
10944     match style with
10945     | RErr, _
10946     | RInt _, _
10947     | RInt64 _, _ -> true
10948     | RBool _, _
10949     | RConstString _, _
10950     | RConstOptString _, _
10951     | RString _, _
10952     | RStringList _, _
10953     | RStruct _, _
10954     | RStructList _, _
10955     | RHashtable _, _
10956     | RBufferOut _, _ -> false in
10957
10958   pr "\
10959 {-# INCLUDE <guestfs.h> #-}
10960 {-# LANGUAGE ForeignFunctionInterface #-}
10961
10962 module Guestfs (
10963   create";
10964
10965   (* List out the names of the actions we want to export. *)
10966   List.iter (
10967     fun (name, style, _, _, _, _, _) ->
10968       if can_generate style then pr ",\n  %s" name
10969   ) all_functions;
10970
10971   pr "
10972   ) where
10973
10974 -- Unfortunately some symbols duplicate ones already present
10975 -- in Prelude.  We don't know which, so we hard-code a list
10976 -- here.
10977 import Prelude hiding (truncate)
10978
10979 import Foreign
10980 import Foreign.C
10981 import Foreign.C.Types
10982 import IO
10983 import Control.Exception
10984 import Data.Typeable
10985
10986 data GuestfsS = GuestfsS            -- represents the opaque C struct
10987 type GuestfsP = Ptr GuestfsS        -- guestfs_h *
10988 type GuestfsH = ForeignPtr GuestfsS -- guestfs_h * with attached finalizer
10989
10990 -- XXX define properly later XXX
10991 data PV = PV
10992 data VG = VG
10993 data LV = LV
10994 data IntBool = IntBool
10995 data Stat = Stat
10996 data StatVFS = StatVFS
10997 data Hashtable = Hashtable
10998
10999 foreign import ccall unsafe \"guestfs_create\" c_create
11000   :: IO GuestfsP
11001 foreign import ccall unsafe \"&guestfs_close\" c_close
11002   :: FunPtr (GuestfsP -> IO ())
11003 foreign import ccall unsafe \"guestfs_set_error_handler\" c_set_error_handler
11004   :: GuestfsP -> Ptr CInt -> Ptr CInt -> IO ()
11005
11006 create :: IO GuestfsH
11007 create = do
11008   p <- c_create
11009   c_set_error_handler p nullPtr nullPtr
11010   h <- newForeignPtr c_close p
11011   return h
11012
11013 foreign import ccall unsafe \"guestfs_last_error\" c_last_error
11014   :: GuestfsP -> IO CString
11015
11016 -- last_error :: GuestfsH -> IO (Maybe String)
11017 -- last_error h = do
11018 --   str <- withForeignPtr h (\\p -> c_last_error p)
11019 --   maybePeek peekCString str
11020
11021 last_error :: GuestfsH -> IO (String)
11022 last_error h = do
11023   str <- withForeignPtr h (\\p -> c_last_error p)
11024   if (str == nullPtr)
11025     then return \"no error\"
11026     else peekCString str
11027
11028 ";
11029
11030   (* Generate wrappers for each foreign function. *)
11031   List.iter (
11032     fun (name, style, _, _, _, _, _) ->
11033       if can_generate style then (
11034         pr "foreign import ccall unsafe \"guestfs_%s\" c_%s\n" name name;
11035         pr "  :: ";
11036         generate_haskell_prototype ~handle:"GuestfsP" style;
11037         pr "\n";
11038         pr "\n";
11039         pr "%s :: " name;
11040         generate_haskell_prototype ~handle:"GuestfsH" ~hs:true style;
11041         pr "\n";
11042         pr "%s %s = do\n" name
11043           (String.concat " " ("h" :: List.map name_of_argt (snd style)));
11044         pr "  r <- ";
11045         (* Convert pointer arguments using with* functions. *)
11046         List.iter (
11047           function
11048           | FileIn n
11049           | FileOut n
11050           | Pathname n | Device n | Dev_or_Path n | String n | Key n ->
11051               pr "withCString %s $ \\%s -> " n n
11052           | BufferIn n ->
11053               pr "withCStringLen %s $ \\(%s, %s_size) -> " n n n
11054           | OptString n -> pr "maybeWith withCString %s $ \\%s -> " n n
11055           | StringList n | DeviceList n -> pr "withMany withCString %s $ \\%s -> withArray0 nullPtr %s $ \\%s -> " n n n n
11056           | Bool _ | Int _ | Int64 _ -> ()
11057         ) (snd style);
11058         (* Convert integer arguments. *)
11059         let args =
11060           List.map (
11061             function
11062             | Bool n -> sprintf "(fromBool %s)" n
11063             | Int n -> sprintf "(fromIntegral %s)" n
11064             | Int64 n -> sprintf "(fromIntegral %s)" n
11065             | FileIn n | FileOut n
11066             | Pathname n | Device n | Dev_or_Path n
11067             | String n | OptString n
11068             | StringList n | DeviceList n
11069             | Key n -> n
11070             | BufferIn n -> sprintf "%s (fromIntegral %s_size)" n n
11071           ) (snd style) in
11072         pr "withForeignPtr h (\\p -> c_%s %s)\n" name
11073           (String.concat " " ("p" :: args));
11074         (match fst style with
11075          | RErr | RInt _ | RInt64 _ | RBool _ ->
11076              pr "  if (r == -1)\n";
11077              pr "    then do\n";
11078              pr "      err <- last_error h\n";
11079              pr "      fail err\n";
11080          | RConstString _ | RConstOptString _ | RString _
11081          | RStringList _ | RStruct _
11082          | RStructList _ | RHashtable _ | RBufferOut _ ->
11083              pr "  if (r == nullPtr)\n";
11084              pr "    then do\n";
11085              pr "      err <- last_error h\n";
11086              pr "      fail err\n";
11087         );
11088         (match fst style with
11089          | RErr ->
11090              pr "    else return ()\n"
11091          | RInt _ ->
11092              pr "    else return (fromIntegral r)\n"
11093          | RInt64 _ ->
11094              pr "    else return (fromIntegral r)\n"
11095          | RBool _ ->
11096              pr "    else return (toBool r)\n"
11097          | RConstString _
11098          | RConstOptString _
11099          | RString _
11100          | RStringList _
11101          | RStruct _
11102          | RStructList _
11103          | RHashtable _
11104          | RBufferOut _ ->
11105              pr "    else return ()\n" (* XXXXXXXXXXXXXXXXXXXX *)
11106         );
11107         pr "\n";
11108       )
11109   ) all_functions
11110
11111 and generate_haskell_prototype ~handle ?(hs = false) style =
11112   pr "%s -> " handle;
11113   let string = if hs then "String" else "CString" in
11114   let int = if hs then "Int" else "CInt" in
11115   let bool = if hs then "Bool" else "CInt" in
11116   let int64 = if hs then "Integer" else "Int64" in
11117   List.iter (
11118     fun arg ->
11119       (match arg with
11120        | Pathname _ | Device _ | Dev_or_Path _ | String _ | Key _ ->
11121            pr "%s" string
11122        | BufferIn _ ->
11123            if hs then pr "String"
11124            else pr "CString -> CInt"
11125        | OptString _ -> if hs then pr "Maybe String" else pr "CString"
11126        | StringList _ | DeviceList _ -> if hs then pr "[String]" else pr "Ptr CString"
11127        | Bool _ -> pr "%s" bool
11128        | Int _ -> pr "%s" int
11129        | Int64 _ -> pr "%s" int
11130        | FileIn _ -> pr "%s" string
11131        | FileOut _ -> pr "%s" string
11132       );
11133       pr " -> ";
11134   ) (snd style);
11135   pr "IO (";
11136   (match fst style with
11137    | RErr -> if not hs then pr "CInt"
11138    | RInt _ -> pr "%s" int
11139    | RInt64 _ -> pr "%s" int64
11140    | RBool _ -> pr "%s" bool
11141    | RConstString _ -> pr "%s" string
11142    | RConstOptString _ -> pr "Maybe %s" string
11143    | RString _ -> pr "%s" string
11144    | RStringList _ -> pr "[%s]" string
11145    | RStruct (_, typ) ->
11146        let name = java_name_of_struct typ in
11147        pr "%s" name
11148    | RStructList (_, typ) ->
11149        let name = java_name_of_struct typ in
11150        pr "[%s]" name
11151    | RHashtable _ -> pr "Hashtable"
11152    | RBufferOut _ -> pr "%s" string
11153   );
11154   pr ")"
11155
11156 and generate_csharp () =
11157   generate_header CPlusPlusStyle LGPLv2plus;
11158
11159   (* XXX Make this configurable by the C# assembly users. *)
11160   let library = "libguestfs.so.0" in
11161
11162   pr "\
11163 // These C# bindings are highly experimental at present.
11164 //
11165 // Firstly they only work on Linux (ie. Mono).  In order to get them
11166 // to work on Windows (ie. .Net) you would need to port the library
11167 // itself to Windows first.
11168 //
11169 // The second issue is that some calls are known to be incorrect and
11170 // can cause Mono to segfault.  Particularly: calls which pass or
11171 // return string[], or return any structure value.  This is because
11172 // we haven't worked out the correct way to do this from C#.
11173 //
11174 // The third issue is that when compiling you get a lot of warnings.
11175 // We are not sure whether the warnings are important or not.
11176 //
11177 // Fourthly we do not routinely build or test these bindings as part
11178 // of the make && make check cycle, which means that regressions might
11179 // go unnoticed.
11180 //
11181 // Suggestions and patches are welcome.
11182
11183 // To compile:
11184 //
11185 // gmcs Libguestfs.cs
11186 // mono Libguestfs.exe
11187 //
11188 // (You'll probably want to add a Test class / static main function
11189 // otherwise this won't do anything useful).
11190
11191 using System;
11192 using System.IO;
11193 using System.Runtime.InteropServices;
11194 using System.Runtime.Serialization;
11195 using System.Collections;
11196
11197 namespace Guestfs
11198 {
11199   class Error : System.ApplicationException
11200   {
11201     public Error (string message) : base (message) {}
11202     protected Error (SerializationInfo info, StreamingContext context) {}
11203   }
11204
11205   class Guestfs
11206   {
11207     IntPtr _handle;
11208
11209     [DllImport (\"%s\")]
11210     static extern IntPtr guestfs_create ();
11211
11212     public Guestfs ()
11213     {
11214       _handle = guestfs_create ();
11215       if (_handle == IntPtr.Zero)
11216         throw new Error (\"could not create guestfs handle\");
11217     }
11218
11219     [DllImport (\"%s\")]
11220     static extern void guestfs_close (IntPtr h);
11221
11222     ~Guestfs ()
11223     {
11224       guestfs_close (_handle);
11225     }
11226
11227     [DllImport (\"%s\")]
11228     static extern string guestfs_last_error (IntPtr h);
11229
11230 " library library library;
11231
11232   (* Generate C# structure bindings.  We prefix struct names with
11233    * underscore because C# cannot have conflicting struct names and
11234    * method names (eg. "class stat" and "stat").
11235    *)
11236   List.iter (
11237     fun (typ, cols) ->
11238       pr "    [StructLayout (LayoutKind.Sequential)]\n";
11239       pr "    public class _%s {\n" typ;
11240       List.iter (
11241         function
11242         | name, FChar -> pr "      char %s;\n" name
11243         | name, FString -> pr "      string %s;\n" name
11244         | name, FBuffer ->
11245             pr "      uint %s_len;\n" name;
11246             pr "      string %s;\n" name
11247         | name, FUUID ->
11248             pr "      [MarshalAs (UnmanagedType.ByValTStr, SizeConst=16)]\n";
11249             pr "      string %s;\n" name
11250         | name, FUInt32 -> pr "      uint %s;\n" name
11251         | name, FInt32 -> pr "      int %s;\n" name
11252         | name, (FUInt64|FBytes) -> pr "      ulong %s;\n" name
11253         | name, FInt64 -> pr "      long %s;\n" name
11254         | name, FOptPercent -> pr "      float %s; /* [0..100] or -1 */\n" name
11255       ) cols;
11256       pr "    }\n";
11257       pr "\n"
11258   ) structs;
11259
11260   (* Generate C# function bindings. *)
11261   List.iter (
11262     fun (name, style, _, _, _, shortdesc, _) ->
11263       let rec csharp_return_type () =
11264         match fst style with
11265         | RErr -> "void"
11266         | RBool n -> "bool"
11267         | RInt n -> "int"
11268         | RInt64 n -> "long"
11269         | RConstString n
11270         | RConstOptString n
11271         | RString n
11272         | RBufferOut n -> "string"
11273         | RStruct (_,n) -> "_" ^ n
11274         | RHashtable n -> "Hashtable"
11275         | RStringList n -> "string[]"
11276         | RStructList (_,n) -> sprintf "_%s[]" n
11277
11278       and c_return_type () =
11279         match fst style with
11280         | RErr
11281         | RBool _
11282         | RInt _ -> "int"
11283         | RInt64 _ -> "long"
11284         | RConstString _
11285         | RConstOptString _
11286         | RString _
11287         | RBufferOut _ -> "string"
11288         | RStruct (_,n) -> "_" ^ n
11289         | RHashtable _
11290         | RStringList _ -> "string[]"
11291         | RStructList (_,n) -> sprintf "_%s[]" n
11292
11293       and c_error_comparison () =
11294         match fst style with
11295         | RErr
11296         | RBool _
11297         | RInt _
11298         | RInt64 _ -> "== -1"
11299         | RConstString _
11300         | RConstOptString _
11301         | RString _
11302         | RBufferOut _
11303         | RStruct (_,_)
11304         | RHashtable _
11305         | RStringList _
11306         | RStructList (_,_) -> "== null"
11307
11308       and generate_extern_prototype () =
11309         pr "    static extern %s guestfs_%s (IntPtr h"
11310           (c_return_type ()) name;
11311         List.iter (
11312           function
11313           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
11314           | FileIn n | FileOut n
11315           | Key n
11316           | BufferIn n ->
11317               pr ", [In] string %s" n
11318           | StringList n | DeviceList n ->
11319               pr ", [In] string[] %s" n
11320           | Bool n ->
11321               pr ", bool %s" n
11322           | Int n ->
11323               pr ", int %s" n
11324           | Int64 n ->
11325               pr ", long %s" n
11326         ) (snd style);
11327         pr ");\n"
11328
11329       and generate_public_prototype () =
11330         pr "    public %s %s (" (csharp_return_type ()) name;
11331         let comma = ref false in
11332         let next () =
11333           if !comma then pr ", ";
11334           comma := true
11335         in
11336         List.iter (
11337           function
11338           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
11339           | FileIn n | FileOut n
11340           | Key n
11341           | BufferIn n ->
11342               next (); pr "string %s" n
11343           | StringList n | DeviceList n ->
11344               next (); pr "string[] %s" n
11345           | Bool n ->
11346               next (); pr "bool %s" n
11347           | Int n ->
11348               next (); pr "int %s" n
11349           | Int64 n ->
11350               next (); pr "long %s" n
11351         ) (snd style);
11352         pr ")\n"
11353
11354       and generate_call () =
11355         pr "guestfs_%s (_handle" name;
11356         List.iter (fun arg -> pr ", %s" (name_of_argt arg)) (snd style);
11357         pr ");\n";
11358       in
11359
11360       pr "    [DllImport (\"%s\")]\n" library;
11361       generate_extern_prototype ();
11362       pr "\n";
11363       pr "    /// <summary>\n";
11364       pr "    /// %s\n" shortdesc;
11365       pr "    /// </summary>\n";
11366       generate_public_prototype ();
11367       pr "    {\n";
11368       pr "      %s r;\n" (c_return_type ());
11369       pr "      r = ";
11370       generate_call ();
11371       pr "      if (r %s)\n" (c_error_comparison ());
11372       pr "        throw new Error (guestfs_last_error (_handle));\n";
11373       (match fst style with
11374        | RErr -> ()
11375        | RBool _ ->
11376            pr "      return r != 0 ? true : false;\n"
11377        | RHashtable _ ->
11378            pr "      Hashtable rr = new Hashtable ();\n";
11379            pr "      for (size_t i = 0; i < r.Length; i += 2)\n";
11380            pr "        rr.Add (r[i], r[i+1]);\n";
11381            pr "      return rr;\n"
11382        | RInt _ | RInt64 _ | RConstString _ | RConstOptString _
11383        | RString _ | RBufferOut _ | RStruct _ | RStringList _
11384        | RStructList _ ->
11385            pr "      return r;\n"
11386       );
11387       pr "    }\n";
11388       pr "\n";
11389   ) all_functions_sorted;
11390
11391   pr "  }
11392 }
11393 "
11394
11395 and generate_bindtests () =
11396   generate_header CStyle LGPLv2plus;
11397
11398   pr "\
11399 #include <stdio.h>
11400 #include <stdlib.h>
11401 #include <inttypes.h>
11402 #include <string.h>
11403
11404 #include \"guestfs.h\"
11405 #include \"guestfs-internal.h\"
11406 #include \"guestfs-internal-actions.h\"
11407 #include \"guestfs_protocol.h\"
11408
11409 #define error guestfs_error
11410 #define safe_calloc guestfs_safe_calloc
11411 #define safe_malloc guestfs_safe_malloc
11412
11413 static void
11414 print_strings (char *const *argv)
11415 {
11416   size_t argc;
11417
11418   printf (\"[\");
11419   for (argc = 0; argv[argc] != NULL; ++argc) {
11420     if (argc > 0) printf (\", \");
11421     printf (\"\\\"%%s\\\"\", argv[argc]);
11422   }
11423   printf (\"]\\n\");
11424 }
11425
11426 /* The test0 function prints its parameters to stdout. */
11427 ";
11428
11429   let test0, tests =
11430     match test_functions with
11431     | [] -> assert false
11432     | test0 :: tests -> test0, tests in
11433
11434   let () =
11435     let (name, style, _, _, _, _, _) = test0 in
11436     generate_prototype ~extern:false ~semicolon:false ~newline:true
11437       ~handle:"g" ~prefix:"guestfs__" name style;
11438     pr "{\n";
11439     List.iter (
11440       function
11441       | Pathname n
11442       | Device n | Dev_or_Path n
11443       | String n
11444       | FileIn n
11445       | FileOut n
11446       | Key n -> pr "  printf (\"%%s\\n\", %s);\n" n
11447       | BufferIn n ->
11448           pr "  {\n";
11449           pr "    size_t i;\n";
11450           pr "    for (i = 0; i < %s_size; ++i)\n" n;
11451           pr "      printf (\"<%%02x>\", %s[i]);\n" n;
11452           pr "    printf (\"\\n\");\n";
11453           pr "  }\n";
11454       | OptString n -> pr "  printf (\"%%s\\n\", %s ? %s : \"null\");\n" n n
11455       | StringList n | DeviceList n -> pr "  print_strings (%s);\n" n
11456       | Bool n -> pr "  printf (\"%%s\\n\", %s ? \"true\" : \"false\");\n" n
11457       | Int n -> pr "  printf (\"%%d\\n\", %s);\n" n
11458       | Int64 n -> pr "  printf (\"%%\" PRIi64 \"\\n\", %s);\n" n
11459     ) (snd style);
11460     pr "  /* Java changes stdout line buffering so we need this: */\n";
11461     pr "  fflush (stdout);\n";
11462     pr "  return 0;\n";
11463     pr "}\n";
11464     pr "\n" in
11465
11466   List.iter (
11467     fun (name, style, _, _, _, _, _) ->
11468       if String.sub name (String.length name - 3) 3 <> "err" then (
11469         pr "/* Test normal return. */\n";
11470         generate_prototype ~extern:false ~semicolon:false ~newline:true
11471           ~handle:"g" ~prefix:"guestfs__" name style;
11472         pr "{\n";
11473         (match fst style with
11474          | RErr ->
11475              pr "  return 0;\n"
11476          | RInt _ ->
11477              pr "  int r;\n";
11478              pr "  sscanf (val, \"%%d\", &r);\n";
11479              pr "  return r;\n"
11480          | RInt64 _ ->
11481              pr "  int64_t r;\n";
11482              pr "  sscanf (val, \"%%\" SCNi64, &r);\n";
11483              pr "  return r;\n"
11484          | RBool _ ->
11485              pr "  return STREQ (val, \"true\");\n"
11486          | RConstString _
11487          | RConstOptString _ ->
11488              (* Can't return the input string here.  Return a static
11489               * string so we ensure we get a segfault if the caller
11490               * tries to free it.
11491               *)
11492              pr "  return \"static string\";\n"
11493          | RString _ ->
11494              pr "  return strdup (val);\n"
11495          | RStringList _ ->
11496              pr "  char **strs;\n";
11497              pr "  int n, i;\n";
11498              pr "  sscanf (val, \"%%d\", &n);\n";
11499              pr "  strs = safe_malloc (g, (n+1) * sizeof (char *));\n";
11500              pr "  for (i = 0; i < n; ++i) {\n";
11501              pr "    strs[i] = safe_malloc (g, 16);\n";
11502              pr "    snprintf (strs[i], 16, \"%%d\", i);\n";
11503              pr "  }\n";
11504              pr "  strs[n] = NULL;\n";
11505              pr "  return strs;\n"
11506          | RStruct (_, typ) ->
11507              pr "  struct guestfs_%s *r;\n" typ;
11508              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
11509              pr "  return r;\n"
11510          | RStructList (_, typ) ->
11511              pr "  struct guestfs_%s_list *r;\n" typ;
11512              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
11513              pr "  sscanf (val, \"%%d\", &r->len);\n";
11514              pr "  r->val = safe_calloc (g, r->len, sizeof *r->val);\n";
11515              pr "  return r;\n"
11516          | RHashtable _ ->
11517              pr "  char **strs;\n";
11518              pr "  int n, i;\n";
11519              pr "  sscanf (val, \"%%d\", &n);\n";
11520              pr "  strs = safe_malloc (g, (n*2+1) * sizeof (*strs));\n";
11521              pr "  for (i = 0; i < n; ++i) {\n";
11522              pr "    strs[i*2] = safe_malloc (g, 16);\n";
11523              pr "    strs[i*2+1] = safe_malloc (g, 16);\n";
11524              pr "    snprintf (strs[i*2], 16, \"%%d\", i);\n";
11525              pr "    snprintf (strs[i*2+1], 16, \"%%d\", i);\n";
11526              pr "  }\n";
11527              pr "  strs[n*2] = NULL;\n";
11528              pr "  return strs;\n"
11529          | RBufferOut _ ->
11530              pr "  return strdup (val);\n"
11531         );
11532         pr "}\n";
11533         pr "\n"
11534       ) else (
11535         pr "/* Test error return. */\n";
11536         generate_prototype ~extern:false ~semicolon:false ~newline:true
11537           ~handle:"g" ~prefix:"guestfs__" name style;
11538         pr "{\n";
11539         pr "  error (g, \"error\");\n";
11540         (match fst style with
11541          | RErr | RInt _ | RInt64 _ | RBool _ ->
11542              pr "  return -1;\n"
11543          | RConstString _ | RConstOptString _
11544          | RString _ | RStringList _ | RStruct _
11545          | RStructList _
11546          | RHashtable _
11547          | RBufferOut _ ->
11548              pr "  return NULL;\n"
11549         );
11550         pr "}\n";
11551         pr "\n"
11552       )
11553   ) tests
11554
11555 and generate_ocaml_bindtests () =
11556   generate_header OCamlStyle GPLv2plus;
11557
11558   pr "\
11559 let () =
11560   let g = Guestfs.create () in
11561 ";
11562
11563   let mkargs args =
11564     String.concat " " (
11565       List.map (
11566         function
11567         | CallString s -> "\"" ^ s ^ "\""
11568         | CallOptString None -> "None"
11569         | CallOptString (Some s) -> sprintf "(Some \"%s\")" s
11570         | CallStringList xs ->
11571             "[|" ^ String.concat ";" (List.map (sprintf "\"%s\"") xs) ^ "|]"
11572         | CallInt i when i >= 0 -> string_of_int i
11573         | CallInt i (* when i < 0 *) -> "(" ^ string_of_int i ^ ")"
11574         | CallInt64 i when i >= 0L -> Int64.to_string i ^ "L"
11575         | CallInt64 i (* when i < 0L *) -> "(" ^ Int64.to_string i ^ "L)"
11576         | CallBool b -> string_of_bool b
11577         | CallBuffer s -> sprintf "%S" s
11578       ) args
11579     )
11580   in
11581
11582   generate_lang_bindtests (
11583     fun f args -> pr "  Guestfs.%s g %s;\n" f (mkargs args)
11584   );
11585
11586   pr "print_endline \"EOF\"\n"
11587
11588 and generate_perl_bindtests () =
11589   pr "#!/usr/bin/perl -w\n";
11590   generate_header HashStyle GPLv2plus;
11591
11592   pr "\
11593 use strict;
11594
11595 use Sys::Guestfs;
11596
11597 my $g = Sys::Guestfs->new ();
11598 ";
11599
11600   let mkargs args =
11601     String.concat ", " (
11602       List.map (
11603         function
11604         | CallString s -> "\"" ^ s ^ "\""
11605         | CallOptString None -> "undef"
11606         | CallOptString (Some s) -> sprintf "\"%s\"" s
11607         | CallStringList xs ->
11608             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11609         | CallInt i -> string_of_int i
11610         | CallInt64 i -> Int64.to_string i
11611         | CallBool b -> if b then "1" else "0"
11612         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11613       ) args
11614     )
11615   in
11616
11617   generate_lang_bindtests (
11618     fun f args -> pr "$g->%s (%s);\n" f (mkargs args)
11619   );
11620
11621   pr "print \"EOF\\n\"\n"
11622
11623 and generate_python_bindtests () =
11624   generate_header HashStyle GPLv2plus;
11625
11626   pr "\
11627 import guestfs
11628
11629 g = guestfs.GuestFS ()
11630 ";
11631
11632   let mkargs args =
11633     String.concat ", " (
11634       List.map (
11635         function
11636         | CallString s -> "\"" ^ s ^ "\""
11637         | CallOptString None -> "None"
11638         | CallOptString (Some s) -> sprintf "\"%s\"" s
11639         | CallStringList xs ->
11640             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11641         | CallInt i -> string_of_int i
11642         | CallInt64 i -> Int64.to_string i
11643         | CallBool b -> if b then "1" else "0"
11644         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11645       ) args
11646     )
11647   in
11648
11649   generate_lang_bindtests (
11650     fun f args -> pr "g.%s (%s)\n" f (mkargs args)
11651   );
11652
11653   pr "print \"EOF\"\n"
11654
11655 and generate_ruby_bindtests () =
11656   generate_header HashStyle GPLv2plus;
11657
11658   pr "\
11659 require 'guestfs'
11660
11661 g = Guestfs::create()
11662 ";
11663
11664   let mkargs args =
11665     String.concat ", " (
11666       List.map (
11667         function
11668         | CallString s -> "\"" ^ s ^ "\""
11669         | CallOptString None -> "nil"
11670         | CallOptString (Some s) -> sprintf "\"%s\"" s
11671         | CallStringList xs ->
11672             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11673         | CallInt i -> string_of_int i
11674         | CallInt64 i -> Int64.to_string i
11675         | CallBool b -> string_of_bool b
11676         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11677       ) args
11678     )
11679   in
11680
11681   generate_lang_bindtests (
11682     fun f args -> pr "g.%s(%s)\n" f (mkargs args)
11683   );
11684
11685   pr "print \"EOF\\n\"\n"
11686
11687 and generate_java_bindtests () =
11688   generate_header CStyle GPLv2plus;
11689
11690   pr "\
11691 import com.redhat.et.libguestfs.*;
11692
11693 public class Bindtests {
11694     public static void main (String[] argv)
11695     {
11696         try {
11697             GuestFS g = new GuestFS ();
11698 ";
11699
11700   let mkargs args =
11701     String.concat ", " (
11702       List.map (
11703         function
11704         | CallString s -> "\"" ^ s ^ "\""
11705         | CallOptString None -> "null"
11706         | CallOptString (Some s) -> sprintf "\"%s\"" s
11707         | CallStringList xs ->
11708             "new String[]{" ^
11709               String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "}"
11710         | CallInt i -> string_of_int i
11711         | CallInt64 i -> Int64.to_string i
11712         | CallBool b -> string_of_bool b
11713         | CallBuffer s ->
11714             "new byte[] { " ^ String.concat "," (
11715               map_chars (fun c -> string_of_int (Char.code c)) s
11716             ) ^ " }"
11717       ) args
11718     )
11719   in
11720
11721   generate_lang_bindtests (
11722     fun f args -> pr "            g.%s (%s);\n" f (mkargs args)
11723   );
11724
11725   pr "
11726             System.out.println (\"EOF\");
11727         }
11728         catch (Exception exn) {
11729             System.err.println (exn);
11730             System.exit (1);
11731         }
11732     }
11733 }
11734 "
11735
11736 and generate_haskell_bindtests () =
11737   generate_header HaskellStyle GPLv2plus;
11738
11739   pr "\
11740 module Bindtests where
11741 import qualified Guestfs
11742
11743 main = do
11744   g <- Guestfs.create
11745 ";
11746
11747   let mkargs args =
11748     String.concat " " (
11749       List.map (
11750         function
11751         | CallString s -> "\"" ^ s ^ "\""
11752         | CallOptString None -> "Nothing"
11753         | CallOptString (Some s) -> sprintf "(Just \"%s\")" s
11754         | CallStringList xs ->
11755             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11756         | CallInt i when i < 0 -> "(" ^ string_of_int i ^ ")"
11757         | CallInt i -> string_of_int i
11758         | CallInt64 i when i < 0L -> "(" ^ Int64.to_string i ^ ")"
11759         | CallInt64 i -> Int64.to_string i
11760         | CallBool true -> "True"
11761         | CallBool false -> "False"
11762         | CallBuffer s -> "\"" ^ c_quote s ^ "\""
11763       ) args
11764     )
11765   in
11766
11767   generate_lang_bindtests (
11768     fun f args -> pr "  Guestfs.%s g %s\n" f (mkargs args)
11769   );
11770
11771   pr "  putStrLn \"EOF\"\n"
11772
11773 (* Language-independent bindings tests - we do it this way to
11774  * ensure there is parity in testing bindings across all languages.
11775  *)
11776 and generate_lang_bindtests call =
11777   call "test0" [CallString "abc"; CallOptString (Some "def");
11778                 CallStringList []; CallBool false;
11779                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11780                 CallBuffer "abc\000abc"];
11781   call "test0" [CallString "abc"; CallOptString None;
11782                 CallStringList []; CallBool false;
11783                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11784                 CallBuffer "abc\000abc"];
11785   call "test0" [CallString ""; CallOptString (Some "def");
11786                 CallStringList []; CallBool false;
11787                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11788                 CallBuffer "abc\000abc"];
11789   call "test0" [CallString ""; CallOptString (Some "");
11790                 CallStringList []; CallBool false;
11791                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11792                 CallBuffer "abc\000abc"];
11793   call "test0" [CallString "abc"; CallOptString (Some "def");
11794                 CallStringList ["1"]; CallBool false;
11795                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11796                 CallBuffer "abc\000abc"];
11797   call "test0" [CallString "abc"; CallOptString (Some "def");
11798                 CallStringList ["1"; "2"]; CallBool false;
11799                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11800                 CallBuffer "abc\000abc"];
11801   call "test0" [CallString "abc"; CallOptString (Some "def");
11802                 CallStringList ["1"]; CallBool true;
11803                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456";
11804                 CallBuffer "abc\000abc"];
11805   call "test0" [CallString "abc"; CallOptString (Some "def");
11806                 CallStringList ["1"]; CallBool false;
11807                 CallInt (-1); CallInt64 (-1L); CallString "123"; CallString "456";
11808                 CallBuffer "abc\000abc"];
11809   call "test0" [CallString "abc"; CallOptString (Some "def");
11810                 CallStringList ["1"]; CallBool false;
11811                 CallInt (-2); CallInt64 (-2L); CallString "123"; CallString "456";
11812                 CallBuffer "abc\000abc"];
11813   call "test0" [CallString "abc"; CallOptString (Some "def");
11814                 CallStringList ["1"]; CallBool false;
11815                 CallInt 1; CallInt64 1L; CallString "123"; CallString "456";
11816                 CallBuffer "abc\000abc"];
11817   call "test0" [CallString "abc"; CallOptString (Some "def");
11818                 CallStringList ["1"]; CallBool false;
11819                 CallInt 2; CallInt64 2L; CallString "123"; CallString "456";
11820                 CallBuffer "abc\000abc"];
11821   call "test0" [CallString "abc"; CallOptString (Some "def");
11822                 CallStringList ["1"]; CallBool false;
11823                 CallInt 4095; CallInt64 4095L; CallString "123"; CallString "456";
11824                 CallBuffer "abc\000abc"];
11825   call "test0" [CallString "abc"; CallOptString (Some "def");
11826                 CallStringList ["1"]; CallBool false;
11827                 CallInt 0; CallInt64 0L; CallString ""; CallString "";
11828                 CallBuffer "abc\000abc"]
11829
11830 (* XXX Add here tests of the return and error functions. *)
11831
11832 (* Code to generator bindings for virt-inspector.  Currently only
11833  * implemented for OCaml code (for virt-p2v 2.0).
11834  *)
11835 let rng_input = "inspector/virt-inspector.rng"
11836
11837 (* Read the input file and parse it into internal structures.  This is
11838  * by no means a complete RELAX NG parser, but is just enough to be
11839  * able to parse the specific input file.
11840  *)
11841 type rng =
11842   | Element of string * rng list        (* <element name=name/> *)
11843   | Attribute of string * rng list        (* <attribute name=name/> *)
11844   | Interleave of rng list                (* <interleave/> *)
11845   | ZeroOrMore of rng                        (* <zeroOrMore/> *)
11846   | OneOrMore of rng                        (* <oneOrMore/> *)
11847   | Optional of rng                        (* <optional/> *)
11848   | Choice of string list                (* <choice><value/>*</choice> *)
11849   | Value of string                        (* <value>str</value> *)
11850   | Text                                (* <text/> *)
11851
11852 let rec string_of_rng = function
11853   | Element (name, xs) ->
11854       "Element (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
11855   | Attribute (name, xs) ->
11856       "Attribute (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
11857   | Interleave xs -> "Interleave (" ^ string_of_rng_list xs ^ ")"
11858   | ZeroOrMore rng -> "ZeroOrMore (" ^ string_of_rng rng ^ ")"
11859   | OneOrMore rng -> "OneOrMore (" ^ string_of_rng rng ^ ")"
11860   | Optional rng -> "Optional (" ^ string_of_rng rng ^ ")"
11861   | Choice values -> "Choice [" ^ String.concat ", " values ^ "]"
11862   | Value value -> "Value \"" ^ value ^ "\""
11863   | Text -> "Text"
11864
11865 and string_of_rng_list xs =
11866   String.concat ", " (List.map string_of_rng xs)
11867
11868 let rec parse_rng ?defines context = function
11869   | [] -> []
11870   | Xml.Element ("element", ["name", name], children) :: rest ->
11871       Element (name, parse_rng ?defines context children)
11872       :: parse_rng ?defines context rest
11873   | Xml.Element ("attribute", ["name", name], children) :: rest ->
11874       Attribute (name, parse_rng ?defines context children)
11875       :: parse_rng ?defines context rest
11876   | Xml.Element ("interleave", [], children) :: rest ->
11877       Interleave (parse_rng ?defines context children)
11878       :: parse_rng ?defines context rest
11879   | Xml.Element ("zeroOrMore", [], [child]) :: rest ->
11880       let rng = parse_rng ?defines context [child] in
11881       (match rng with
11882        | [child] -> ZeroOrMore child :: parse_rng ?defines context rest
11883        | _ ->
11884            failwithf "%s: <zeroOrMore> contains more than one child element"
11885              context
11886       )
11887   | Xml.Element ("oneOrMore", [], [child]) :: rest ->
11888       let rng = parse_rng ?defines context [child] in
11889       (match rng with
11890        | [child] -> OneOrMore child :: parse_rng ?defines context rest
11891        | _ ->
11892            failwithf "%s: <oneOrMore> contains more than one child element"
11893              context
11894       )
11895   | Xml.Element ("optional", [], [child]) :: rest ->
11896       let rng = parse_rng ?defines context [child] in
11897       (match rng with
11898        | [child] -> Optional child :: parse_rng ?defines context rest
11899        | _ ->
11900            failwithf "%s: <optional> contains more than one child element"
11901              context
11902       )
11903   | Xml.Element ("choice", [], children) :: rest ->
11904       let values = List.map (
11905         function Xml.Element ("value", [], [Xml.PCData value]) -> value
11906         | _ ->
11907             failwithf "%s: can't handle anything except <value> in <choice>"
11908               context
11909       ) children in
11910       Choice values
11911       :: parse_rng ?defines context rest
11912   | Xml.Element ("value", [], [Xml.PCData value]) :: rest ->
11913       Value value :: parse_rng ?defines context rest
11914   | Xml.Element ("text", [], []) :: rest ->
11915       Text :: parse_rng ?defines context rest
11916   | Xml.Element ("ref", ["name", name], []) :: rest ->
11917       (* Look up the reference.  Because of limitations in this parser,
11918        * we can't handle arbitrarily nested <ref> yet.  You can only
11919        * use <ref> from inside <start>.
11920        *)
11921       (match defines with
11922        | None ->
11923            failwithf "%s: contains <ref>, but no refs are defined yet" context
11924        | Some map ->
11925            let rng = StringMap.find name map in
11926            rng @ parse_rng ?defines context rest
11927       )
11928   | x :: _ ->
11929       failwithf "%s: can't handle '%s' in schema" context (Xml.to_string x)
11930
11931 let grammar =
11932   let xml = Xml.parse_file rng_input in
11933   match xml with
11934   | Xml.Element ("grammar", _,
11935                  Xml.Element ("start", _, gram) :: defines) ->
11936       (* The <define/> elements are referenced in the <start> section,
11937        * so build a map of those first.
11938        *)
11939       let defines = List.fold_left (
11940         fun map ->
11941           function Xml.Element ("define", ["name", name], defn) ->
11942             StringMap.add name defn map
11943           | _ ->
11944               failwithf "%s: expected <define name=name/>" rng_input
11945       ) StringMap.empty defines in
11946       let defines = StringMap.mapi parse_rng defines in
11947
11948       (* Parse the <start> clause, passing the defines. *)
11949       parse_rng ~defines "<start>" gram
11950   | _ ->
11951       failwithf "%s: input is not <grammar><start/><define>*</grammar>"
11952         rng_input
11953
11954 let name_of_field = function
11955   | Element (name, _) | Attribute (name, _)
11956   | ZeroOrMore (Element (name, _))
11957   | OneOrMore (Element (name, _))
11958   | Optional (Element (name, _)) -> name
11959   | Optional (Attribute (name, _)) -> name
11960   | Text -> (* an unnamed field in an element *)
11961       "data"
11962   | rng ->
11963       failwithf "name_of_field failed at: %s" (string_of_rng rng)
11964
11965 (* At the moment this function only generates OCaml types.  However we
11966  * should parameterize it later so it can generate types/structs in a
11967  * variety of languages.
11968  *)
11969 let generate_types xs =
11970   (* A simple type is one that can be printed out directly, eg.
11971    * "string option".  A complex type is one which has a name and has
11972    * to be defined via another toplevel definition, eg. a struct.
11973    *
11974    * generate_type generates code for either simple or complex types.
11975    * In the simple case, it returns the string ("string option").  In
11976    * the complex case, it returns the name ("mountpoint").  In the
11977    * complex case it has to print out the definition before returning,
11978    * so it should only be called when we are at the beginning of a
11979    * new line (BOL context).
11980    *)
11981   let rec generate_type = function
11982     | Text ->                                (* string *)
11983         "string", true
11984     | Choice values ->                        (* [`val1|`val2|...] *)
11985         "[" ^ String.concat "|" (List.map ((^)"`") values) ^ "]", true
11986     | ZeroOrMore rng ->                        (* <rng> list *)
11987         let t, is_simple = generate_type rng in
11988         t ^ " list (* 0 or more *)", is_simple
11989     | OneOrMore rng ->                        (* <rng> list *)
11990         let t, is_simple = generate_type rng in
11991         t ^ " list (* 1 or more *)", is_simple
11992                                         (* virt-inspector hack: bool *)
11993     | Optional (Attribute (name, [Value "1"])) ->
11994         "bool", true
11995     | Optional rng ->                        (* <rng> list *)
11996         let t, is_simple = generate_type rng in
11997         t ^ " option", is_simple
11998                                         (* type name = { fields ... } *)
11999     | Element (name, fields) when is_attrs_interleave fields ->
12000         generate_type_struct name (get_attrs_interleave fields)
12001     | Element (name, [field])                (* type name = field *)
12002     | Attribute (name, [field]) ->
12003         let t, is_simple = generate_type field in
12004         if is_simple then (t, true)
12005         else (
12006           pr "type %s = %s\n" name t;
12007           name, false
12008         )
12009     | Element (name, fields) ->              (* type name = { fields ... } *)
12010         generate_type_struct name fields
12011     | rng ->
12012         failwithf "generate_type failed at: %s" (string_of_rng rng)
12013
12014   and is_attrs_interleave = function
12015     | [Interleave _] -> true
12016     | Attribute _ :: fields -> is_attrs_interleave fields
12017     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
12018     | _ -> false
12019
12020   and get_attrs_interleave = function
12021     | [Interleave fields] -> fields
12022     | ((Attribute _) as field) :: fields
12023     | ((Optional (Attribute _)) as field) :: fields ->
12024         field :: get_attrs_interleave fields
12025     | _ -> assert false
12026
12027   and generate_types xs =
12028     List.iter (fun x -> ignore (generate_type x)) xs
12029
12030   and generate_type_struct name fields =
12031     (* Calculate the types of the fields first.  We have to do this
12032      * before printing anything so we are still in BOL context.
12033      *)
12034     let types = List.map fst (List.map generate_type fields) in
12035
12036     (* Special case of a struct containing just a string and another
12037      * field.  Turn it into an assoc list.
12038      *)
12039     match types with
12040     | ["string"; other] ->
12041         let fname1, fname2 =
12042           match fields with
12043           | [f1; f2] -> name_of_field f1, name_of_field f2
12044           | _ -> assert false in
12045         pr "type %s = string * %s (* %s -> %s *)\n" name other fname1 fname2;
12046         name, false
12047
12048     | types ->
12049         pr "type %s = {\n" name;
12050         List.iter (
12051           fun (field, ftype) ->
12052             let fname = name_of_field field in
12053             pr "  %s_%s : %s;\n" name fname ftype
12054         ) (List.combine fields types);
12055         pr "}\n";
12056         (* Return the name of this type, and
12057          * false because it's not a simple type.
12058          *)
12059         name, false
12060   in
12061
12062   generate_types xs
12063
12064 let generate_parsers xs =
12065   (* As for generate_type above, generate_parser makes a parser for
12066    * some type, and returns the name of the parser it has generated.
12067    * Because it (may) need to print something, it should always be
12068    * called in BOL context.
12069    *)
12070   let rec generate_parser = function
12071     | Text ->                                (* string *)
12072         "string_child_or_empty"
12073     | Choice values ->                        (* [`val1|`val2|...] *)
12074         sprintf "(fun x -> match Xml.pcdata (first_child x) with %s | str -> failwith (\"unexpected field value: \" ^ str))"
12075           (String.concat "|"
12076              (List.map (fun v -> sprintf "%S -> `%s" v v) values))
12077     | ZeroOrMore rng ->                        (* <rng> list *)
12078         let pa = generate_parser rng in
12079         sprintf "(fun x -> List.map %s (Xml.children x))" pa
12080     | OneOrMore rng ->                        (* <rng> list *)
12081         let pa = generate_parser rng in
12082         sprintf "(fun x -> List.map %s (Xml.children x))" pa
12083                                         (* virt-inspector hack: bool *)
12084     | Optional (Attribute (name, [Value "1"])) ->
12085         sprintf "(fun x -> try ignore (Xml.attrib x %S); true with Xml.No_attribute _ -> false)" name
12086     | Optional rng ->                        (* <rng> list *)
12087         let pa = generate_parser rng in
12088         sprintf "(function None -> None | Some x -> Some (%s x))" pa
12089                                         (* type name = { fields ... } *)
12090     | Element (name, fields) when is_attrs_interleave fields ->
12091         generate_parser_struct name (get_attrs_interleave fields)
12092     | Element (name, [field]) ->        (* type name = field *)
12093         let pa = generate_parser field in
12094         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
12095         pr "let %s =\n" parser_name;
12096         pr "  %s\n" pa;
12097         pr "let parse_%s = %s\n" name parser_name;
12098         parser_name
12099     | Attribute (name, [field]) ->
12100         let pa = generate_parser field in
12101         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
12102         pr "let %s =\n" parser_name;
12103         pr "  %s\n" pa;
12104         pr "let parse_%s = %s\n" name parser_name;
12105         parser_name
12106     | Element (name, fields) ->              (* type name = { fields ... } *)
12107         generate_parser_struct name ([], fields)
12108     | rng ->
12109         failwithf "generate_parser failed at: %s" (string_of_rng rng)
12110
12111   and is_attrs_interleave = function
12112     | [Interleave _] -> true
12113     | Attribute _ :: fields -> is_attrs_interleave fields
12114     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
12115     | _ -> false
12116
12117   and get_attrs_interleave = function
12118     | [Interleave fields] -> [], fields
12119     | ((Attribute _) as field) :: fields
12120     | ((Optional (Attribute _)) as field) :: fields ->
12121         let attrs, interleaves = get_attrs_interleave fields in
12122         (field :: attrs), interleaves
12123     | _ -> assert false
12124
12125   and generate_parsers xs =
12126     List.iter (fun x -> ignore (generate_parser x)) xs
12127
12128   and generate_parser_struct name (attrs, interleaves) =
12129     (* Generate parsers for the fields first.  We have to do this
12130      * before printing anything so we are still in BOL context.
12131      *)
12132     let fields = attrs @ interleaves in
12133     let pas = List.map generate_parser fields in
12134
12135     (* Generate an intermediate tuple from all the fields first.
12136      * If the type is just a string + another field, then we will
12137      * return this directly, otherwise it is turned into a record.
12138      *
12139      * RELAX NG note: This code treats <interleave> and plain lists of
12140      * fields the same.  In other words, it doesn't bother enforcing
12141      * any ordering of fields in the XML.
12142      *)
12143     pr "let parse_%s x =\n" name;
12144     pr "  let t = (\n    ";
12145     let comma = ref false in
12146     List.iter (
12147       fun x ->
12148         if !comma then pr ",\n    ";
12149         comma := true;
12150         match x with
12151         | Optional (Attribute (fname, [field])), pa ->
12152             pr "%s x" pa
12153         | Optional (Element (fname, [field])), pa ->
12154             pr "%s (optional_child %S x)" pa fname
12155         | Attribute (fname, [Text]), _ ->
12156             pr "attribute %S x" fname
12157         | (ZeroOrMore _ | OneOrMore _), pa ->
12158             pr "%s x" pa
12159         | Text, pa ->
12160             pr "%s x" pa
12161         | (field, pa) ->
12162             let fname = name_of_field field in
12163             pr "%s (child %S x)" pa fname
12164     ) (List.combine fields pas);
12165     pr "\n  ) in\n";
12166
12167     (match fields with
12168      | [Element (_, [Text]) | Attribute (_, [Text]); _] ->
12169          pr "  t\n"
12170
12171      | _ ->
12172          pr "  (Obj.magic t : %s)\n" name
12173 (*
12174          List.iter (
12175            function
12176            | (Optional (Attribute (fname, [field])), pa) ->
12177                pr "  %s_%s =\n" name fname;
12178                pr "    %s x;\n" pa
12179            | (Optional (Element (fname, [field])), pa) ->
12180                pr "  %s_%s =\n" name fname;
12181                pr "    (let x = optional_child %S x in\n" fname;
12182                pr "     %s x);\n" pa
12183            | (field, pa) ->
12184                let fname = name_of_field field in
12185                pr "  %s_%s =\n" name fname;
12186                pr "    (let x = child %S x in\n" fname;
12187                pr "     %s x);\n" pa
12188          ) (List.combine fields pas);
12189          pr "}\n"
12190 *)
12191     );
12192     sprintf "parse_%s" name
12193   in
12194
12195   generate_parsers xs
12196
12197 (* Generate ocaml/guestfs_inspector.mli. *)
12198 let generate_ocaml_inspector_mli () =
12199   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
12200
12201   pr "\
12202 (** This is an OCaml language binding to the external [virt-inspector]
12203     program.
12204
12205     For more information, please read the man page [virt-inspector(1)].
12206 *)
12207
12208 ";
12209
12210   generate_types grammar;
12211   pr "(** The nested information returned from the {!inspect} function. *)\n";
12212   pr "\n";
12213
12214   pr "\
12215 val inspect : ?connect:string -> ?xml:string -> string list -> operatingsystems
12216 (** To inspect a libvirt domain called [name], pass a singleton
12217     list: [inspect [name]].  When using libvirt only, you may
12218     optionally pass a libvirt URI using [inspect ~connect:uri ...].
12219
12220     To inspect a disk image or images, pass a list of the filenames
12221     of the disk images: [inspect filenames]
12222
12223     This function inspects the given guest or disk images and
12224     returns a list of operating system(s) found and a large amount
12225     of information about them.  In the vast majority of cases,
12226     a virtual machine only contains a single operating system.
12227
12228     If the optional [~xml] parameter is given, then this function
12229     skips running the external virt-inspector program and just
12230     parses the given XML directly (which is expected to be XML
12231     produced from a previous run of virt-inspector).  The list of
12232     names and connect URI are ignored in this case.
12233
12234     This function can throw a wide variety of exceptions, for example
12235     if the external virt-inspector program cannot be found, or if
12236     it doesn't generate valid XML.
12237 *)
12238 "
12239
12240 (* Generate ocaml/guestfs_inspector.ml. *)
12241 let generate_ocaml_inspector_ml () =
12242   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
12243
12244   pr "open Unix\n";
12245   pr "\n";
12246
12247   generate_types grammar;
12248   pr "\n";
12249
12250   pr "\
12251 (* Misc functions which are used by the parser code below. *)
12252 let first_child = function
12253   | Xml.Element (_, _, c::_) -> c
12254   | Xml.Element (name, _, []) ->
12255       failwith (\"expected <\" ^ name ^ \"/> to have a child node\")
12256   | Xml.PCData str ->
12257       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
12258
12259 let string_child_or_empty = function
12260   | Xml.Element (_, _, [Xml.PCData s]) -> s
12261   | Xml.Element (_, _, []) -> \"\"
12262   | Xml.Element (x, _, _) ->
12263       failwith (\"expected XML tag with a single PCDATA child, but got \" ^
12264                 x ^ \" instead\")
12265   | Xml.PCData str ->
12266       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
12267
12268 let optional_child name xml =
12269   let children = Xml.children xml in
12270   try
12271     Some (List.find (function
12272                      | Xml.Element (n, _, _) when n = name -> true
12273                      | _ -> false) children)
12274   with
12275     Not_found -> None
12276
12277 let child name xml =
12278   match optional_child name xml with
12279   | Some c -> c
12280   | None ->
12281       failwith (\"mandatory field <\" ^ name ^ \"/> missing in XML output\")
12282
12283 let attribute name xml =
12284   try Xml.attrib xml name
12285   with Xml.No_attribute _ ->
12286     failwith (\"mandatory attribute \" ^ name ^ \" missing in XML output\")
12287
12288 ";
12289
12290   generate_parsers grammar;
12291   pr "\n";
12292
12293   pr "\
12294 (* Run external virt-inspector, then use parser to parse the XML. *)
12295 let inspect ?connect ?xml names =
12296   let xml =
12297     match xml with
12298     | None ->
12299         if names = [] then invalid_arg \"inspect: no names given\";
12300         let cmd = [ \"virt-inspector\"; \"--xml\" ] @
12301           (match connect with None -> [] | Some uri -> [ \"--connect\"; uri ]) @
12302           names in
12303         let cmd = List.map Filename.quote cmd in
12304         let cmd = String.concat \" \" cmd in
12305         let chan = open_process_in cmd in
12306         let xml = Xml.parse_in chan in
12307         (match close_process_in chan with
12308          | WEXITED 0 -> ()
12309          | WEXITED _ -> failwith \"external virt-inspector command failed\"
12310          | WSIGNALED i | WSTOPPED i ->
12311              failwith (\"external virt-inspector command died or stopped on sig \" ^
12312                        string_of_int i)
12313         );
12314         xml
12315     | Some doc ->
12316         Xml.parse_string doc in
12317   parse_operatingsystems xml
12318 "
12319
12320 and generate_max_proc_nr () =
12321   pr "%d\n" max_proc_nr
12322
12323 let output_to filename k =
12324   let filename_new = filename ^ ".new" in
12325   chan := open_out filename_new;
12326   k ();
12327   close_out !chan;
12328   chan := Pervasives.stdout;
12329
12330   (* Is the new file different from the current file? *)
12331   if Sys.file_exists filename && files_equal filename filename_new then
12332     unlink filename_new                 (* same, so skip it *)
12333   else (
12334     (* different, overwrite old one *)
12335     (try chmod filename 0o644 with Unix_error _ -> ());
12336     rename filename_new filename;
12337     chmod filename 0o444;
12338     printf "written %s\n%!" filename;
12339   )
12340
12341 let perror msg = function
12342   | Unix_error (err, _, _) ->
12343       eprintf "%s: %s\n" msg (error_message err)
12344   | exn ->
12345       eprintf "%s: %s\n" msg (Printexc.to_string exn)
12346
12347 (* Main program. *)
12348 let () =
12349   let lock_fd =
12350     try openfile "HACKING" [O_RDWR] 0
12351     with
12352     | Unix_error (ENOENT, _, _) ->
12353         eprintf "\
12354 You are probably running this from the wrong directory.
12355 Run it from the top source directory using the command
12356   src/generator.ml
12357 ";
12358         exit 1
12359     | exn ->
12360         perror "open: HACKING" exn;
12361         exit 1 in
12362
12363   (* Acquire a lock so parallel builds won't try to run the generator
12364    * twice at the same time.  Subsequent builds will wait for the first
12365    * one to finish.  Note the lock is released implicitly when the
12366    * program exits.
12367    *)
12368   (try lockf lock_fd F_LOCK 1
12369    with exn ->
12370      perror "lock: HACKING" exn;
12371      exit 1);
12372
12373   check_functions ();
12374
12375   output_to "src/guestfs_protocol.x" generate_xdr;
12376   output_to "src/guestfs-structs.h" generate_structs_h;
12377   output_to "src/guestfs-actions.h" generate_actions_h;
12378   output_to "src/guestfs-internal-actions.h" generate_internal_actions_h;
12379   output_to "src/actions.c" generate_client_actions;
12380   output_to "src/bindtests.c" generate_bindtests;
12381   output_to "src/guestfs-structs.pod" generate_structs_pod;
12382   output_to "src/guestfs-actions.pod" generate_actions_pod;
12383   output_to "src/guestfs-availability.pod" generate_availability_pod;
12384   output_to "src/MAX_PROC_NR" generate_max_proc_nr;
12385   output_to "src/libguestfs.syms" generate_linker_script;
12386   output_to "daemon/actions.h" generate_daemon_actions_h;
12387   output_to "daemon/stubs.c" generate_daemon_actions;
12388   output_to "daemon/names.c" generate_daemon_names;
12389   output_to "daemon/optgroups.c" generate_daemon_optgroups_c;
12390   output_to "daemon/optgroups.h" generate_daemon_optgroups_h;
12391   output_to "capitests/tests.c" generate_tests;
12392   output_to "fish/cmds.c" generate_fish_cmds;
12393   output_to "fish/completion.c" generate_fish_completion;
12394   output_to "fish/guestfish-actions.pod" generate_fish_actions_pod;
12395   output_to "ocaml/guestfs.mli" generate_ocaml_mli;
12396   output_to "ocaml/guestfs.ml" generate_ocaml_ml;
12397   output_to "ocaml/guestfs_c_actions.c" generate_ocaml_c;
12398   output_to "ocaml/bindtests.ml" generate_ocaml_bindtests;
12399   output_to "ocaml/guestfs_inspector.mli" generate_ocaml_inspector_mli;
12400   output_to "ocaml/guestfs_inspector.ml" generate_ocaml_inspector_ml;
12401   output_to "perl/Guestfs.xs" generate_perl_xs;
12402   output_to "perl/lib/Sys/Guestfs.pm" generate_perl_pm;
12403   output_to "perl/bindtests.pl" generate_perl_bindtests;
12404   output_to "python/guestfs-py.c" generate_python_c;
12405   output_to "python/guestfs.py" generate_python_py;
12406   output_to "python/bindtests.py" generate_python_bindtests;
12407   output_to "ruby/ext/guestfs/_guestfs.c" generate_ruby_c;
12408   output_to "ruby/bindtests.rb" generate_ruby_bindtests;
12409   output_to "java/com/redhat/et/libguestfs/GuestFS.java" generate_java_java;
12410
12411   List.iter (
12412     fun (typ, jtyp) ->
12413       let cols = cols_of_struct typ in
12414       let filename = sprintf "java/com/redhat/et/libguestfs/%s.java" jtyp in
12415       output_to filename (generate_java_struct jtyp cols);
12416   ) java_structs;
12417
12418   output_to "java/Makefile.inc" generate_java_makefile_inc;
12419   output_to "java/com_redhat_et_libguestfs_GuestFS.c" generate_java_c;
12420   output_to "java/Bindtests.java" generate_java_bindtests;
12421   output_to "haskell/Guestfs.hs" generate_haskell_hs;
12422   output_to "haskell/Bindtests.hs" generate_haskell_bindtests;
12423   output_to "csharp/Libguestfs.cs" generate_csharp;
12424
12425   (* Always generate this file last, and unconditionally.  It's used
12426    * by the Makefile to know when we must re-run the generator.
12427    *)
12428   let chan = open_out "src/stamp-generator" in
12429   fprintf chan "1\n";
12430   close_out chan;
12431
12432   printf "generated %d lines of code\n" !lines