lvresize: Use --force so it can make LVs smaller (RHBZ#587484).
[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 (* Not implemented:
168     (* Opaque buffer which can contain arbitrary 8 bit data.
169      * In the C API, this is expressed as <char *, int> pair.
170      * Most other languages have a string type which can contain
171      * ASCII NUL.  We use whatever type is appropriate for each
172      * language.
173      * Buffers are limited by the total message size.  To transfer
174      * large blocks of data, use FileIn/FileOut parameters instead.
175      * To return an arbitrary buffer, use RBufferOut.
176      *)
177   | BufferIn of string
178 *)
179
180 type flags =
181   | ProtocolLimitWarning  (* display warning about protocol size limits *)
182   | DangerWillRobinson    (* flags particularly dangerous commands *)
183   | FishAlias of string   (* provide an alias for this cmd in guestfish *)
184   | FishAction of string  (* call this function in guestfish *)
185   | FishOutput of fish_output_t (* how to display output in guestfish *)
186   | NotInFish             (* do not export via guestfish *)
187   | NotInDocs             (* do not add this function to documentation *)
188   | DeprecatedBy of string (* function is deprecated, use .. instead *)
189   | Optional of string    (* function is part of an optional group *)
190
191 and fish_output_t =
192   | FishOutputOctal       (* for int return, print in octal *)
193   | FishOutputHexadecimal (* for int return, print in hex *)
194
195 (* You can supply zero or as many tests as you want per API call.
196  *
197  * Note that the test environment has 3 block devices, of size 500MB,
198  * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc), and
199  * a fourth ISO block device with some known files on it (/dev/sdd).
200  *
201  * Note for partitioning purposes, the 500MB device has 1015 cylinders.
202  * Number of cylinders was 63 for IDE emulated disks with precisely
203  * the same size.  How exactly this is calculated is a mystery.
204  *
205  * The ISO block device (/dev/sdd) comes from images/test.iso.
206  *
207  * To be able to run the tests in a reasonable amount of time,
208  * the virtual machine and block devices are reused between tests.
209  * So don't try testing kill_subprocess :-x
210  *
211  * Between each test we blockdev-setrw, umount-all, lvm-remove-all.
212  *
213  * Don't assume anything about the previous contents of the block
214  * devices.  Use 'Init*' to create some initial scenarios.
215  *
216  * You can add a prerequisite clause to any individual test.  This
217  * is a run-time check, which, if it fails, causes the test to be
218  * skipped.  Useful if testing a command which might not work on
219  * all variations of libguestfs builds.  A test that has prerequisite
220  * of 'Always' is run unconditionally.
221  *
222  * In addition, packagers can skip individual tests by setting the
223  * environment variables:     eg:
224  *   SKIP_TEST_<CMD>_<NUM>=1  SKIP_TEST_COMMAND_3=1  (skips test #3 of command)
225  *   SKIP_TEST_<CMD>=1        SKIP_TEST_ZEROFREE=1   (skips all zerofree tests)
226  *)
227 type tests = (test_init * test_prereq * test) list
228 and test =
229     (* Run the command sequence and just expect nothing to fail. *)
230   | TestRun of seq
231
232     (* Run the command sequence and expect the output of the final
233      * command to be the string.
234      *)
235   | TestOutput of seq * string
236
237     (* Run the command sequence and expect the output of the final
238      * command to be the list of strings.
239      *)
240   | TestOutputList of seq * string list
241
242     (* Run the command sequence and expect the output of the final
243      * command to be the list of block devices (could be either
244      * "/dev/sd.." or "/dev/hd.." form - we don't check the 5th
245      * character of each string).
246      *)
247   | TestOutputListOfDevices of seq * string list
248
249     (* Run the command sequence and expect the output of the final
250      * command to be the integer.
251      *)
252   | TestOutputInt of seq * int
253
254     (* Run the command sequence and expect the output of the final
255      * command to be <op> <int>, eg. ">=", "1".
256      *)
257   | TestOutputIntOp of seq * string * int
258
259     (* Run the command sequence and expect the output of the final
260      * command to be a true value (!= 0 or != NULL).
261      *)
262   | TestOutputTrue of seq
263
264     (* Run the command sequence and expect the output of the final
265      * command to be a false value (== 0 or == NULL, but not an error).
266      *)
267   | TestOutputFalse of seq
268
269     (* Run the command sequence and expect the output of the final
270      * command to be a list of the given length (but don't care about
271      * content).
272      *)
273   | TestOutputLength of seq * int
274
275     (* Run the command sequence and expect the output of the final
276      * command to be a buffer (RBufferOut), ie. string + size.
277      *)
278   | TestOutputBuffer of seq * string
279
280     (* Run the command sequence and expect the output of the final
281      * command to be a structure.
282      *)
283   | TestOutputStruct of seq * test_field_compare list
284
285     (* Run the command sequence and expect the final command (only)
286      * to fail.
287      *)
288   | TestLastFail of seq
289
290 and test_field_compare =
291   | CompareWithInt of string * int
292   | CompareWithIntOp of string * string * int
293   | CompareWithString of string * string
294   | CompareFieldsIntEq of string * string
295   | CompareFieldsStrEq of string * string
296
297 (* Test prerequisites. *)
298 and test_prereq =
299     (* Test always runs. *)
300   | Always
301
302     (* Test is currently disabled - eg. it fails, or it tests some
303      * unimplemented feature.
304      *)
305   | Disabled
306
307     (* 'string' is some C code (a function body) that should return
308      * true or false.  The test will run if the code returns true.
309      *)
310   | If of string
311
312     (* As for 'If' but the test runs _unless_ the code returns true. *)
313   | Unless of string
314
315 (* Some initial scenarios for testing. *)
316 and test_init =
317     (* Do nothing, block devices could contain random stuff including
318      * LVM PVs, and some filesystems might be mounted.  This is usually
319      * a bad idea.
320      *)
321   | InitNone
322
323     (* Block devices are empty and no filesystems are mounted. *)
324   | InitEmpty
325
326     (* /dev/sda contains a single partition /dev/sda1, with random
327      * content.  /dev/sdb and /dev/sdc may have random content.
328      * No LVM.
329      *)
330   | InitPartition
331
332     (* /dev/sda contains a single partition /dev/sda1, which is formatted
333      * as ext2, empty [except for lost+found] and mounted on /.
334      * /dev/sdb and /dev/sdc may have random content.
335      * No LVM.
336      *)
337   | InitBasicFS
338
339     (* /dev/sda:
340      *   /dev/sda1 (is a PV):
341      *     /dev/VG/LV (size 8MB):
342      *       formatted as ext2, empty [except for lost+found], mounted on /
343      * /dev/sdb and /dev/sdc may have random content.
344      *)
345   | InitBasicFSonLVM
346
347     (* /dev/sdd (the ISO, see images/ directory in source)
348      * is mounted on /
349      *)
350   | InitISOFS
351
352 (* Sequence of commands for testing. *)
353 and seq = cmd list
354 and cmd = string list
355
356 (* Note about long descriptions: When referring to another
357  * action, use the format C<guestfs_other> (ie. the full name of
358  * the C function).  This will be replaced as appropriate in other
359  * language bindings.
360  *
361  * Apart from that, long descriptions are just perldoc paragraphs.
362  *)
363
364 (* Generate a random UUID (used in tests). *)
365 let uuidgen () =
366   let chan = open_process_in "uuidgen" in
367   let uuid = input_line chan in
368   (match close_process_in chan with
369    | WEXITED 0 -> ()
370    | WEXITED _ ->
371        failwith "uuidgen: process exited with non-zero status"
372    | WSIGNALED _ | WSTOPPED _ ->
373        failwith "uuidgen: process signalled or stopped by signal"
374   );
375   uuid
376
377 (* These test functions are used in the language binding tests. *)
378
379 let test_all_args = [
380   String "str";
381   OptString "optstr";
382   StringList "strlist";
383   Bool "b";
384   Int "integer";
385   Int64 "integer64";
386   FileIn "filein";
387   FileOut "fileout";
388 ]
389
390 let test_all_rets = [
391   (* except for RErr, which is tested thoroughly elsewhere *)
392   "test0rint",         RInt "valout";
393   "test0rint64",       RInt64 "valout";
394   "test0rbool",        RBool "valout";
395   "test0rconststring", RConstString "valout";
396   "test0rconstoptstring", RConstOptString "valout";
397   "test0rstring",      RString "valout";
398   "test0rstringlist",  RStringList "valout";
399   "test0rstruct",      RStruct ("valout", "lvm_pv");
400   "test0rstructlist",  RStructList ("valout", "lvm_pv");
401   "test0rhashtable",   RHashtable "valout";
402 ]
403
404 let test_functions = [
405   ("test0", (RErr, test_all_args), -1, [NotInFish; NotInDocs],
406    [],
407    "internal test function - do not use",
408    "\
409 This is an internal test function which is used to test whether
410 the automatically generated bindings can handle every possible
411 parameter type correctly.
412
413 It echos the contents of each parameter to stdout.
414
415 You probably don't want to call this function.");
416 ] @ List.flatten (
417   List.map (
418     fun (name, ret) ->
419       [(name, (ret, [String "val"]), -1, [NotInFish; NotInDocs],
420         [],
421         "internal test function - do not use",
422         "\
423 This is an internal test function which is used to test whether
424 the automatically generated bindings can handle every possible
425 return type correctly.
426
427 It converts string C<val> to the return type.
428
429 You probably don't want to call this function.");
430        (name ^ "err", (ret, []), -1, [NotInFish; NotInDocs],
431         [],
432         "internal test function - do not use",
433         "\
434 This is an internal test function which is used to test whether
435 the automatically generated bindings can handle every possible
436 return type correctly.
437
438 This function always returns an error.
439
440 You probably don't want to call this function.")]
441   ) test_all_rets
442 )
443
444 (* non_daemon_functions are any functions which don't get processed
445  * in the daemon, eg. functions for setting and getting local
446  * configuration values.
447  *)
448
449 let non_daemon_functions = test_functions @ [
450   ("launch", (RErr, []), -1, [FishAlias "run"; FishAction "launch"],
451    [],
452    "launch the qemu subprocess",
453    "\
454 Internally libguestfs is implemented by running a virtual machine
455 using L<qemu(1)>.
456
457 You should call this after configuring the handle
458 (eg. adding drives) but before performing any actions.");
459
460   ("wait_ready", (RErr, []), -1, [NotInFish],
461    [],
462    "wait until the qemu subprocess launches (no op)",
463    "\
464 This function is a no op.
465
466 In versions of the API E<lt> 1.0.71 you had to call this function
467 just after calling C<guestfs_launch> to wait for the launch
468 to complete.  However this is no longer necessary because
469 C<guestfs_launch> now does the waiting.
470
471 If you see any calls to this function in code then you can just
472 remove them, unless you want to retain compatibility with older
473 versions of the API.");
474
475   ("kill_subprocess", (RErr, []), -1, [],
476    [],
477    "kill the qemu subprocess",
478    "\
479 This kills the qemu subprocess.  You should never need to call this.");
480
481   ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
482    [],
483    "add an image to examine or modify",
484    "\
485 This function adds a virtual machine disk image C<filename> to the
486 guest.  The first time you call this function, the disk appears as IDE
487 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
488 so on.
489
490 You don't necessarily need to be root when using libguestfs.  However
491 you obviously do need sufficient permissions to access the filename
492 for whatever operations you want to perform (ie. read access if you
493 just want to read the image or write access if you want to modify the
494 image).
495
496 This is equivalent to the qemu parameter
497 C<-drive file=filename,cache=off,if=...>.
498
499 C<cache=off> is omitted in cases where it is not supported by
500 the underlying filesystem.
501
502 C<if=...> is set at compile time by the configuration option
503 C<./configure --with-drive-if=...>.  In the rare case where you
504 might need to change this at run time, use C<guestfs_add_drive_with_if>
505 or C<guestfs_add_drive_ro_with_if>.
506
507 Note that this call checks for the existence of C<filename>.  This
508 stops you from specifying other types of drive which are supported
509 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
510 the general C<guestfs_config> call instead.");
511
512   ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
513    [],
514    "add a CD-ROM disk image to examine",
515    "\
516 This function adds a virtual CD-ROM disk image to the guest.
517
518 This is equivalent to the qemu parameter C<-cdrom filename>.
519
520 Notes:
521
522 =over 4
523
524 =item *
525
526 This call checks for the existence of C<filename>.  This
527 stops you from specifying other types of drive which are supported
528 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
529 the general C<guestfs_config> call instead.
530
531 =item *
532
533 If you just want to add an ISO file (often you use this as an
534 efficient way to transfer large files into the guest), then you
535 should probably use C<guestfs_add_drive_ro> instead.
536
537 =back");
538
539   ("add_drive_ro", (RErr, [String "filename"]), -1, [FishAlias "add-ro"],
540    [],
541    "add a drive in snapshot mode (read-only)",
542    "\
543 This adds a drive in snapshot mode, making it effectively
544 read-only.
545
546 Note that writes to the device are allowed, and will be seen for
547 the duration of the guestfs handle, but they are written
548 to a temporary file which is discarded as soon as the guestfs
549 handle is closed.  We don't currently have any method to enable
550 changes to be committed, although qemu can support this.
551
552 This is equivalent to the qemu parameter
553 C<-drive file=filename,snapshot=on,readonly=on,if=...>.
554
555 C<if=...> is set at compile time by the configuration option
556 C<./configure --with-drive-if=...>.  In the rare case where you
557 might need to change this at run time, use C<guestfs_add_drive_with_if>
558 or C<guestfs_add_drive_ro_with_if>.
559
560 C<readonly=on> is only added where qemu supports this option.
561
562 Note that this call checks for the existence of C<filename>.  This
563 stops you from specifying other types of drive which are supported
564 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
565 the general C<guestfs_config> call instead.");
566
567   ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
568    [],
569    "add qemu parameters",
570    "\
571 This can be used to add arbitrary qemu command line parameters
572 of the form C<-param value>.  Actually it's not quite arbitrary - we
573 prevent you from setting some parameters which would interfere with
574 parameters that we use.
575
576 The first character of C<param> string must be a C<-> (dash).
577
578 C<value> can be NULL.");
579
580   ("set_qemu", (RErr, [String "qemu"]), -1, [FishAlias "qemu"],
581    [],
582    "set the qemu binary",
583    "\
584 Set the qemu binary that we will use.
585
586 The default is chosen when the library was compiled by the
587 configure script.
588
589 You can also override this by setting the C<LIBGUESTFS_QEMU>
590 environment variable.
591
592 Setting C<qemu> to C<NULL> restores the default qemu binary.
593
594 Note that you should call this function as early as possible
595 after creating the handle.  This is because some pre-launch
596 operations depend on testing qemu features (by running C<qemu -help>).
597 If the qemu binary changes, we don't retest features, and
598 so you might see inconsistent results.  Using the environment
599 variable C<LIBGUESTFS_QEMU> is safest of all since that picks
600 the qemu binary at the same time as the handle is created.");
601
602   ("get_qemu", (RConstString "qemu", []), -1, [],
603    [InitNone, Always, TestRun (
604       [["get_qemu"]])],
605    "get the qemu binary",
606    "\
607 Return the current qemu binary.
608
609 This is always non-NULL.  If it wasn't set already, then this will
610 return the default qemu binary name.");
611
612   ("set_path", (RErr, [String "searchpath"]), -1, [FishAlias "path"],
613    [],
614    "set the search path",
615    "\
616 Set the path that libguestfs searches for kernel and initrd.img.
617
618 The default is C<$libdir/guestfs> unless overridden by setting
619 C<LIBGUESTFS_PATH> environment variable.
620
621 Setting C<path> to C<NULL> restores the default path.");
622
623   ("get_path", (RConstString "path", []), -1, [],
624    [InitNone, Always, TestRun (
625       [["get_path"]])],
626    "get the search path",
627    "\
628 Return the current search path.
629
630 This is always non-NULL.  If it wasn't set already, then this will
631 return the default path.");
632
633   ("set_append", (RErr, [OptString "append"]), -1, [FishAlias "append"],
634    [],
635    "add options to kernel command line",
636    "\
637 This function is used to add additional options to the
638 guest kernel command line.
639
640 The default is C<NULL> unless overridden by setting
641 C<LIBGUESTFS_APPEND> environment variable.
642
643 Setting C<append> to C<NULL> means I<no> additional options
644 are passed (libguestfs always adds a few of its own).");
645
646   ("get_append", (RConstOptString "append", []), -1, [],
647    (* This cannot be tested with the current framework.  The
648     * function can return NULL in normal operations, which the
649     * test framework interprets as an error.
650     *)
651    [],
652    "get the additional kernel options",
653    "\
654 Return the additional kernel options which are added to the
655 guest kernel command line.
656
657 If C<NULL> then no options are added.");
658
659   ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
660    [],
661    "set autosync mode",
662    "\
663 If C<autosync> is true, this enables autosync.  Libguestfs will make a
664 best effort attempt to run C<guestfs_umount_all> followed by
665 C<guestfs_sync> when the handle is closed
666 (also if the program exits without closing handles).
667
668 This is disabled by default (except in guestfish where it is
669 enabled by default).");
670
671   ("get_autosync", (RBool "autosync", []), -1, [],
672    [InitNone, Always, TestRun (
673       [["get_autosync"]])],
674    "get autosync mode",
675    "\
676 Get the autosync flag.");
677
678   ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
679    [],
680    "set verbose mode",
681    "\
682 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
683
684 Verbose messages are disabled unless the environment variable
685 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
686
687   ("get_verbose", (RBool "verbose", []), -1, [],
688    [],
689    "get verbose mode",
690    "\
691 This returns the verbose messages flag.");
692
693   ("is_ready", (RBool "ready", []), -1, [],
694    [InitNone, Always, TestOutputTrue (
695       [["is_ready"]])],
696    "is ready to accept commands",
697    "\
698 This returns true iff this handle is ready to accept commands
699 (in the C<READY> state).
700
701 For more information on states, see L<guestfs(3)>.");
702
703   ("is_config", (RBool "config", []), -1, [],
704    [InitNone, Always, TestOutputFalse (
705       [["is_config"]])],
706    "is in configuration state",
707    "\
708 This returns true iff this handle is being configured
709 (in the C<CONFIG> state).
710
711 For more information on states, see L<guestfs(3)>.");
712
713   ("is_launching", (RBool "launching", []), -1, [],
714    [InitNone, Always, TestOutputFalse (
715       [["is_launching"]])],
716    "is launching subprocess",
717    "\
718 This returns true iff this handle is launching the subprocess
719 (in the C<LAUNCHING> state).
720
721 For more information on states, see L<guestfs(3)>.");
722
723   ("is_busy", (RBool "busy", []), -1, [],
724    [InitNone, Always, TestOutputFalse (
725       [["is_busy"]])],
726    "is busy processing a command",
727    "\
728 This returns true iff this handle is busy processing a command
729 (in the C<BUSY> state).
730
731 For more information on states, see L<guestfs(3)>.");
732
733   ("get_state", (RInt "state", []), -1, [],
734    [],
735    "get the current state",
736    "\
737 This returns the current state as an opaque integer.  This is
738 only useful for printing debug and internal error messages.
739
740 For more information on states, see L<guestfs(3)>.");
741
742   ("set_memsize", (RErr, [Int "memsize"]), -1, [FishAlias "memsize"],
743    [InitNone, Always, TestOutputInt (
744       [["set_memsize"; "500"];
745        ["get_memsize"]], 500)],
746    "set memory allocated to the qemu subprocess",
747    "\
748 This sets the memory size in megabytes allocated to the
749 qemu subprocess.  This only has any effect if called before
750 C<guestfs_launch>.
751
752 You can also change this by setting the environment
753 variable C<LIBGUESTFS_MEMSIZE> before the handle is
754 created.
755
756 For more information on the architecture of libguestfs,
757 see L<guestfs(3)>.");
758
759   ("get_memsize", (RInt "memsize", []), -1, [],
760    [InitNone, Always, TestOutputIntOp (
761       [["get_memsize"]], ">=", 256)],
762    "get memory allocated to the qemu subprocess",
763    "\
764 This gets the memory size in megabytes allocated to the
765 qemu subprocess.
766
767 If C<guestfs_set_memsize> was not called
768 on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
769 then this returns the compiled-in default value for memsize.
770
771 For more information on the architecture of libguestfs,
772 see L<guestfs(3)>.");
773
774   ("get_pid", (RInt "pid", []), -1, [FishAlias "pid"],
775    [InitNone, Always, TestOutputIntOp (
776       [["get_pid"]], ">=", 1)],
777    "get PID of qemu subprocess",
778    "\
779 Return the process ID of the qemu subprocess.  If there is no
780 qemu subprocess, then this will return an error.
781
782 This is an internal call used for debugging and testing.");
783
784   ("version", (RStruct ("version", "version"), []), -1, [],
785    [InitNone, Always, TestOutputStruct (
786       [["version"]], [CompareWithInt ("major", 1)])],
787    "get the library version number",
788    "\
789 Return the libguestfs version number that the program is linked
790 against.
791
792 Note that because of dynamic linking this is not necessarily
793 the version of libguestfs that you compiled against.  You can
794 compile the program, and then at runtime dynamically link
795 against a completely different C<libguestfs.so> library.
796
797 This call was added in version C<1.0.58>.  In previous
798 versions of libguestfs there was no way to get the version
799 number.  From C code you can use ELF weak linking tricks to find out if
800 this symbol exists (if it doesn't, then it's an earlier version).
801
802 The call returns a structure with four elements.  The first
803 three (C<major>, C<minor> and C<release>) are numbers and
804 correspond to the usual version triplet.  The fourth element
805 (C<extra>) is a string and is normally empty, but may be
806 used for distro-specific information.
807
808 To construct the original version string:
809 C<$major.$minor.$release$extra>
810
811 I<Note:> Don't use this call to test for availability
812 of features.  Distro backports makes this unreliable.  Use
813 C<guestfs_available> instead.");
814
815   ("set_selinux", (RErr, [Bool "selinux"]), -1, [FishAlias "selinux"],
816    [InitNone, Always, TestOutputTrue (
817       [["set_selinux"; "true"];
818        ["get_selinux"]])],
819    "set SELinux enabled or disabled at appliance boot",
820    "\
821 This sets the selinux flag that is passed to the appliance
822 at boot time.  The default is C<selinux=0> (disabled).
823
824 Note that if SELinux is enabled, it is always in
825 Permissive mode (C<enforcing=0>).
826
827 For more information on the architecture of libguestfs,
828 see L<guestfs(3)>.");
829
830   ("get_selinux", (RBool "selinux", []), -1, [],
831    [],
832    "get SELinux enabled flag",
833    "\
834 This returns the current setting of the selinux flag which
835 is passed to the appliance at boot time.  See C<guestfs_set_selinux>.
836
837 For more information on the architecture of libguestfs,
838 see L<guestfs(3)>.");
839
840   ("set_trace", (RErr, [Bool "trace"]), -1, [FishAlias "trace"],
841    [InitNone, Always, TestOutputFalse (
842       [["set_trace"; "false"];
843        ["get_trace"]])],
844    "enable or disable command traces",
845    "\
846 If the command trace flag is set to 1, then commands are
847 printed on stdout before they are executed in a format
848 which is very similar to the one used by guestfish.  In
849 other words, you can run a program with this enabled, and
850 you will get out a script which you can feed to guestfish
851 to perform the same set of actions.
852
853 If you want to trace C API calls into libguestfs (and
854 other libraries) then possibly a better way is to use
855 the external ltrace(1) command.
856
857 Command traces are disabled unless the environment variable
858 C<LIBGUESTFS_TRACE> is defined and set to C<1>.");
859
860   ("get_trace", (RBool "trace", []), -1, [],
861    [],
862    "get command trace enabled flag",
863    "\
864 Return the command trace flag.");
865
866   ("set_direct", (RErr, [Bool "direct"]), -1, [FishAlias "direct"],
867    [InitNone, Always, TestOutputFalse (
868       [["set_direct"; "false"];
869        ["get_direct"]])],
870    "enable or disable direct appliance mode",
871    "\
872 If the direct appliance mode flag is enabled, then stdin and
873 stdout are passed directly through to the appliance once it
874 is launched.
875
876 One consequence of this is that log messages aren't caught
877 by the library and handled by C<guestfs_set_log_message_callback>,
878 but go straight to stdout.
879
880 You probably don't want to use this unless you know what you
881 are doing.
882
883 The default is disabled.");
884
885   ("get_direct", (RBool "direct", []), -1, [],
886    [],
887    "get direct appliance mode flag",
888    "\
889 Return the direct appliance mode flag.");
890
891   ("set_recovery_proc", (RErr, [Bool "recoveryproc"]), -1, [FishAlias "recovery-proc"],
892    [InitNone, Always, TestOutputTrue (
893       [["set_recovery_proc"; "true"];
894        ["get_recovery_proc"]])],
895    "enable or disable the recovery process",
896    "\
897 If this is called with the parameter C<false> then
898 C<guestfs_launch> does not create a recovery process.  The
899 purpose of the recovery process is to stop runaway qemu
900 processes in the case where the main program aborts abruptly.
901
902 This only has any effect if called before C<guestfs_launch>,
903 and the default is true.
904
905 About the only time when you would want to disable this is
906 if the main process will fork itself into the background
907 (\"daemonize\" itself).  In this case the recovery process
908 thinks that the main program has disappeared and so kills
909 qemu, which is not very helpful.");
910
911   ("get_recovery_proc", (RBool "recoveryproc", []), -1, [],
912    [],
913    "get recovery process enabled flag",
914    "\
915 Return the recovery process enabled flag.");
916
917   ("add_drive_with_if", (RErr, [String "filename"; String "iface"]), -1, [],
918    [],
919    "add a drive specifying the QEMU block emulation to use",
920    "\
921 This is the same as C<guestfs_add_drive> but it allows you
922 to specify the QEMU interface emulation to use at run time.");
923
924   ("add_drive_ro_with_if", (RErr, [String "filename"; String "iface"]), -1, [],
925    [],
926    "add a drive read-only specifying the QEMU block emulation to use",
927    "\
928 This is the same as C<guestfs_add_drive_ro> but it allows you
929 to specify the QEMU interface emulation to use at run time.");
930
931 ]
932
933 (* daemon_functions are any functions which cause some action
934  * to take place in the daemon.
935  *)
936
937 let daemon_functions = [
938   ("mount", (RErr, [Device "device"; String "mountpoint"]), 1, [],
939    [InitEmpty, Always, TestOutput (
940       [["part_disk"; "/dev/sda"; "mbr"];
941        ["mkfs"; "ext2"; "/dev/sda1"];
942        ["mount"; "/dev/sda1"; "/"];
943        ["write_file"; "/new"; "new file contents"; "0"];
944        ["cat"; "/new"]], "new file contents")],
945    "mount a guest disk at a position in the filesystem",
946    "\
947 Mount a guest disk at a position in the filesystem.  Block devices
948 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
949 the guest.  If those block devices contain partitions, they will have
950 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
951 names can be used.
952
953 The rules are the same as for L<mount(2)>:  A filesystem must
954 first be mounted on C</> before others can be mounted.  Other
955 filesystems can only be mounted on directories which already
956 exist.
957
958 The mounted filesystem is writable, if we have sufficient permissions
959 on the underlying device.
960
961 The filesystem options C<sync> and C<noatime> are set with this
962 call, in order to improve reliability.");
963
964   ("sync", (RErr, []), 2, [],
965    [ InitEmpty, Always, TestRun [["sync"]]],
966    "sync disks, writes are flushed through to the disk image",
967    "\
968 This syncs the disk, so that any writes are flushed through to the
969 underlying disk image.
970
971 You should always call this if you have modified a disk image, before
972 closing the handle.");
973
974   ("touch", (RErr, [Pathname "path"]), 3, [],
975    [InitBasicFS, Always, TestOutputTrue (
976       [["touch"; "/new"];
977        ["exists"; "/new"]])],
978    "update file timestamps or create a new file",
979    "\
980 Touch acts like the L<touch(1)> command.  It can be used to
981 update the timestamps on a file, or, if the file does not exist,
982 to create a new zero-length file.");
983
984   ("cat", (RString "content", [Pathname "path"]), 4, [ProtocolLimitWarning],
985    [InitISOFS, Always, TestOutput (
986       [["cat"; "/known-2"]], "abcdef\n")],
987    "list the contents of a file",
988    "\
989 Return the contents of the file named C<path>.
990
991 Note that this function cannot correctly handle binary files
992 (specifically, files containing C<\\0> character which is treated
993 as end of string).  For those you need to use the C<guestfs_read_file>
994 or C<guestfs_download> functions which have a more complex interface.");
995
996   ("ll", (RString "listing", [Pathname "directory"]), 5, [],
997    [], (* XXX Tricky to test because it depends on the exact format
998         * of the 'ls -l' command, which changes between F10 and F11.
999         *)
1000    "list the files in a directory (long format)",
1001    "\
1002 List the files in C<directory> (relative to the root directory,
1003 there is no cwd) in the format of 'ls -la'.
1004
1005 This command is mostly useful for interactive sessions.  It
1006 is I<not> intended that you try to parse the output string.");
1007
1008   ("ls", (RStringList "listing", [Pathname "directory"]), 6, [],
1009    [InitBasicFS, Always, TestOutputList (
1010       [["touch"; "/new"];
1011        ["touch"; "/newer"];
1012        ["touch"; "/newest"];
1013        ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
1014    "list the files in a directory",
1015    "\
1016 List the files in C<directory> (relative to the root directory,
1017 there is no cwd).  The '.' and '..' entries are not returned, but
1018 hidden files are shown.
1019
1020 This command is mostly useful for interactive sessions.  Programs
1021 should probably use C<guestfs_readdir> instead.");
1022
1023   ("list_devices", (RStringList "devices", []), 7, [],
1024    [InitEmpty, Always, TestOutputListOfDevices (
1025       [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"; "/dev/sdd"])],
1026    "list the block devices",
1027    "\
1028 List all the block devices.
1029
1030 The full block device names are returned, eg. C</dev/sda>");
1031
1032   ("list_partitions", (RStringList "partitions", []), 8, [],
1033    [InitBasicFS, Always, TestOutputListOfDevices (
1034       [["list_partitions"]], ["/dev/sda1"]);
1035     InitEmpty, Always, TestOutputListOfDevices (
1036       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1037        ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1038    "list the partitions",
1039    "\
1040 List all the partitions detected on all block devices.
1041
1042 The full partition device names are returned, eg. C</dev/sda1>
1043
1044 This does not return logical volumes.  For that you will need to
1045 call C<guestfs_lvs>.");
1046
1047   ("pvs", (RStringList "physvols", []), 9, [Optional "lvm2"],
1048    [InitBasicFSonLVM, Always, TestOutputListOfDevices (
1049       [["pvs"]], ["/dev/sda1"]);
1050     InitEmpty, Always, TestOutputListOfDevices (
1051       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1052        ["pvcreate"; "/dev/sda1"];
1053        ["pvcreate"; "/dev/sda2"];
1054        ["pvcreate"; "/dev/sda3"];
1055        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1056    "list the LVM physical volumes (PVs)",
1057    "\
1058 List all the physical volumes detected.  This is the equivalent
1059 of the L<pvs(8)> command.
1060
1061 This returns a list of just the device names that contain
1062 PVs (eg. C</dev/sda2>).
1063
1064 See also C<guestfs_pvs_full>.");
1065
1066   ("vgs", (RStringList "volgroups", []), 10, [Optional "lvm2"],
1067    [InitBasicFSonLVM, Always, TestOutputList (
1068       [["vgs"]], ["VG"]);
1069     InitEmpty, Always, TestOutputList (
1070       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1071        ["pvcreate"; "/dev/sda1"];
1072        ["pvcreate"; "/dev/sda2"];
1073        ["pvcreate"; "/dev/sda3"];
1074        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1075        ["vgcreate"; "VG2"; "/dev/sda3"];
1076        ["vgs"]], ["VG1"; "VG2"])],
1077    "list the LVM volume groups (VGs)",
1078    "\
1079 List all the volumes groups detected.  This is the equivalent
1080 of the L<vgs(8)> command.
1081
1082 This returns a list of just the volume group names that were
1083 detected (eg. C<VolGroup00>).
1084
1085 See also C<guestfs_vgs_full>.");
1086
1087   ("lvs", (RStringList "logvols", []), 11, [Optional "lvm2"],
1088    [InitBasicFSonLVM, Always, TestOutputList (
1089       [["lvs"]], ["/dev/VG/LV"]);
1090     InitEmpty, Always, TestOutputList (
1091       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1092        ["pvcreate"; "/dev/sda1"];
1093        ["pvcreate"; "/dev/sda2"];
1094        ["pvcreate"; "/dev/sda3"];
1095        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1096        ["vgcreate"; "VG2"; "/dev/sda3"];
1097        ["lvcreate"; "LV1"; "VG1"; "50"];
1098        ["lvcreate"; "LV2"; "VG1"; "50"];
1099        ["lvcreate"; "LV3"; "VG2"; "50"];
1100        ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
1101    "list the LVM logical volumes (LVs)",
1102    "\
1103 List all the logical volumes detected.  This is the equivalent
1104 of the L<lvs(8)> command.
1105
1106 This returns a list of the logical volume device names
1107 (eg. C</dev/VolGroup00/LogVol00>).
1108
1109 See also C<guestfs_lvs_full>.");
1110
1111   ("pvs_full", (RStructList ("physvols", "lvm_pv"), []), 12, [Optional "lvm2"],
1112    [], (* XXX how to test? *)
1113    "list the LVM physical volumes (PVs)",
1114    "\
1115 List all the physical volumes detected.  This is the equivalent
1116 of the L<pvs(8)> command.  The \"full\" version includes all fields.");
1117
1118   ("vgs_full", (RStructList ("volgroups", "lvm_vg"), []), 13, [Optional "lvm2"],
1119    [], (* XXX how to test? *)
1120    "list the LVM volume groups (VGs)",
1121    "\
1122 List all the volumes groups detected.  This is the equivalent
1123 of the L<vgs(8)> command.  The \"full\" version includes all fields.");
1124
1125   ("lvs_full", (RStructList ("logvols", "lvm_lv"), []), 14, [Optional "lvm2"],
1126    [], (* XXX how to test? *)
1127    "list the LVM logical volumes (LVs)",
1128    "\
1129 List all the logical volumes detected.  This is the equivalent
1130 of the L<lvs(8)> command.  The \"full\" version includes all fields.");
1131
1132   ("read_lines", (RStringList "lines", [Pathname "path"]), 15, [],
1133    [InitISOFS, Always, TestOutputList (
1134       [["read_lines"; "/known-4"]], ["abc"; "def"; "ghi"]);
1135     InitISOFS, Always, TestOutputList (
1136       [["read_lines"; "/empty"]], [])],
1137    "read file as lines",
1138    "\
1139 Return the contents of the file named C<path>.
1140
1141 The file contents are returned as a list of lines.  Trailing
1142 C<LF> and C<CRLF> character sequences are I<not> returned.
1143
1144 Note that this function cannot correctly handle binary files
1145 (specifically, files containing C<\\0> character which is treated
1146 as end of line).  For those you need to use the C<guestfs_read_file>
1147 function which has a more complex interface.");
1148
1149   ("aug_init", (RErr, [Pathname "root"; Int "flags"]), 16, [Optional "augeas"],
1150    [], (* XXX Augeas code needs tests. *)
1151    "create a new Augeas handle",
1152    "\
1153 Create a new Augeas handle for editing configuration files.
1154 If there was any previous Augeas handle associated with this
1155 guestfs session, then it is closed.
1156
1157 You must call this before using any other C<guestfs_aug_*>
1158 commands.
1159
1160 C<root> is the filesystem root.  C<root> must not be NULL,
1161 use C</> instead.
1162
1163 The flags are the same as the flags defined in
1164 E<lt>augeas.hE<gt>, the logical I<or> of the following
1165 integers:
1166
1167 =over 4
1168
1169 =item C<AUG_SAVE_BACKUP> = 1
1170
1171 Keep the original file with a C<.augsave> extension.
1172
1173 =item C<AUG_SAVE_NEWFILE> = 2
1174
1175 Save changes into a file with extension C<.augnew>, and
1176 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
1177
1178 =item C<AUG_TYPE_CHECK> = 4
1179
1180 Typecheck lenses (can be expensive).
1181
1182 =item C<AUG_NO_STDINC> = 8
1183
1184 Do not use standard load path for modules.
1185
1186 =item C<AUG_SAVE_NOOP> = 16
1187
1188 Make save a no-op, just record what would have been changed.
1189
1190 =item C<AUG_NO_LOAD> = 32
1191
1192 Do not load the tree in C<guestfs_aug_init>.
1193
1194 =back
1195
1196 To close the handle, you can call C<guestfs_aug_close>.
1197
1198 To find out more about Augeas, see L<http://augeas.net/>.");
1199
1200   ("aug_close", (RErr, []), 26, [Optional "augeas"],
1201    [], (* XXX Augeas code needs tests. *)
1202    "close the current Augeas handle",
1203    "\
1204 Close the current Augeas handle and free up any resources
1205 used by it.  After calling this, you have to call
1206 C<guestfs_aug_init> again before you can use any other
1207 Augeas functions.");
1208
1209   ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [Optional "augeas"],
1210    [], (* XXX Augeas code needs tests. *)
1211    "define an Augeas variable",
1212    "\
1213 Defines an Augeas variable C<name> whose value is the result
1214 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
1215 undefined.
1216
1217 On success this returns the number of nodes in C<expr>, or
1218 C<0> if C<expr> evaluates to something which is not a nodeset.");
1219
1220   ("aug_defnode", (RStruct ("nrnodescreated", "int_bool"), [String "name"; String "expr"; String "val"]), 18, [Optional "augeas"],
1221    [], (* XXX Augeas code needs tests. *)
1222    "define an Augeas node",
1223    "\
1224 Defines a variable C<name> whose value is the result of
1225 evaluating C<expr>.
1226
1227 If C<expr> evaluates to an empty nodeset, a node is created,
1228 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
1229 C<name> will be the nodeset containing that single node.
1230
1231 On success this returns a pair containing the
1232 number of nodes in the nodeset, and a boolean flag
1233 if a node was created.");
1234
1235   ("aug_get", (RString "val", [String "augpath"]), 19, [Optional "augeas"],
1236    [], (* XXX Augeas code needs tests. *)
1237    "look up the value of an Augeas path",
1238    "\
1239 Look up the value associated with C<path>.  If C<path>
1240 matches exactly one node, the C<value> is returned.");
1241
1242   ("aug_set", (RErr, [String "augpath"; String "val"]), 20, [Optional "augeas"],
1243    [], (* XXX Augeas code needs tests. *)
1244    "set Augeas path to value",
1245    "\
1246 Set the value associated with C<path> to C<val>.
1247
1248 In the Augeas API, it is possible to clear a node by setting
1249 the value to NULL.  Due to an oversight in the libguestfs API
1250 you cannot do that with this call.  Instead you must use the
1251 C<guestfs_aug_clear> call.");
1252
1253   ("aug_insert", (RErr, [String "augpath"; String "label"; Bool "before"]), 21, [Optional "augeas"],
1254    [], (* XXX Augeas code needs tests. *)
1255    "insert a sibling Augeas node",
1256    "\
1257 Create a new sibling C<label> for C<path>, inserting it into
1258 the tree before or after C<path> (depending on the boolean
1259 flag C<before>).
1260
1261 C<path> must match exactly one existing node in the tree, and
1262 C<label> must be a label, ie. not contain C</>, C<*> or end
1263 with a bracketed index C<[N]>.");
1264
1265   ("aug_rm", (RInt "nrnodes", [String "augpath"]), 22, [Optional "augeas"],
1266    [], (* XXX Augeas code needs tests. *)
1267    "remove an Augeas path",
1268    "\
1269 Remove C<path> and all of its children.
1270
1271 On success this returns the number of entries which were removed.");
1272
1273   ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [Optional "augeas"],
1274    [], (* XXX Augeas code needs tests. *)
1275    "move Augeas node",
1276    "\
1277 Move the node C<src> to C<dest>.  C<src> must match exactly
1278 one node.  C<dest> is overwritten if it exists.");
1279
1280   ("aug_match", (RStringList "matches", [String "augpath"]), 24, [Optional "augeas"],
1281    [], (* XXX Augeas code needs tests. *)
1282    "return Augeas nodes which match augpath",
1283    "\
1284 Returns a list of paths which match the path expression C<path>.
1285 The returned paths are sufficiently qualified so that they match
1286 exactly one node in the current tree.");
1287
1288   ("aug_save", (RErr, []), 25, [Optional "augeas"],
1289    [], (* XXX Augeas code needs tests. *)
1290    "write all pending Augeas changes to disk",
1291    "\
1292 This writes all pending changes to disk.
1293
1294 The flags which were passed to C<guestfs_aug_init> affect exactly
1295 how files are saved.");
1296
1297   ("aug_load", (RErr, []), 27, [Optional "augeas"],
1298    [], (* XXX Augeas code needs tests. *)
1299    "load files into the tree",
1300    "\
1301 Load files into the tree.
1302
1303 See C<aug_load> in the Augeas documentation for the full gory
1304 details.");
1305
1306   ("aug_ls", (RStringList "matches", [String "augpath"]), 28, [Optional "augeas"],
1307    [], (* XXX Augeas code needs tests. *)
1308    "list Augeas nodes under augpath",
1309    "\
1310 This is just a shortcut for listing C<guestfs_aug_match>
1311 C<path/*> and sorting the resulting nodes into alphabetical order.");
1312
1313   ("rm", (RErr, [Pathname "path"]), 29, [],
1314    [InitBasicFS, Always, TestRun
1315       [["touch"; "/new"];
1316        ["rm"; "/new"]];
1317     InitBasicFS, Always, TestLastFail
1318       [["rm"; "/new"]];
1319     InitBasicFS, Always, TestLastFail
1320       [["mkdir"; "/new"];
1321        ["rm"; "/new"]]],
1322    "remove a file",
1323    "\
1324 Remove the single file C<path>.");
1325
1326   ("rmdir", (RErr, [Pathname "path"]), 30, [],
1327    [InitBasicFS, Always, TestRun
1328       [["mkdir"; "/new"];
1329        ["rmdir"; "/new"]];
1330     InitBasicFS, Always, TestLastFail
1331       [["rmdir"; "/new"]];
1332     InitBasicFS, Always, TestLastFail
1333       [["touch"; "/new"];
1334        ["rmdir"; "/new"]]],
1335    "remove a directory",
1336    "\
1337 Remove the single directory C<path>.");
1338
1339   ("rm_rf", (RErr, [Pathname "path"]), 31, [],
1340    [InitBasicFS, Always, TestOutputFalse
1341       [["mkdir"; "/new"];
1342        ["mkdir"; "/new/foo"];
1343        ["touch"; "/new/foo/bar"];
1344        ["rm_rf"; "/new"];
1345        ["exists"; "/new"]]],
1346    "remove a file or directory recursively",
1347    "\
1348 Remove the file or directory C<path>, recursively removing the
1349 contents if its a directory.  This is like the C<rm -rf> shell
1350 command.");
1351
1352   ("mkdir", (RErr, [Pathname "path"]), 32, [],
1353    [InitBasicFS, Always, TestOutputTrue
1354       [["mkdir"; "/new"];
1355        ["is_dir"; "/new"]];
1356     InitBasicFS, Always, TestLastFail
1357       [["mkdir"; "/new/foo/bar"]]],
1358    "create a directory",
1359    "\
1360 Create a directory named C<path>.");
1361
1362   ("mkdir_p", (RErr, [Pathname "path"]), 33, [],
1363    [InitBasicFS, Always, TestOutputTrue
1364       [["mkdir_p"; "/new/foo/bar"];
1365        ["is_dir"; "/new/foo/bar"]];
1366     InitBasicFS, Always, TestOutputTrue
1367       [["mkdir_p"; "/new/foo/bar"];
1368        ["is_dir"; "/new/foo"]];
1369     InitBasicFS, Always, TestOutputTrue
1370       [["mkdir_p"; "/new/foo/bar"];
1371        ["is_dir"; "/new"]];
1372     (* Regression tests for RHBZ#503133: *)
1373     InitBasicFS, Always, TestRun
1374       [["mkdir"; "/new"];
1375        ["mkdir_p"; "/new"]];
1376     InitBasicFS, Always, TestLastFail
1377       [["touch"; "/new"];
1378        ["mkdir_p"; "/new"]]],
1379    "create a directory and parents",
1380    "\
1381 Create a directory named C<path>, creating any parent directories
1382 as necessary.  This is like the C<mkdir -p> shell command.");
1383
1384   ("chmod", (RErr, [Int "mode"; Pathname "path"]), 34, [],
1385    [], (* XXX Need stat command to test *)
1386    "change file mode",
1387    "\
1388 Change the mode (permissions) of C<path> to C<mode>.  Only
1389 numeric modes are supported.
1390
1391 I<Note>: When using this command from guestfish, C<mode>
1392 by default would be decimal, unless you prefix it with
1393 C<0> to get octal, ie. use C<0700> not C<700>.
1394
1395 The mode actually set is affected by the umask.");
1396
1397   ("chown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 35, [],
1398    [], (* XXX Need stat command to test *)
1399    "change file owner and group",
1400    "\
1401 Change the file owner to C<owner> and group to C<group>.
1402
1403 Only numeric uid and gid are supported.  If you want to use
1404 names, you will need to locate and parse the password file
1405 yourself (Augeas support makes this relatively easy).");
1406
1407   ("exists", (RBool "existsflag", [Pathname "path"]), 36, [],
1408    [InitISOFS, Always, TestOutputTrue (
1409       [["exists"; "/empty"]]);
1410     InitISOFS, Always, TestOutputTrue (
1411       [["exists"; "/directory"]])],
1412    "test if file or directory exists",
1413    "\
1414 This returns C<true> if and only if there is a file, directory
1415 (or anything) with the given C<path> name.
1416
1417 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
1418
1419   ("is_file", (RBool "fileflag", [Pathname "path"]), 37, [],
1420    [InitISOFS, Always, TestOutputTrue (
1421       [["is_file"; "/known-1"]]);
1422     InitISOFS, Always, TestOutputFalse (
1423       [["is_file"; "/directory"]])],
1424    "test if file exists",
1425    "\
1426 This returns C<true> if and only if there is a file
1427 with the given C<path> name.  Note that it returns false for
1428 other objects like directories.
1429
1430 See also C<guestfs_stat>.");
1431
1432   ("is_dir", (RBool "dirflag", [Pathname "path"]), 38, [],
1433    [InitISOFS, Always, TestOutputFalse (
1434       [["is_dir"; "/known-3"]]);
1435     InitISOFS, Always, TestOutputTrue (
1436       [["is_dir"; "/directory"]])],
1437    "test if file exists",
1438    "\
1439 This returns C<true> if and only if there is a directory
1440 with the given C<path> name.  Note that it returns false for
1441 other objects like files.
1442
1443 See also C<guestfs_stat>.");
1444
1445   ("pvcreate", (RErr, [Device "device"]), 39, [Optional "lvm2"],
1446    [InitEmpty, Always, TestOutputListOfDevices (
1447       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1448        ["pvcreate"; "/dev/sda1"];
1449        ["pvcreate"; "/dev/sda2"];
1450        ["pvcreate"; "/dev/sda3"];
1451        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1452    "create an LVM physical volume",
1453    "\
1454 This creates an LVM physical volume on the named C<device>,
1455 where C<device> should usually be a partition name such
1456 as C</dev/sda1>.");
1457
1458   ("vgcreate", (RErr, [String "volgroup"; DeviceList "physvols"]), 40, [Optional "lvm2"],
1459    [InitEmpty, Always, TestOutputList (
1460       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1461        ["pvcreate"; "/dev/sda1"];
1462        ["pvcreate"; "/dev/sda2"];
1463        ["pvcreate"; "/dev/sda3"];
1464        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1465        ["vgcreate"; "VG2"; "/dev/sda3"];
1466        ["vgs"]], ["VG1"; "VG2"])],
1467    "create an LVM volume group",
1468    "\
1469 This creates an LVM volume group called C<volgroup>
1470 from the non-empty list of physical volumes C<physvols>.");
1471
1472   ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [Optional "lvm2"],
1473    [InitEmpty, Always, TestOutputList (
1474       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1475        ["pvcreate"; "/dev/sda1"];
1476        ["pvcreate"; "/dev/sda2"];
1477        ["pvcreate"; "/dev/sda3"];
1478        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1479        ["vgcreate"; "VG2"; "/dev/sda3"];
1480        ["lvcreate"; "LV1"; "VG1"; "50"];
1481        ["lvcreate"; "LV2"; "VG1"; "50"];
1482        ["lvcreate"; "LV3"; "VG2"; "50"];
1483        ["lvcreate"; "LV4"; "VG2"; "50"];
1484        ["lvcreate"; "LV5"; "VG2"; "50"];
1485        ["lvs"]],
1486       ["/dev/VG1/LV1"; "/dev/VG1/LV2";
1487        "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
1488    "create an LVM logical volume",
1489    "\
1490 This creates an LVM logical volume called C<logvol>
1491 on the volume group C<volgroup>, with C<size> megabytes.");
1492
1493   ("mkfs", (RErr, [String "fstype"; Device "device"]), 42, [],
1494    [InitEmpty, Always, TestOutput (
1495       [["part_disk"; "/dev/sda"; "mbr"];
1496        ["mkfs"; "ext2"; "/dev/sda1"];
1497        ["mount_options"; ""; "/dev/sda1"; "/"];
1498        ["write_file"; "/new"; "new file contents"; "0"];
1499        ["cat"; "/new"]], "new file contents")],
1500    "make a filesystem",
1501    "\
1502 This creates a filesystem on C<device> (usually a partition
1503 or LVM logical volume).  The filesystem type is C<fstype>, for
1504 example C<ext3>.");
1505
1506   ("sfdisk", (RErr, [Device "device";
1507                      Int "cyls"; Int "heads"; Int "sectors";
1508                      StringList "lines"]), 43, [DangerWillRobinson],
1509    [],
1510    "create partitions on a block device",
1511    "\
1512 This is a direct interface to the L<sfdisk(8)> program for creating
1513 partitions on block devices.
1514
1515 C<device> should be a block device, for example C</dev/sda>.
1516
1517 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1518 and sectors on the device, which are passed directly to sfdisk as
1519 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1520 of these, then the corresponding parameter is omitted.  Usually for
1521 'large' disks, you can just pass C<0> for these, but for small
1522 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1523 out the right geometry and you will need to tell it.
1524
1525 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1526 information refer to the L<sfdisk(8)> manpage.
1527
1528 To create a single partition occupying the whole disk, you would
1529 pass C<lines> as a single element list, when the single element being
1530 the string C<,> (comma).
1531
1532 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>,
1533 C<guestfs_part_init>");
1534
1535   ("write_file", (RErr, [Pathname "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning],
1536    [InitBasicFS, Always, TestOutput (
1537       [["write_file"; "/new"; "new file contents"; "0"];
1538        ["cat"; "/new"]], "new file contents");
1539     InitBasicFS, Always, TestOutput (
1540       [["write_file"; "/new"; "\nnew file contents\n"; "0"];
1541        ["cat"; "/new"]], "\nnew file contents\n");
1542     InitBasicFS, Always, TestOutput (
1543       [["write_file"; "/new"; "\n\n"; "0"];
1544        ["cat"; "/new"]], "\n\n");
1545     InitBasicFS, Always, TestOutput (
1546       [["write_file"; "/new"; ""; "0"];
1547        ["cat"; "/new"]], "");
1548     InitBasicFS, Always, TestOutput (
1549       [["write_file"; "/new"; "\n\n\n"; "0"];
1550        ["cat"; "/new"]], "\n\n\n");
1551     InitBasicFS, Always, TestOutput (
1552       [["write_file"; "/new"; "\n"; "0"];
1553        ["cat"; "/new"]], "\n")],
1554    "create a file",
1555    "\
1556 This call creates a file called C<path>.  The contents of the
1557 file is the string C<content> (which can contain any 8 bit data),
1558 with length C<size>.
1559
1560 As a special case, if C<size> is C<0>
1561 then the length is calculated using C<strlen> (so in this case
1562 the content cannot contain embedded ASCII NULs).
1563
1564 I<NB.> Owing to a bug, writing content containing ASCII NUL
1565 characters does I<not> work, even if the length is specified.
1566 We hope to resolve this bug in a future version.  In the meantime
1567 use C<guestfs_upload>.");
1568
1569   ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1570    [InitEmpty, Always, TestOutputListOfDevices (
1571       [["part_disk"; "/dev/sda"; "mbr"];
1572        ["mkfs"; "ext2"; "/dev/sda1"];
1573        ["mount_options"; ""; "/dev/sda1"; "/"];
1574        ["mounts"]], ["/dev/sda1"]);
1575     InitEmpty, Always, TestOutputList (
1576       [["part_disk"; "/dev/sda"; "mbr"];
1577        ["mkfs"; "ext2"; "/dev/sda1"];
1578        ["mount_options"; ""; "/dev/sda1"; "/"];
1579        ["umount"; "/"];
1580        ["mounts"]], [])],
1581    "unmount a filesystem",
1582    "\
1583 This unmounts the given filesystem.  The filesystem may be
1584 specified either by its mountpoint (path) or the device which
1585 contains the filesystem.");
1586
1587   ("mounts", (RStringList "devices", []), 46, [],
1588    [InitBasicFS, Always, TestOutputListOfDevices (
1589       [["mounts"]], ["/dev/sda1"])],
1590    "show mounted filesystems",
1591    "\
1592 This returns the list of currently mounted filesystems.  It returns
1593 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1594
1595 Some internal mounts are not shown.
1596
1597 See also: C<guestfs_mountpoints>");
1598
1599   ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1600    [InitBasicFS, Always, TestOutputList (
1601       [["umount_all"];
1602        ["mounts"]], []);
1603     (* check that umount_all can unmount nested mounts correctly: *)
1604     InitEmpty, Always, TestOutputList (
1605       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1606        ["mkfs"; "ext2"; "/dev/sda1"];
1607        ["mkfs"; "ext2"; "/dev/sda2"];
1608        ["mkfs"; "ext2"; "/dev/sda3"];
1609        ["mount_options"; ""; "/dev/sda1"; "/"];
1610        ["mkdir"; "/mp1"];
1611        ["mount_options"; ""; "/dev/sda2"; "/mp1"];
1612        ["mkdir"; "/mp1/mp2"];
1613        ["mount_options"; ""; "/dev/sda3"; "/mp1/mp2"];
1614        ["mkdir"; "/mp1/mp2/mp3"];
1615        ["umount_all"];
1616        ["mounts"]], [])],
1617    "unmount all filesystems",
1618    "\
1619 This unmounts all mounted filesystems.
1620
1621 Some internal mounts are not unmounted by this call.");
1622
1623   ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson; Optional "lvm2"],
1624    [],
1625    "remove all LVM LVs, VGs and PVs",
1626    "\
1627 This command removes all LVM logical volumes, volume groups
1628 and physical volumes.");
1629
1630   ("file", (RString "description", [Dev_or_Path "path"]), 49, [],
1631    [InitISOFS, Always, TestOutput (
1632       [["file"; "/empty"]], "empty");
1633     InitISOFS, Always, TestOutput (
1634       [["file"; "/known-1"]], "ASCII text");
1635     InitISOFS, Always, TestLastFail (
1636       [["file"; "/notexists"]])],
1637    "determine file type",
1638    "\
1639 This call uses the standard L<file(1)> command to determine
1640 the type or contents of the file.  This also works on devices,
1641 for example to find out whether a partition contains a filesystem.
1642
1643 This call will also transparently look inside various types
1644 of compressed file.
1645
1646 The exact command which runs is C<file -zbsL path>.  Note in
1647 particular that the filename is not prepended to the output
1648 (the C<-b> option).");
1649
1650   ("command", (RString "output", [StringList "arguments"]), 50, [ProtocolLimitWarning],
1651    [InitBasicFS, Always, TestOutput (
1652       [["upload"; "test-command"; "/test-command"];
1653        ["chmod"; "0o755"; "/test-command"];
1654        ["command"; "/test-command 1"]], "Result1");
1655     InitBasicFS, Always, TestOutput (
1656       [["upload"; "test-command"; "/test-command"];
1657        ["chmod"; "0o755"; "/test-command"];
1658        ["command"; "/test-command 2"]], "Result2\n");
1659     InitBasicFS, Always, TestOutput (
1660       [["upload"; "test-command"; "/test-command"];
1661        ["chmod"; "0o755"; "/test-command"];
1662        ["command"; "/test-command 3"]], "\nResult3");
1663     InitBasicFS, Always, TestOutput (
1664       [["upload"; "test-command"; "/test-command"];
1665        ["chmod"; "0o755"; "/test-command"];
1666        ["command"; "/test-command 4"]], "\nResult4\n");
1667     InitBasicFS, Always, TestOutput (
1668       [["upload"; "test-command"; "/test-command"];
1669        ["chmod"; "0o755"; "/test-command"];
1670        ["command"; "/test-command 5"]], "\nResult5\n\n");
1671     InitBasicFS, Always, TestOutput (
1672       [["upload"; "test-command"; "/test-command"];
1673        ["chmod"; "0o755"; "/test-command"];
1674        ["command"; "/test-command 6"]], "\n\nResult6\n\n");
1675     InitBasicFS, Always, TestOutput (
1676       [["upload"; "test-command"; "/test-command"];
1677        ["chmod"; "0o755"; "/test-command"];
1678        ["command"; "/test-command 7"]], "");
1679     InitBasicFS, Always, TestOutput (
1680       [["upload"; "test-command"; "/test-command"];
1681        ["chmod"; "0o755"; "/test-command"];
1682        ["command"; "/test-command 8"]], "\n");
1683     InitBasicFS, Always, TestOutput (
1684       [["upload"; "test-command"; "/test-command"];
1685        ["chmod"; "0o755"; "/test-command"];
1686        ["command"; "/test-command 9"]], "\n\n");
1687     InitBasicFS, Always, TestOutput (
1688       [["upload"; "test-command"; "/test-command"];
1689        ["chmod"; "0o755"; "/test-command"];
1690        ["command"; "/test-command 10"]], "Result10-1\nResult10-2\n");
1691     InitBasicFS, Always, TestOutput (
1692       [["upload"; "test-command"; "/test-command"];
1693        ["chmod"; "0o755"; "/test-command"];
1694        ["command"; "/test-command 11"]], "Result11-1\nResult11-2");
1695     InitBasicFS, Always, TestLastFail (
1696       [["upload"; "test-command"; "/test-command"];
1697        ["chmod"; "0o755"; "/test-command"];
1698        ["command"; "/test-command"]])],
1699    "run a command from the guest filesystem",
1700    "\
1701 This call runs a command from the guest filesystem.  The
1702 filesystem must be mounted, and must contain a compatible
1703 operating system (ie. something Linux, with the same
1704 or compatible processor architecture).
1705
1706 The single parameter is an argv-style list of arguments.
1707 The first element is the name of the program to run.
1708 Subsequent elements are parameters.  The list must be
1709 non-empty (ie. must contain a program name).  Note that
1710 the command runs directly, and is I<not> invoked via
1711 the shell (see C<guestfs_sh>).
1712
1713 The return value is anything printed to I<stdout> by
1714 the command.
1715
1716 If the command returns a non-zero exit status, then
1717 this function returns an error message.  The error message
1718 string is the content of I<stderr> from the command.
1719
1720 The C<$PATH> environment variable will contain at least
1721 C</usr/bin> and C</bin>.  If you require a program from
1722 another location, you should provide the full path in the
1723 first parameter.
1724
1725 Shared libraries and data files required by the program
1726 must be available on filesystems which are mounted in the
1727 correct places.  It is the caller's responsibility to ensure
1728 all filesystems that are needed are mounted at the right
1729 locations.");
1730
1731   ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [ProtocolLimitWarning],
1732    [InitBasicFS, Always, TestOutputList (
1733       [["upload"; "test-command"; "/test-command"];
1734        ["chmod"; "0o755"; "/test-command"];
1735        ["command_lines"; "/test-command 1"]], ["Result1"]);
1736     InitBasicFS, Always, TestOutputList (
1737       [["upload"; "test-command"; "/test-command"];
1738        ["chmod"; "0o755"; "/test-command"];
1739        ["command_lines"; "/test-command 2"]], ["Result2"]);
1740     InitBasicFS, Always, TestOutputList (
1741       [["upload"; "test-command"; "/test-command"];
1742        ["chmod"; "0o755"; "/test-command"];
1743        ["command_lines"; "/test-command 3"]], ["";"Result3"]);
1744     InitBasicFS, Always, TestOutputList (
1745       [["upload"; "test-command"; "/test-command"];
1746        ["chmod"; "0o755"; "/test-command"];
1747        ["command_lines"; "/test-command 4"]], ["";"Result4"]);
1748     InitBasicFS, Always, TestOutputList (
1749       [["upload"; "test-command"; "/test-command"];
1750        ["chmod"; "0o755"; "/test-command"];
1751        ["command_lines"; "/test-command 5"]], ["";"Result5";""]);
1752     InitBasicFS, Always, TestOutputList (
1753       [["upload"; "test-command"; "/test-command"];
1754        ["chmod"; "0o755"; "/test-command"];
1755        ["command_lines"; "/test-command 6"]], ["";"";"Result6";""]);
1756     InitBasicFS, Always, TestOutputList (
1757       [["upload"; "test-command"; "/test-command"];
1758        ["chmod"; "0o755"; "/test-command"];
1759        ["command_lines"; "/test-command 7"]], []);
1760     InitBasicFS, Always, TestOutputList (
1761       [["upload"; "test-command"; "/test-command"];
1762        ["chmod"; "0o755"; "/test-command"];
1763        ["command_lines"; "/test-command 8"]], [""]);
1764     InitBasicFS, Always, TestOutputList (
1765       [["upload"; "test-command"; "/test-command"];
1766        ["chmod"; "0o755"; "/test-command"];
1767        ["command_lines"; "/test-command 9"]], ["";""]);
1768     InitBasicFS, Always, TestOutputList (
1769       [["upload"; "test-command"; "/test-command"];
1770        ["chmod"; "0o755"; "/test-command"];
1771        ["command_lines"; "/test-command 10"]], ["Result10-1";"Result10-2"]);
1772     InitBasicFS, Always, TestOutputList (
1773       [["upload"; "test-command"; "/test-command"];
1774        ["chmod"; "0o755"; "/test-command"];
1775        ["command_lines"; "/test-command 11"]], ["Result11-1";"Result11-2"])],
1776    "run a command, returning lines",
1777    "\
1778 This is the same as C<guestfs_command>, but splits the
1779 result into a list of lines.
1780
1781 See also: C<guestfs_sh_lines>");
1782
1783   ("stat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 52, [],
1784    [InitISOFS, Always, TestOutputStruct (
1785       [["stat"; "/empty"]], [CompareWithInt ("size", 0)])],
1786    "get file information",
1787    "\
1788 Returns file information for the given C<path>.
1789
1790 This is the same as the C<stat(2)> system call.");
1791
1792   ("lstat", (RStruct ("statbuf", "stat"), [Pathname "path"]), 53, [],
1793    [InitISOFS, Always, TestOutputStruct (
1794       [["lstat"; "/empty"]], [CompareWithInt ("size", 0)])],
1795    "get file information for a symbolic link",
1796    "\
1797 Returns file information for the given C<path>.
1798
1799 This is the same as C<guestfs_stat> except that if C<path>
1800 is a symbolic link, then the link is stat-ed, not the file it
1801 refers to.
1802
1803 This is the same as the C<lstat(2)> system call.");
1804
1805   ("statvfs", (RStruct ("statbuf", "statvfs"), [Pathname "path"]), 54, [],
1806    [InitISOFS, Always, TestOutputStruct (
1807       [["statvfs"; "/"]], [CompareWithInt ("namemax", 255)])],
1808    "get file system statistics",
1809    "\
1810 Returns file system statistics for any mounted file system.
1811 C<path> should be a file or directory in the mounted file system
1812 (typically it is the mount point itself, but it doesn't need to be).
1813
1814 This is the same as the C<statvfs(2)> system call.");
1815
1816   ("tune2fs_l", (RHashtable "superblock", [Device "device"]), 55, [],
1817    [], (* XXX test *)
1818    "get ext2/ext3/ext4 superblock details",
1819    "\
1820 This returns the contents of the ext2, ext3 or ext4 filesystem
1821 superblock on C<device>.
1822
1823 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1824 manpage for more details.  The list of fields returned isn't
1825 clearly defined, and depends on both the version of C<tune2fs>
1826 that libguestfs was built against, and the filesystem itself.");
1827
1828   ("blockdev_setro", (RErr, [Device "device"]), 56, [],
1829    [InitEmpty, Always, TestOutputTrue (
1830       [["blockdev_setro"; "/dev/sda"];
1831        ["blockdev_getro"; "/dev/sda"]])],
1832    "set block device to read-only",
1833    "\
1834 Sets the block device named C<device> to read-only.
1835
1836 This uses the L<blockdev(8)> command.");
1837
1838   ("blockdev_setrw", (RErr, [Device "device"]), 57, [],
1839    [InitEmpty, Always, TestOutputFalse (
1840       [["blockdev_setrw"; "/dev/sda"];
1841        ["blockdev_getro"; "/dev/sda"]])],
1842    "set block device to read-write",
1843    "\
1844 Sets the block device named C<device> to read-write.
1845
1846 This uses the L<blockdev(8)> command.");
1847
1848   ("blockdev_getro", (RBool "ro", [Device "device"]), 58, [],
1849    [InitEmpty, Always, TestOutputTrue (
1850       [["blockdev_setro"; "/dev/sda"];
1851        ["blockdev_getro"; "/dev/sda"]])],
1852    "is block device set to read-only",
1853    "\
1854 Returns a boolean indicating if the block device is read-only
1855 (true if read-only, false if not).
1856
1857 This uses the L<blockdev(8)> command.");
1858
1859   ("blockdev_getss", (RInt "sectorsize", [Device "device"]), 59, [],
1860    [InitEmpty, Always, TestOutputInt (
1861       [["blockdev_getss"; "/dev/sda"]], 512)],
1862    "get sectorsize of block device",
1863    "\
1864 This returns the size of sectors on a block device.
1865 Usually 512, but can be larger for modern devices.
1866
1867 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1868 for that).
1869
1870 This uses the L<blockdev(8)> command.");
1871
1872   ("blockdev_getbsz", (RInt "blocksize", [Device "device"]), 60, [],
1873    [InitEmpty, Always, TestOutputInt (
1874       [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1875    "get blocksize of block device",
1876    "\
1877 This returns the block size of a device.
1878
1879 (Note this is different from both I<size in blocks> and
1880 I<filesystem block size>).
1881
1882 This uses the L<blockdev(8)> command.");
1883
1884   ("blockdev_setbsz", (RErr, [Device "device"; Int "blocksize"]), 61, [],
1885    [], (* XXX test *)
1886    "set blocksize of block device",
1887    "\
1888 This sets the block size of a device.
1889
1890 (Note this is different from both I<size in blocks> and
1891 I<filesystem block size>).
1892
1893 This uses the L<blockdev(8)> command.");
1894
1895   ("blockdev_getsz", (RInt64 "sizeinsectors", [Device "device"]), 62, [],
1896    [InitEmpty, Always, TestOutputInt (
1897       [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1898    "get total size of device in 512-byte sectors",
1899    "\
1900 This returns the size of the device in units of 512-byte sectors
1901 (even if the sectorsize isn't 512 bytes ... weird).
1902
1903 See also C<guestfs_blockdev_getss> for the real sector size of
1904 the device, and C<guestfs_blockdev_getsize64> for the more
1905 useful I<size in bytes>.
1906
1907 This uses the L<blockdev(8)> command.");
1908
1909   ("blockdev_getsize64", (RInt64 "sizeinbytes", [Device "device"]), 63, [],
1910    [InitEmpty, Always, TestOutputInt (
1911       [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1912    "get total size of device in bytes",
1913    "\
1914 This returns the size of the device in bytes.
1915
1916 See also C<guestfs_blockdev_getsz>.
1917
1918 This uses the L<blockdev(8)> command.");
1919
1920   ("blockdev_flushbufs", (RErr, [Device "device"]), 64, [],
1921    [InitEmpty, Always, TestRun
1922       [["blockdev_flushbufs"; "/dev/sda"]]],
1923    "flush device buffers",
1924    "\
1925 This tells the kernel to flush internal buffers associated
1926 with C<device>.
1927
1928 This uses the L<blockdev(8)> command.");
1929
1930   ("blockdev_rereadpt", (RErr, [Device "device"]), 65, [],
1931    [InitEmpty, Always, TestRun
1932       [["blockdev_rereadpt"; "/dev/sda"]]],
1933    "reread partition table",
1934    "\
1935 Reread the partition table on C<device>.
1936
1937 This uses the L<blockdev(8)> command.");
1938
1939   ("upload", (RErr, [FileIn "filename"; Dev_or_Path "remotefilename"]), 66, [],
1940    [InitBasicFS, Always, TestOutput (
1941       (* Pick a file from cwd which isn't likely to change. *)
1942       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1943        ["checksum"; "md5"; "/COPYING.LIB"]],
1944       Digest.to_hex (Digest.file "COPYING.LIB"))],
1945    "upload a file from the local machine",
1946    "\
1947 Upload local file C<filename> to C<remotefilename> on the
1948 filesystem.
1949
1950 C<filename> can also be a named pipe.
1951
1952 See also C<guestfs_download>.");
1953
1954   ("download", (RErr, [Dev_or_Path "remotefilename"; FileOut "filename"]), 67, [],
1955    [InitBasicFS, Always, TestOutput (
1956       (* Pick a file from cwd which isn't likely to change. *)
1957       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1958        ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1959        ["upload"; "testdownload.tmp"; "/upload"];
1960        ["checksum"; "md5"; "/upload"]],
1961       Digest.to_hex (Digest.file "COPYING.LIB"))],
1962    "download a file to the local machine",
1963    "\
1964 Download file C<remotefilename> and save it as C<filename>
1965 on the local machine.
1966
1967 C<filename> can also be a named pipe.
1968
1969 See also C<guestfs_upload>, C<guestfs_cat>.");
1970
1971   ("checksum", (RString "checksum", [String "csumtype"; Pathname "path"]), 68, [],
1972    [InitISOFS, Always, TestOutput (
1973       [["checksum"; "crc"; "/known-3"]], "2891671662");
1974     InitISOFS, Always, TestLastFail (
1975       [["checksum"; "crc"; "/notexists"]]);
1976     InitISOFS, Always, TestOutput (
1977       [["checksum"; "md5"; "/known-3"]], "46d6ca27ee07cdc6fa99c2e138cc522c");
1978     InitISOFS, Always, TestOutput (
1979       [["checksum"; "sha1"; "/known-3"]], "b7ebccc3ee418311091c3eda0a45b83c0a770f15");
1980     InitISOFS, Always, TestOutput (
1981       [["checksum"; "sha224"; "/known-3"]], "d2cd1774b28f3659c14116be0a6dc2bb5c4b350ce9cd5defac707741");
1982     InitISOFS, Always, TestOutput (
1983       [["checksum"; "sha256"; "/known-3"]], "75bb71b90cd20cb13f86d2bea8dad63ac7194e7517c3b52b8d06ff52d3487d30");
1984     InitISOFS, Always, TestOutput (
1985       [["checksum"; "sha384"; "/known-3"]], "5fa7883430f357b5d7b7271d3a1d2872b51d73cba72731de6863d3dea55f30646af2799bef44d5ea776a5ec7941ac640");
1986     InitISOFS, Always, TestOutput (
1987       [["checksum"; "sha512"; "/known-3"]], "2794062c328c6b216dca90443b7f7134c5f40e56bd0ed7853123275a09982a6f992e6ca682f9d2fba34a4c5e870d8fe077694ff831e3032a004ee077e00603f6")],
1988    "compute MD5, SHAx or CRC checksum of file",
1989    "\
1990 This call computes the MD5, SHAx or CRC checksum of the
1991 file named C<path>.
1992
1993 The type of checksum to compute is given by the C<csumtype>
1994 parameter which must have one of the following values:
1995
1996 =over 4
1997
1998 =item C<crc>
1999
2000 Compute the cyclic redundancy check (CRC) specified by POSIX
2001 for the C<cksum> command.
2002
2003 =item C<md5>
2004
2005 Compute the MD5 hash (using the C<md5sum> program).
2006
2007 =item C<sha1>
2008
2009 Compute the SHA1 hash (using the C<sha1sum> program).
2010
2011 =item C<sha224>
2012
2013 Compute the SHA224 hash (using the C<sha224sum> program).
2014
2015 =item C<sha256>
2016
2017 Compute the SHA256 hash (using the C<sha256sum> program).
2018
2019 =item C<sha384>
2020
2021 Compute the SHA384 hash (using the C<sha384sum> program).
2022
2023 =item C<sha512>
2024
2025 Compute the SHA512 hash (using the C<sha512sum> program).
2026
2027 =back
2028
2029 The checksum is returned as a printable string.
2030
2031 To get the checksum for a device, use C<guestfs_checksum_device>.
2032
2033 To get the checksums for many files, use C<guestfs_checksums_out>.");
2034
2035   ("tar_in", (RErr, [FileIn "tarfile"; Pathname "directory"]), 69, [],
2036    [InitBasicFS, Always, TestOutput (
2037       [["tar_in"; "../images/helloworld.tar"; "/"];
2038        ["cat"; "/hello"]], "hello\n")],
2039    "unpack tarfile to directory",
2040    "\
2041 This command uploads and unpacks local file C<tarfile> (an
2042 I<uncompressed> tar file) into C<directory>.
2043
2044 To upload a compressed tarball, use C<guestfs_tgz_in>
2045 or C<guestfs_txz_in>.");
2046
2047   ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
2048    [],
2049    "pack directory into tarfile",
2050    "\
2051 This command packs the contents of C<directory> and downloads
2052 it to local file C<tarfile>.
2053
2054 To download a compressed tarball, use C<guestfs_tgz_out>
2055 or C<guestfs_txz_out>.");
2056
2057   ("tgz_in", (RErr, [FileIn "tarball"; Pathname "directory"]), 71, [],
2058    [InitBasicFS, Always, TestOutput (
2059       [["tgz_in"; "../images/helloworld.tar.gz"; "/"];
2060        ["cat"; "/hello"]], "hello\n")],
2061    "unpack compressed tarball to directory",
2062    "\
2063 This command uploads and unpacks local file C<tarball> (a
2064 I<gzip compressed> tar file) into C<directory>.
2065
2066 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
2067
2068   ("tgz_out", (RErr, [Pathname "directory"; FileOut "tarball"]), 72, [],
2069    [],
2070    "pack directory into compressed tarball",
2071    "\
2072 This command packs the contents of C<directory> and downloads
2073 it to local file C<tarball>.
2074
2075 To download an uncompressed tarball, use C<guestfs_tar_out>.");
2076
2077   ("mount_ro", (RErr, [Device "device"; String "mountpoint"]), 73, [],
2078    [InitBasicFS, Always, TestLastFail (
2079       [["umount"; "/"];
2080        ["mount_ro"; "/dev/sda1"; "/"];
2081        ["touch"; "/new"]]);
2082     InitBasicFS, Always, TestOutput (
2083       [["write_file"; "/new"; "data"; "0"];
2084        ["umount"; "/"];
2085        ["mount_ro"; "/dev/sda1"; "/"];
2086        ["cat"; "/new"]], "data")],
2087    "mount a guest disk, read-only",
2088    "\
2089 This is the same as the C<guestfs_mount> command, but it
2090 mounts the filesystem with the read-only (I<-o ro>) flag.");
2091
2092   ("mount_options", (RErr, [String "options"; Device "device"; String "mountpoint"]), 74, [],
2093    [],
2094    "mount a guest disk with mount options",
2095    "\
2096 This is the same as the C<guestfs_mount> command, but it
2097 allows you to set the mount options as for the
2098 L<mount(8)> I<-o> flag.");
2099
2100   ("mount_vfs", (RErr, [String "options"; String "vfstype"; Device "device"; String "mountpoint"]), 75, [],
2101    [],
2102    "mount a guest disk with mount options and vfstype",
2103    "\
2104 This is the same as the C<guestfs_mount> command, but it
2105 allows you to set both the mount options and the vfstype
2106 as for the L<mount(8)> I<-o> and I<-t> flags.");
2107
2108   ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
2109    [],
2110    "debugging and internals",
2111    "\
2112 The C<guestfs_debug> command exposes some internals of
2113 C<guestfsd> (the guestfs daemon) that runs inside the
2114 qemu subprocess.
2115
2116 There is no comprehensive help for this command.  You have
2117 to look at the file C<daemon/debug.c> in the libguestfs source
2118 to find out what you can do.");
2119
2120   ("lvremove", (RErr, [Device "device"]), 77, [Optional "lvm2"],
2121    [InitEmpty, Always, TestOutputList (
2122       [["part_disk"; "/dev/sda"; "mbr"];
2123        ["pvcreate"; "/dev/sda1"];
2124        ["vgcreate"; "VG"; "/dev/sda1"];
2125        ["lvcreate"; "LV1"; "VG"; "50"];
2126        ["lvcreate"; "LV2"; "VG"; "50"];
2127        ["lvremove"; "/dev/VG/LV1"];
2128        ["lvs"]], ["/dev/VG/LV2"]);
2129     InitEmpty, Always, TestOutputList (
2130       [["part_disk"; "/dev/sda"; "mbr"];
2131        ["pvcreate"; "/dev/sda1"];
2132        ["vgcreate"; "VG"; "/dev/sda1"];
2133        ["lvcreate"; "LV1"; "VG"; "50"];
2134        ["lvcreate"; "LV2"; "VG"; "50"];
2135        ["lvremove"; "/dev/VG"];
2136        ["lvs"]], []);
2137     InitEmpty, Always, TestOutputList (
2138       [["part_disk"; "/dev/sda"; "mbr"];
2139        ["pvcreate"; "/dev/sda1"];
2140        ["vgcreate"; "VG"; "/dev/sda1"];
2141        ["lvcreate"; "LV1"; "VG"; "50"];
2142        ["lvcreate"; "LV2"; "VG"; "50"];
2143        ["lvremove"; "/dev/VG"];
2144        ["vgs"]], ["VG"])],
2145    "remove an LVM logical volume",
2146    "\
2147 Remove an LVM logical volume C<device>, where C<device> is
2148 the path to the LV, such as C</dev/VG/LV>.
2149
2150 You can also remove all LVs in a volume group by specifying
2151 the VG name, C</dev/VG>.");
2152
2153   ("vgremove", (RErr, [String "vgname"]), 78, [Optional "lvm2"],
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        ["vgremove"; "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        ["vgremove"; "VG"];
2169        ["vgs"]], [])],
2170    "remove an LVM volume group",
2171    "\
2172 Remove an LVM volume group C<vgname>, (for example C<VG>).
2173
2174 This also forcibly removes all logical volumes in the volume
2175 group (if any).");
2176
2177   ("pvremove", (RErr, [Device "device"]), 79, [Optional "lvm2"],
2178    [InitEmpty, Always, TestOutputListOfDevices (
2179       [["part_disk"; "/dev/sda"; "mbr"];
2180        ["pvcreate"; "/dev/sda1"];
2181        ["vgcreate"; "VG"; "/dev/sda1"];
2182        ["lvcreate"; "LV1"; "VG"; "50"];
2183        ["lvcreate"; "LV2"; "VG"; "50"];
2184        ["vgremove"; "VG"];
2185        ["pvremove"; "/dev/sda1"];
2186        ["lvs"]], []);
2187     InitEmpty, Always, TestOutputListOfDevices (
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        ["pvremove"; "/dev/sda1"];
2195        ["vgs"]], []);
2196     InitEmpty, Always, TestOutputListOfDevices (
2197       [["part_disk"; "/dev/sda"; "mbr"];
2198        ["pvcreate"; "/dev/sda1"];
2199        ["vgcreate"; "VG"; "/dev/sda1"];
2200        ["lvcreate"; "LV1"; "VG"; "50"];
2201        ["lvcreate"; "LV2"; "VG"; "50"];
2202        ["vgremove"; "VG"];
2203        ["pvremove"; "/dev/sda1"];
2204        ["pvs"]], [])],
2205    "remove an LVM physical volume",
2206    "\
2207 This wipes a physical volume C<device> so that LVM will no longer
2208 recognise it.
2209
2210 The implementation uses the C<pvremove> command which refuses to
2211 wipe physical volumes that contain any volume groups, so you have
2212 to remove those first.");
2213
2214   ("set_e2label", (RErr, [Device "device"; String "label"]), 80, [],
2215    [InitBasicFS, Always, TestOutput (
2216       [["set_e2label"; "/dev/sda1"; "testlabel"];
2217        ["get_e2label"; "/dev/sda1"]], "testlabel")],
2218    "set the ext2/3/4 filesystem label",
2219    "\
2220 This sets the ext2/3/4 filesystem label of the filesystem on
2221 C<device> to C<label>.  Filesystem labels are limited to
2222 16 characters.
2223
2224 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
2225 to return the existing label on a filesystem.");
2226
2227   ("get_e2label", (RString "label", [Device "device"]), 81, [],
2228    [],
2229    "get the ext2/3/4 filesystem label",
2230    "\
2231 This returns the ext2/3/4 filesystem label of the filesystem on
2232 C<device>.");
2233
2234   ("set_e2uuid", (RErr, [Device "device"; String "uuid"]), 82, [],
2235    (let uuid = uuidgen () in
2236     [InitBasicFS, Always, TestOutput (
2237        [["set_e2uuid"; "/dev/sda1"; uuid];
2238         ["get_e2uuid"; "/dev/sda1"]], uuid);
2239      InitBasicFS, Always, TestOutput (
2240        [["set_e2uuid"; "/dev/sda1"; "clear"];
2241         ["get_e2uuid"; "/dev/sda1"]], "");
2242      (* We can't predict what UUIDs will be, so just check the commands run. *)
2243      InitBasicFS, Always, TestRun (
2244        [["set_e2uuid"; "/dev/sda1"; "random"]]);
2245      InitBasicFS, Always, TestRun (
2246        [["set_e2uuid"; "/dev/sda1"; "time"]])]),
2247    "set the ext2/3/4 filesystem UUID",
2248    "\
2249 This sets the ext2/3/4 filesystem UUID of the filesystem on
2250 C<device> to C<uuid>.  The format of the UUID and alternatives
2251 such as C<clear>, C<random> and C<time> are described in the
2252 L<tune2fs(8)> manpage.
2253
2254 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
2255 to return the existing UUID of a filesystem.");
2256
2257   ("get_e2uuid", (RString "uuid", [Device "device"]), 83, [],
2258    [],
2259    "get the ext2/3/4 filesystem UUID",
2260    "\
2261 This returns the ext2/3/4 filesystem UUID of the filesystem on
2262 C<device>.");
2263
2264   ("fsck", (RInt "status", [String "fstype"; Device "device"]), 84, [FishOutput FishOutputHexadecimal],
2265    [InitBasicFS, Always, TestOutputInt (
2266       [["umount"; "/dev/sda1"];
2267        ["fsck"; "ext2"; "/dev/sda1"]], 0);
2268     InitBasicFS, Always, TestOutputInt (
2269       [["umount"; "/dev/sda1"];
2270        ["zero"; "/dev/sda1"];
2271        ["fsck"; "ext2"; "/dev/sda1"]], 8)],
2272    "run the filesystem checker",
2273    "\
2274 This runs the filesystem checker (fsck) on C<device> which
2275 should have filesystem type C<fstype>.
2276
2277 The returned integer is the status.  See L<fsck(8)> for the
2278 list of status codes from C<fsck>.
2279
2280 Notes:
2281
2282 =over 4
2283
2284 =item *
2285
2286 Multiple status codes can be summed together.
2287
2288 =item *
2289
2290 A non-zero return code can mean \"success\", for example if
2291 errors have been corrected on the filesystem.
2292
2293 =item *
2294
2295 Checking or repairing NTFS volumes is not supported
2296 (by linux-ntfs).
2297
2298 =back
2299
2300 This command is entirely equivalent to running C<fsck -a -t fstype device>.");
2301
2302   ("zero", (RErr, [Device "device"]), 85, [],
2303    [InitBasicFS, Always, TestOutput (
2304       [["umount"; "/dev/sda1"];
2305        ["zero"; "/dev/sda1"];
2306        ["file"; "/dev/sda1"]], "data")],
2307    "write zeroes to the device",
2308    "\
2309 This command writes zeroes over the first few blocks of C<device>.
2310
2311 How many blocks are zeroed isn't specified (but it's I<not> enough
2312 to securely wipe the device).  It should be sufficient to remove
2313 any partition tables, filesystem superblocks and so on.
2314
2315 See also: C<guestfs_zero_device>, C<guestfs_scrub_device>.");
2316
2317   ("grub_install", (RErr, [Pathname "root"; Device "device"]), 86, [],
2318    (* Test disabled because grub-install incompatible with virtio-blk driver.
2319     * See also: https://bugzilla.redhat.com/show_bug.cgi?id=479760
2320     *)
2321    [InitBasicFS, Disabled, TestOutputTrue (
2322       [["grub_install"; "/"; "/dev/sda1"];
2323        ["is_dir"; "/boot"]])],
2324    "install GRUB",
2325    "\
2326 This command installs GRUB (the Grand Unified Bootloader) on
2327 C<device>, with the root directory being C<root>.");
2328
2329   ("cp", (RErr, [Pathname "src"; Pathname "dest"]), 87, [],
2330    [InitBasicFS, Always, TestOutput (
2331       [["write_file"; "/old"; "file content"; "0"];
2332        ["cp"; "/old"; "/new"];
2333        ["cat"; "/new"]], "file content");
2334     InitBasicFS, Always, TestOutputTrue (
2335       [["write_file"; "/old"; "file content"; "0"];
2336        ["cp"; "/old"; "/new"];
2337        ["is_file"; "/old"]]);
2338     InitBasicFS, Always, TestOutput (
2339       [["write_file"; "/old"; "file content"; "0"];
2340        ["mkdir"; "/dir"];
2341        ["cp"; "/old"; "/dir/new"];
2342        ["cat"; "/dir/new"]], "file content")],
2343    "copy a file",
2344    "\
2345 This copies a file from C<src> to C<dest> where C<dest> is
2346 either a destination filename or destination directory.");
2347
2348   ("cp_a", (RErr, [Pathname "src"; Pathname "dest"]), 88, [],
2349    [InitBasicFS, Always, TestOutput (
2350       [["mkdir"; "/olddir"];
2351        ["mkdir"; "/newdir"];
2352        ["write_file"; "/olddir/file"; "file content"; "0"];
2353        ["cp_a"; "/olddir"; "/newdir"];
2354        ["cat"; "/newdir/olddir/file"]], "file content")],
2355    "copy a file or directory recursively",
2356    "\
2357 This copies a file or directory from C<src> to C<dest>
2358 recursively using the C<cp -a> command.");
2359
2360   ("mv", (RErr, [Pathname "src"; Pathname "dest"]), 89, [],
2361    [InitBasicFS, Always, TestOutput (
2362       [["write_file"; "/old"; "file content"; "0"];
2363        ["mv"; "/old"; "/new"];
2364        ["cat"; "/new"]], "file content");
2365     InitBasicFS, Always, TestOutputFalse (
2366       [["write_file"; "/old"; "file content"; "0"];
2367        ["mv"; "/old"; "/new"];
2368        ["is_file"; "/old"]])],
2369    "move a file",
2370    "\
2371 This moves a file from C<src> to C<dest> where C<dest> is
2372 either a destination filename or destination directory.");
2373
2374   ("drop_caches", (RErr, [Int "whattodrop"]), 90, [],
2375    [InitEmpty, Always, TestRun (
2376       [["drop_caches"; "3"]])],
2377    "drop kernel page cache, dentries and inodes",
2378    "\
2379 This instructs the guest kernel to drop its page cache,
2380 and/or dentries and inode caches.  The parameter C<whattodrop>
2381 tells the kernel what precisely to drop, see
2382 L<http://linux-mm.org/Drop_Caches>
2383
2384 Setting C<whattodrop> to 3 should drop everything.
2385
2386 This automatically calls L<sync(2)> before the operation,
2387 so that the maximum guest memory is freed.");
2388
2389   ("dmesg", (RString "kmsgs", []), 91, [],
2390    [InitEmpty, Always, TestRun (
2391       [["dmesg"]])],
2392    "return kernel messages",
2393    "\
2394 This returns the kernel messages (C<dmesg> output) from
2395 the guest kernel.  This is sometimes useful for extended
2396 debugging of problems.
2397
2398 Another way to get the same information is to enable
2399 verbose messages with C<guestfs_set_verbose> or by setting
2400 the environment variable C<LIBGUESTFS_DEBUG=1> before
2401 running the program.");
2402
2403   ("ping_daemon", (RErr, []), 92, [],
2404    [InitEmpty, Always, TestRun (
2405       [["ping_daemon"]])],
2406    "ping the guest daemon",
2407    "\
2408 This is a test probe into the guestfs daemon running inside
2409 the qemu subprocess.  Calling this function checks that the
2410 daemon responds to the ping message, without affecting the daemon
2411 or attached block device(s) in any other way.");
2412
2413   ("equal", (RBool "equality", [Pathname "file1"; Pathname "file2"]), 93, [],
2414    [InitBasicFS, Always, TestOutputTrue (
2415       [["write_file"; "/file1"; "contents of a file"; "0"];
2416        ["cp"; "/file1"; "/file2"];
2417        ["equal"; "/file1"; "/file2"]]);
2418     InitBasicFS, Always, TestOutputFalse (
2419       [["write_file"; "/file1"; "contents of a file"; "0"];
2420        ["write_file"; "/file2"; "contents of another file"; "0"];
2421        ["equal"; "/file1"; "/file2"]]);
2422     InitBasicFS, Always, TestLastFail (
2423       [["equal"; "/file1"; "/file2"]])],
2424    "test if two files have equal contents",
2425    "\
2426 This compares the two files C<file1> and C<file2> and returns
2427 true if their content is exactly equal, or false otherwise.
2428
2429 The external L<cmp(1)> program is used for the comparison.");
2430
2431   ("strings", (RStringList "stringsout", [Pathname "path"]), 94, [ProtocolLimitWarning],
2432    [InitISOFS, Always, TestOutputList (
2433       [["strings"; "/known-5"]], ["abcdefghi"; "jklmnopqr"]);
2434     InitISOFS, Always, TestOutputList (
2435       [["strings"; "/empty"]], [])],
2436    "print the printable strings in a file",
2437    "\
2438 This runs the L<strings(1)> command on a file and returns
2439 the list of printable strings found.");
2440
2441   ("strings_e", (RStringList "stringsout", [String "encoding"; Pathname "path"]), 95, [ProtocolLimitWarning],
2442    [InitISOFS, Always, TestOutputList (
2443       [["strings_e"; "b"; "/known-5"]], []);
2444     InitBasicFS, Disabled, TestOutputList (
2445       [["write_file"; "/new"; "\000h\000e\000l\000l\000o\000\n\000w\000o\000r\000l\000d\000\n"; "24"];
2446        ["strings_e"; "b"; "/new"]], ["hello"; "world"])],
2447    "print the printable strings in a file",
2448    "\
2449 This is like the C<guestfs_strings> command, but allows you to
2450 specify the encoding.
2451
2452 See the L<strings(1)> manpage for the full list of encodings.
2453
2454 Commonly useful encodings are C<l> (lower case L) which will
2455 show strings inside Windows/x86 files.
2456
2457 The returned strings are transcoded to UTF-8.");
2458
2459   ("hexdump", (RString "dump", [Pathname "path"]), 96, [ProtocolLimitWarning],
2460    [InitISOFS, Always, TestOutput (
2461       [["hexdump"; "/known-4"]], "00000000  61 62 63 0a 64 65 66 0a  67 68 69                 |abc.def.ghi|\n0000000b\n");
2462     (* Test for RHBZ#501888c2 regression which caused large hexdump
2463      * commands to segfault.
2464      *)
2465     InitISOFS, Always, TestRun (
2466       [["hexdump"; "/100krandom"]])],
2467    "dump a file in hexadecimal",
2468    "\
2469 This runs C<hexdump -C> on the given C<path>.  The result is
2470 the human-readable, canonical hex dump of the file.");
2471
2472   ("zerofree", (RErr, [Device "device"]), 97, [Optional "zerofree"],
2473    [InitNone, Always, TestOutput (
2474       [["part_disk"; "/dev/sda"; "mbr"];
2475        ["mkfs"; "ext3"; "/dev/sda1"];
2476        ["mount_options"; ""; "/dev/sda1"; "/"];
2477        ["write_file"; "/new"; "test file"; "0"];
2478        ["umount"; "/dev/sda1"];
2479        ["zerofree"; "/dev/sda1"];
2480        ["mount_options"; ""; "/dev/sda1"; "/"];
2481        ["cat"; "/new"]], "test file")],
2482    "zero unused inodes and disk blocks on ext2/3 filesystem",
2483    "\
2484 This runs the I<zerofree> program on C<device>.  This program
2485 claims to zero unused inodes and disk blocks on an ext2/3
2486 filesystem, thus making it possible to compress the filesystem
2487 more effectively.
2488
2489 You should B<not> run this program if the filesystem is
2490 mounted.
2491
2492 It is possible that using this program can damage the filesystem
2493 or data on the filesystem.");
2494
2495   ("pvresize", (RErr, [Device "device"]), 98, [Optional "lvm2"],
2496    [],
2497    "resize an LVM physical volume",
2498    "\
2499 This resizes (expands or shrinks) an existing LVM physical
2500 volume to match the new size of the underlying device.");
2501
2502   ("sfdisk_N", (RErr, [Device "device"; Int "partnum";
2503                        Int "cyls"; Int "heads"; Int "sectors";
2504                        String "line"]), 99, [DangerWillRobinson],
2505    [],
2506    "modify a single partition on a block device",
2507    "\
2508 This runs L<sfdisk(8)> option to modify just the single
2509 partition C<n> (note: C<n> counts from 1).
2510
2511 For other parameters, see C<guestfs_sfdisk>.  You should usually
2512 pass C<0> for the cyls/heads/sectors parameters.
2513
2514 See also: C<guestfs_part_add>");
2515
2516   ("sfdisk_l", (RString "partitions", [Device "device"]), 100, [],
2517    [],
2518    "display the partition table",
2519    "\
2520 This displays the partition table on C<device>, in the
2521 human-readable output of the L<sfdisk(8)> command.  It is
2522 not intended to be parsed.
2523
2524 See also: C<guestfs_part_list>");
2525
2526   ("sfdisk_kernel_geometry", (RString "partitions", [Device "device"]), 101, [],
2527    [],
2528    "display the kernel geometry",
2529    "\
2530 This displays the kernel's idea of the geometry of C<device>.
2531
2532 The result is in human-readable format, and not designed to
2533 be parsed.");
2534
2535   ("sfdisk_disk_geometry", (RString "partitions", [Device "device"]), 102, [],
2536    [],
2537    "display the disk geometry from the partition table",
2538    "\
2539 This displays the disk geometry of C<device> read from the
2540 partition table.  Especially in the case where the underlying
2541 block device has been resized, this can be different from the
2542 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
2543
2544 The result is in human-readable format, and not designed to
2545 be parsed.");
2546
2547   ("vg_activate_all", (RErr, [Bool "activate"]), 103, [Optional "lvm2"],
2548    [],
2549    "activate or deactivate all volume groups",
2550    "\
2551 This command activates or (if C<activate> is false) deactivates
2552 all logical volumes in all volume groups.
2553 If activated, then they are made known to the
2554 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2555 then those devices disappear.
2556
2557 This command is the same as running C<vgchange -a y|n>");
2558
2559   ("vg_activate", (RErr, [Bool "activate"; StringList "volgroups"]), 104, [Optional "lvm2"],
2560    [],
2561    "activate or deactivate some volume groups",
2562    "\
2563 This command activates or (if C<activate> is false) deactivates
2564 all logical volumes in the listed volume groups C<volgroups>.
2565 If activated, then they are made known to the
2566 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2567 then those devices disappear.
2568
2569 This command is the same as running C<vgchange -a y|n volgroups...>
2570
2571 Note that if C<volgroups> is an empty list then B<all> volume groups
2572 are activated or deactivated.");
2573
2574   ("lvresize", (RErr, [Device "device"; Int "mbytes"]), 105, [Optional "lvm2"],
2575    [InitNone, Always, TestOutput (
2576       [["part_disk"; "/dev/sda"; "mbr"];
2577        ["pvcreate"; "/dev/sda1"];
2578        ["vgcreate"; "VG"; "/dev/sda1"];
2579        ["lvcreate"; "LV"; "VG"; "10"];
2580        ["mkfs"; "ext2"; "/dev/VG/LV"];
2581        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2582        ["write_file"; "/new"; "test content"; "0"];
2583        ["umount"; "/"];
2584        ["lvresize"; "/dev/VG/LV"; "20"];
2585        ["e2fsck_f"; "/dev/VG/LV"];
2586        ["resize2fs"; "/dev/VG/LV"];
2587        ["mount_options"; ""; "/dev/VG/LV"; "/"];
2588        ["cat"; "/new"]], "test content");
2589     InitNone, Always, TestRun (
2590       (* Make an LV smaller to test RHBZ#587484. *)
2591       [["part_disk"; "/dev/sda"; "mbr"];
2592        ["pvcreate"; "/dev/sda1"];
2593        ["vgcreate"; "VG"; "/dev/sda1"];
2594        ["lvcreate"; "LV"; "VG"; "20"];
2595        ["lvresize"; "/dev/VG/LV"; "10"]])],
2596    "resize an LVM logical volume",
2597    "\
2598 This resizes (expands or shrinks) an existing LVM logical
2599 volume to C<mbytes>.  When reducing, data in the reduced part
2600 is lost.");
2601
2602   ("resize2fs", (RErr, [Device "device"]), 106, [],
2603    [], (* lvresize tests this *)
2604    "resize an ext2/ext3 filesystem",
2605    "\
2606 This resizes an ext2 or ext3 filesystem to match the size of
2607 the underlying device.
2608
2609 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
2610 on the C<device> before calling this command.  For unknown reasons
2611 C<resize2fs> sometimes gives an error about this and sometimes not.
2612 In any case, it is always safe to call C<guestfs_e2fsck_f> before
2613 calling this function.");
2614
2615   ("find", (RStringList "names", [Pathname "directory"]), 107, [ProtocolLimitWarning],
2616    [InitBasicFS, Always, TestOutputList (
2617       [["find"; "/"]], ["lost+found"]);
2618     InitBasicFS, Always, TestOutputList (
2619       [["touch"; "/a"];
2620        ["mkdir"; "/b"];
2621        ["touch"; "/b/c"];
2622        ["find"; "/"]], ["a"; "b"; "b/c"; "lost+found"]);
2623     InitBasicFS, Always, TestOutputList (
2624       [["mkdir_p"; "/a/b/c"];
2625        ["touch"; "/a/b/c/d"];
2626        ["find"; "/a/b/"]], ["c"; "c/d"])],
2627    "find all files and directories",
2628    "\
2629 This command lists out all files and directories, recursively,
2630 starting at C<directory>.  It is essentially equivalent to
2631 running the shell command C<find directory -print> but some
2632 post-processing happens on the output, described below.
2633
2634 This returns a list of strings I<without any prefix>.  Thus
2635 if the directory structure was:
2636
2637  /tmp/a
2638  /tmp/b
2639  /tmp/c/d
2640
2641 then the returned list from C<guestfs_find> C</tmp> would be
2642 4 elements:
2643
2644  a
2645  b
2646  c
2647  c/d
2648
2649 If C<directory> is not a directory, then this command returns
2650 an error.
2651
2652 The returned list is sorted.
2653
2654 See also C<guestfs_find0>.");
2655
2656   ("e2fsck_f", (RErr, [Device "device"]), 108, [],
2657    [], (* lvresize tests this *)
2658    "check an ext2/ext3 filesystem",
2659    "\
2660 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
2661 filesystem checker on C<device>, noninteractively (C<-p>),
2662 even if the filesystem appears to be clean (C<-f>).
2663
2664 This command is only needed because of C<guestfs_resize2fs>
2665 (q.v.).  Normally you should use C<guestfs_fsck>.");
2666
2667   ("sleep", (RErr, [Int "secs"]), 109, [],
2668    [InitNone, Always, TestRun (
2669       [["sleep"; "1"]])],
2670    "sleep for some seconds",
2671    "\
2672 Sleep for C<secs> seconds.");
2673
2674   ("ntfs_3g_probe", (RInt "status", [Bool "rw"; Device "device"]), 110, [Optional "ntfs3g"],
2675    [InitNone, Always, TestOutputInt (
2676       [["part_disk"; "/dev/sda"; "mbr"];
2677        ["mkfs"; "ntfs"; "/dev/sda1"];
2678        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 0);
2679     InitNone, Always, TestOutputInt (
2680       [["part_disk"; "/dev/sda"; "mbr"];
2681        ["mkfs"; "ext2"; "/dev/sda1"];
2682        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 12)],
2683    "probe NTFS volume",
2684    "\
2685 This command runs the L<ntfs-3g.probe(8)> command which probes
2686 an NTFS C<device> for mountability.  (Not all NTFS volumes can
2687 be mounted read-write, and some cannot be mounted at all).
2688
2689 C<rw> is a boolean flag.  Set it to true if you want to test
2690 if the volume can be mounted read-write.  Set it to false if
2691 you want to test if the volume can be mounted read-only.
2692
2693 The return value is an integer which C<0> if the operation
2694 would succeed, or some non-zero value documented in the
2695 L<ntfs-3g.probe(8)> manual page.");
2696
2697   ("sh", (RString "output", [String "command"]), 111, [],
2698    [], (* XXX needs tests *)
2699    "run a command via the shell",
2700    "\
2701 This call runs a command from the guest filesystem via the
2702 guest's C</bin/sh>.
2703
2704 This is like C<guestfs_command>, but passes the command to:
2705
2706  /bin/sh -c \"command\"
2707
2708 Depending on the guest's shell, this usually results in
2709 wildcards being expanded, shell expressions being interpolated
2710 and so on.
2711
2712 All the provisos about C<guestfs_command> apply to this call.");
2713
2714   ("sh_lines", (RStringList "lines", [String "command"]), 112, [],
2715    [], (* XXX needs tests *)
2716    "run a command via the shell returning lines",
2717    "\
2718 This is the same as C<guestfs_sh>, but splits the result
2719 into a list of lines.
2720
2721 See also: C<guestfs_command_lines>");
2722
2723   ("glob_expand", (RStringList "paths", [Pathname "pattern"]), 113, [],
2724    (* Use Pathname here, and hence ABS_PATH (pattern,... in generated
2725     * code in stubs.c, since all valid glob patterns must start with "/".
2726     * There is no concept of "cwd" in libguestfs, hence no "."-relative names.
2727     *)
2728    [InitBasicFS, Always, TestOutputList (
2729       [["mkdir_p"; "/a/b/c"];
2730        ["touch"; "/a/b/c/d"];
2731        ["touch"; "/a/b/c/e"];
2732        ["glob_expand"; "/a/b/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2733     InitBasicFS, Always, TestOutputList (
2734       [["mkdir_p"; "/a/b/c"];
2735        ["touch"; "/a/b/c/d"];
2736        ["touch"; "/a/b/c/e"];
2737        ["glob_expand"; "/a/*/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2738     InitBasicFS, Always, TestOutputList (
2739       [["mkdir_p"; "/a/b/c"];
2740        ["touch"; "/a/b/c/d"];
2741        ["touch"; "/a/b/c/e"];
2742        ["glob_expand"; "/a/*/x/*"]], [])],
2743    "expand a wildcard path",
2744    "\
2745 This command searches for all the pathnames matching
2746 C<pattern> according to the wildcard expansion rules
2747 used by the shell.
2748
2749 If no paths match, then this returns an empty list
2750 (note: not an error).
2751
2752 It is just a wrapper around the C L<glob(3)> function
2753 with flags C<GLOB_MARK|GLOB_BRACE>.
2754 See that manual page for more details.");
2755
2756   ("scrub_device", (RErr, [Device "device"]), 114, [DangerWillRobinson; Optional "scrub"],
2757    [InitNone, Always, TestRun ( (* use /dev/sdc because it's smaller *)
2758       [["scrub_device"; "/dev/sdc"]])],
2759    "scrub (securely wipe) a device",
2760    "\
2761 This command writes patterns over C<device> to make data retrieval
2762 more difficult.
2763
2764 It is an interface to the L<scrub(1)> program.  See that
2765 manual page for more details.");
2766
2767   ("scrub_file", (RErr, [Pathname "file"]), 115, [Optional "scrub"],
2768    [InitBasicFS, Always, TestRun (
2769       [["write_file"; "/file"; "content"; "0"];
2770        ["scrub_file"; "/file"]])],
2771    "scrub (securely wipe) a file",
2772    "\
2773 This command writes patterns over a file to make data retrieval
2774 more difficult.
2775
2776 The file is I<removed> after scrubbing.
2777
2778 It is an interface to the L<scrub(1)> program.  See that
2779 manual page for more details.");
2780
2781   ("scrub_freespace", (RErr, [Pathname "dir"]), 116, [Optional "scrub"],
2782    [], (* XXX needs testing *)
2783    "scrub (securely wipe) free space",
2784    "\
2785 This command creates the directory C<dir> and then fills it
2786 with files until the filesystem is full, and scrubs the files
2787 as for C<guestfs_scrub_file>, and deletes them.
2788 The intention is to scrub any free space on the partition
2789 containing C<dir>.
2790
2791 It is an interface to the L<scrub(1)> program.  See that
2792 manual page for more details.");
2793
2794   ("mkdtemp", (RString "dir", [Pathname "template"]), 117, [],
2795    [InitBasicFS, Always, TestRun (
2796       [["mkdir"; "/tmp"];
2797        ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2798    "create a temporary directory",
2799    "\
2800 This command creates a temporary directory.  The
2801 C<template> parameter should be a full pathname for the
2802 temporary directory name with the final six characters being
2803 \"XXXXXX\".
2804
2805 For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\",
2806 the second one being suitable for Windows filesystems.
2807
2808 The name of the temporary directory that was created
2809 is returned.
2810
2811 The temporary directory is created with mode 0700
2812 and is owned by root.
2813
2814 The caller is responsible for deleting the temporary
2815 directory and its contents after use.
2816
2817 See also: L<mkdtemp(3)>");
2818
2819   ("wc_l", (RInt "lines", [Pathname "path"]), 118, [],
2820    [InitISOFS, Always, TestOutputInt (
2821       [["wc_l"; "/10klines"]], 10000)],
2822    "count lines in a file",
2823    "\
2824 This command counts the lines in a file, using the
2825 C<wc -l> external command.");
2826
2827   ("wc_w", (RInt "words", [Pathname "path"]), 119, [],
2828    [InitISOFS, Always, TestOutputInt (
2829       [["wc_w"; "/10klines"]], 10000)],
2830    "count words in a file",
2831    "\
2832 This command counts the words in a file, using the
2833 C<wc -w> external command.");
2834
2835   ("wc_c", (RInt "chars", [Pathname "path"]), 120, [],
2836    [InitISOFS, Always, TestOutputInt (
2837       [["wc_c"; "/100kallspaces"]], 102400)],
2838    "count characters in a file",
2839    "\
2840 This command counts the characters in a file, using the
2841 C<wc -c> external command.");
2842
2843   ("head", (RStringList "lines", [Pathname "path"]), 121, [ProtocolLimitWarning],
2844    [InitISOFS, Always, TestOutputList (
2845       [["head"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz";"3abcdefghijklmnopqrstuvwxyz";"4abcdefghijklmnopqrstuvwxyz";"5abcdefghijklmnopqrstuvwxyz";"6abcdefghijklmnopqrstuvwxyz";"7abcdefghijklmnopqrstuvwxyz";"8abcdefghijklmnopqrstuvwxyz";"9abcdefghijklmnopqrstuvwxyz"])],
2846    "return first 10 lines of a file",
2847    "\
2848 This command returns up to the first 10 lines of a file as
2849 a list of strings.");
2850
2851   ("head_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 122, [ProtocolLimitWarning],
2852    [InitISOFS, Always, TestOutputList (
2853       [["head_n"; "3"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2854     InitISOFS, Always, TestOutputList (
2855       [["head_n"; "-9997"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2856     InitISOFS, Always, TestOutputList (
2857       [["head_n"; "0"; "/10klines"]], [])],
2858    "return first N lines of a file",
2859    "\
2860 If the parameter C<nrlines> is a positive number, this returns the first
2861 C<nrlines> lines of the file C<path>.
2862
2863 If the parameter C<nrlines> is a negative number, this returns lines
2864 from the file C<path>, excluding the last C<nrlines> lines.
2865
2866 If the parameter C<nrlines> is zero, this returns an empty list.");
2867
2868   ("tail", (RStringList "lines", [Pathname "path"]), 123, [ProtocolLimitWarning],
2869    [InitISOFS, Always, TestOutputList (
2870       [["tail"; "/10klines"]], ["9990abcdefghijklmnopqrstuvwxyz";"9991abcdefghijklmnopqrstuvwxyz";"9992abcdefghijklmnopqrstuvwxyz";"9993abcdefghijklmnopqrstuvwxyz";"9994abcdefghijklmnopqrstuvwxyz";"9995abcdefghijklmnopqrstuvwxyz";"9996abcdefghijklmnopqrstuvwxyz";"9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"])],
2871    "return last 10 lines of a file",
2872    "\
2873 This command returns up to the last 10 lines of a file as
2874 a list of strings.");
2875
2876   ("tail_n", (RStringList "lines", [Int "nrlines"; Pathname "path"]), 124, [ProtocolLimitWarning],
2877    [InitISOFS, Always, TestOutputList (
2878       [["tail_n"; "3"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2879     InitISOFS, Always, TestOutputList (
2880       [["tail_n"; "-9998"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2881     InitISOFS, Always, TestOutputList (
2882       [["tail_n"; "0"; "/10klines"]], [])],
2883    "return last N lines of a file",
2884    "\
2885 If the parameter C<nrlines> is a positive number, this returns the last
2886 C<nrlines> lines of the file C<path>.
2887
2888 If the parameter C<nrlines> is a negative number, this returns lines
2889 from the file C<path>, starting with the C<-nrlines>th line.
2890
2891 If the parameter C<nrlines> is zero, this returns an empty list.");
2892
2893   ("df", (RString "output", []), 125, [],
2894    [], (* XXX Tricky to test because it depends on the exact format
2895         * of the 'df' command and other imponderables.
2896         *)
2897    "report file system disk space usage",
2898    "\
2899 This command runs the C<df> command to report disk space used.
2900
2901 This command is mostly useful for interactive sessions.  It
2902 is I<not> intended that you try to parse the output string.
2903 Use C<statvfs> from programs.");
2904
2905   ("df_h", (RString "output", []), 126, [],
2906    [], (* XXX Tricky to test because it depends on the exact format
2907         * of the 'df' command and other imponderables.
2908         *)
2909    "report file system disk space usage (human readable)",
2910    "\
2911 This command runs the C<df -h> command to report disk space used
2912 in human-readable format.
2913
2914 This command is mostly useful for interactive sessions.  It
2915 is I<not> intended that you try to parse the output string.
2916 Use C<statvfs> from programs.");
2917
2918   ("du", (RInt64 "sizekb", [Pathname "path"]), 127, [],
2919    [InitISOFS, Always, TestOutputInt (
2920       [["du"; "/directory"]], 2 (* ISO fs blocksize is 2K *))],
2921    "estimate file space usage",
2922    "\
2923 This command runs the C<du -s> command to estimate file space
2924 usage for C<path>.
2925
2926 C<path> can be a file or a directory.  If C<path> is a directory
2927 then the estimate includes the contents of the directory and all
2928 subdirectories (recursively).
2929
2930 The result is the estimated size in I<kilobytes>
2931 (ie. units of 1024 bytes).");
2932
2933   ("initrd_list", (RStringList "filenames", [Pathname "path"]), 128, [],
2934    [InitISOFS, Always, TestOutputList (
2935       [["initrd_list"; "/initrd"]], ["empty";"known-1";"known-2";"known-3";"known-4"; "known-5"])],
2936    "list files in an initrd",
2937    "\
2938 This command lists out files contained in an initrd.
2939
2940 The files are listed without any initial C</> character.  The
2941 files are listed in the order they appear (not necessarily
2942 alphabetical).  Directory names are listed as separate items.
2943
2944 Old Linux kernels (2.4 and earlier) used a compressed ext2
2945 filesystem as initrd.  We I<only> support the newer initramfs
2946 format (compressed cpio files).");
2947
2948   ("mount_loop", (RErr, [Pathname "file"; Pathname "mountpoint"]), 129, [],
2949    [],
2950    "mount a file using the loop device",
2951    "\
2952 This command lets you mount C<file> (a filesystem image
2953 in a file) on a mount point.  It is entirely equivalent to
2954 the command C<mount -o loop file mountpoint>.");
2955
2956   ("mkswap", (RErr, [Device "device"]), 130, [],
2957    [InitEmpty, Always, TestRun (
2958       [["part_disk"; "/dev/sda"; "mbr"];
2959        ["mkswap"; "/dev/sda1"]])],
2960    "create a swap partition",
2961    "\
2962 Create a swap partition on C<device>.");
2963
2964   ("mkswap_L", (RErr, [String "label"; Device "device"]), 131, [],
2965    [InitEmpty, Always, TestRun (
2966       [["part_disk"; "/dev/sda"; "mbr"];
2967        ["mkswap_L"; "hello"; "/dev/sda1"]])],
2968    "create a swap partition with a label",
2969    "\
2970 Create a swap partition on C<device> with label C<label>.
2971
2972 Note that you cannot attach a swap label to a block device
2973 (eg. C</dev/sda>), just to a partition.  This appears to be
2974 a limitation of the kernel or swap tools.");
2975
2976   ("mkswap_U", (RErr, [String "uuid"; Device "device"]), 132, [Optional "linuxfsuuid"],
2977    (let uuid = uuidgen () in
2978     [InitEmpty, Always, TestRun (
2979        [["part_disk"; "/dev/sda"; "mbr"];
2980         ["mkswap_U"; uuid; "/dev/sda1"]])]),
2981    "create a swap partition with an explicit UUID",
2982    "\
2983 Create a swap partition on C<device> with UUID C<uuid>.");
2984
2985   ("mknod", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 133, [Optional "mknod"],
2986    [InitBasicFS, Always, TestOutputStruct (
2987       [["mknod"; "0o10777"; "0"; "0"; "/node"];
2988        (* NB: default umask 022 means 0777 -> 0755 in these tests *)
2989        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)]);
2990     InitBasicFS, Always, TestOutputStruct (
2991       [["mknod"; "0o60777"; "66"; "99"; "/node"];
2992        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
2993    "make block, character or FIFO devices",
2994    "\
2995 This call creates block or character special devices, or
2996 named pipes (FIFOs).
2997
2998 The C<mode> parameter should be the mode, using the standard
2999 constants.  C<devmajor> and C<devminor> are the
3000 device major and minor numbers, only used when creating block
3001 and character special devices.
3002
3003 Note that, just like L<mknod(2)>, the mode must be bitwise
3004 OR'd with S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call
3005 just creates a regular file).  These constants are
3006 available in the standard Linux header files, or you can use
3007 C<guestfs_mknod_b>, C<guestfs_mknod_c> or C<guestfs_mkfifo>
3008 which are wrappers around this command which bitwise OR
3009 in the appropriate constant for you.
3010
3011 The mode actually set is affected by the umask.");
3012
3013   ("mkfifo", (RErr, [Int "mode"; Pathname "path"]), 134, [Optional "mknod"],
3014    [InitBasicFS, Always, TestOutputStruct (
3015       [["mkfifo"; "0o777"; "/node"];
3016        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)])],
3017    "make FIFO (named pipe)",
3018    "\
3019 This call creates a FIFO (named pipe) called C<path> with
3020 mode C<mode>.  It is just a convenient wrapper around
3021 C<guestfs_mknod>.
3022
3023 The mode actually set is affected by the umask.");
3024
3025   ("mknod_b", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 135, [Optional "mknod"],
3026    [InitBasicFS, Always, TestOutputStruct (
3027       [["mknod_b"; "0o777"; "99"; "66"; "/node"];
3028        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
3029    "make block device node",
3030    "\
3031 This call creates a block device node called C<path> with
3032 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
3033 It is just a convenient wrapper around C<guestfs_mknod>.
3034
3035 The mode actually set is affected by the umask.");
3036
3037   ("mknod_c", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; Pathname "path"]), 136, [Optional "mknod"],
3038    [InitBasicFS, Always, TestOutputStruct (
3039       [["mknod_c"; "0o777"; "99"; "66"; "/node"];
3040        ["stat"; "/node"]], [CompareWithInt ("mode", 0o20755)])],
3041    "make char device node",
3042    "\
3043 This call creates a char device node called C<path> with
3044 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
3045 It is just a convenient wrapper around C<guestfs_mknod>.
3046
3047 The mode actually set is affected by the umask.");
3048
3049   ("umask", (RInt "oldmask", [Int "mask"]), 137, [FishOutput FishOutputOctal],
3050    [InitEmpty, Always, TestOutputInt (
3051       [["umask"; "0o22"]], 0o22)],
3052    "set file mode creation mask (umask)",
3053    "\
3054 This function sets the mask used for creating new files and
3055 device nodes to C<mask & 0777>.
3056
3057 Typical umask values would be C<022> which creates new files
3058 with permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and
3059 C<002> which creates new files with permissions like
3060 \"-rw-rw-r--\" or \"-rwxrwxr-x\".
3061
3062 The default umask is C<022>.  This is important because it
3063 means that directories and device nodes will be created with
3064 C<0644> or C<0755> mode even if you specify C<0777>.
3065
3066 See also C<guestfs_get_umask>,
3067 L<umask(2)>, C<guestfs_mknod>, C<guestfs_mkdir>.
3068
3069 This call returns the previous umask.");
3070
3071   ("readdir", (RStructList ("entries", "dirent"), [Pathname "dir"]), 138, [],
3072    [],
3073    "read directories entries",
3074    "\
3075 This returns the list of directory entries in directory C<dir>.
3076
3077 All entries in the directory are returned, including C<.> and
3078 C<..>.  The entries are I<not> sorted, but returned in the same
3079 order as the underlying filesystem.
3080
3081 Also this call returns basic file type information about each
3082 file.  The C<ftyp> field will contain one of the following characters:
3083
3084 =over 4
3085
3086 =item 'b'
3087
3088 Block special
3089
3090 =item 'c'
3091
3092 Char special
3093
3094 =item 'd'
3095
3096 Directory
3097
3098 =item 'f'
3099
3100 FIFO (named pipe)
3101
3102 =item 'l'
3103
3104 Symbolic link
3105
3106 =item 'r'
3107
3108 Regular file
3109
3110 =item 's'
3111
3112 Socket
3113
3114 =item 'u'
3115
3116 Unknown file type
3117
3118 =item '?'
3119
3120 The L<readdir(3)> returned a C<d_type> field with an
3121 unexpected value
3122
3123 =back
3124
3125 This function is primarily intended for use by programs.  To
3126 get a simple list of names, use C<guestfs_ls>.  To get a printable
3127 directory for human consumption, use C<guestfs_ll>.");
3128
3129   ("sfdiskM", (RErr, [Device "device"; StringList "lines"]), 139, [DangerWillRobinson],
3130    [],
3131    "create partitions on a block device",
3132    "\
3133 This is a simplified interface to the C<guestfs_sfdisk>
3134 command, where partition sizes are specified in megabytes
3135 only (rounded to the nearest cylinder) and you don't need
3136 to specify the cyls, heads and sectors parameters which
3137 were rarely if ever used anyway.
3138
3139 See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage
3140 and C<guestfs_part_disk>");
3141
3142   ("zfile", (RString "description", [String "meth"; Pathname "path"]), 140, [DeprecatedBy "file"],
3143    [],
3144    "determine file type inside a compressed file",
3145    "\
3146 This command runs C<file> after first decompressing C<path>
3147 using C<method>.
3148
3149 C<method> must be one of C<gzip>, C<compress> or C<bzip2>.
3150
3151 Since 1.0.63, use C<guestfs_file> instead which can now
3152 process compressed files.");
3153
3154   ("getxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 141, [Optional "linuxxattrs"],
3155    [],
3156    "list extended attributes of a file or directory",
3157    "\
3158 This call lists the extended attributes of the file or directory
3159 C<path>.
3160
3161 At the system call level, this is a combination of the
3162 L<listxattr(2)> and L<getxattr(2)> calls.
3163
3164 See also: C<guestfs_lgetxattrs>, L<attr(5)>.");
3165
3166   ("lgetxattrs", (RStructList ("xattrs", "xattr"), [Pathname "path"]), 142, [Optional "linuxxattrs"],
3167    [],
3168    "list extended attributes of a file or directory",
3169    "\
3170 This is the same as C<guestfs_getxattrs>, but if C<path>
3171 is a symbolic link, then it returns the extended attributes
3172 of the link itself.");
3173
3174   ("setxattr", (RErr, [String "xattr";
3175                        String "val"; Int "vallen"; (* will be BufferIn *)
3176                        Pathname "path"]), 143, [Optional "linuxxattrs"],
3177    [],
3178    "set extended attribute of a file or directory",
3179    "\
3180 This call sets the extended attribute named C<xattr>
3181 of the file C<path> to the value C<val> (of length C<vallen>).
3182 The value is arbitrary 8 bit data.
3183
3184 See also: C<guestfs_lsetxattr>, L<attr(5)>.");
3185
3186   ("lsetxattr", (RErr, [String "xattr";
3187                         String "val"; Int "vallen"; (* will be BufferIn *)
3188                         Pathname "path"]), 144, [Optional "linuxxattrs"],
3189    [],
3190    "set extended attribute of a file or directory",
3191    "\
3192 This is the same as C<guestfs_setxattr>, but if C<path>
3193 is a symbolic link, then it sets an extended attribute
3194 of the link itself.");
3195
3196   ("removexattr", (RErr, [String "xattr"; Pathname "path"]), 145, [Optional "linuxxattrs"],
3197    [],
3198    "remove extended attribute of a file or directory",
3199    "\
3200 This call removes the extended attribute named C<xattr>
3201 of the file C<path>.
3202
3203 See also: C<guestfs_lremovexattr>, L<attr(5)>.");
3204
3205   ("lremovexattr", (RErr, [String "xattr"; Pathname "path"]), 146, [Optional "linuxxattrs"],
3206    [],
3207    "remove extended attribute of a file or directory",
3208    "\
3209 This is the same as C<guestfs_removexattr>, but if C<path>
3210 is a symbolic link, then it removes an extended attribute
3211 of the link itself.");
3212
3213   ("mountpoints", (RHashtable "mps", []), 147, [],
3214    [],
3215    "show mountpoints",
3216    "\
3217 This call is similar to C<guestfs_mounts>.  That call returns
3218 a list of devices.  This one returns a hash table (map) of
3219 device name to directory where the device is mounted.");
3220
3221   ("mkmountpoint", (RErr, [String "exemptpath"]), 148, [],
3222    (* This is a special case: while you would expect a parameter
3223     * of type "Pathname", that doesn't work, because it implies
3224     * NEED_ROOT in the generated calling code in stubs.c, and
3225     * this function cannot use NEED_ROOT.
3226     *)
3227    [],
3228    "create a mountpoint",
3229    "\
3230 C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are
3231 specialized calls that can be used to create extra mountpoints
3232 before mounting the first filesystem.
3233
3234 These calls are I<only> necessary in some very limited circumstances,
3235 mainly the case where you want to mount a mix of unrelated and/or
3236 read-only filesystems together.
3237
3238 For example, live CDs often contain a \"Russian doll\" nest of
3239 filesystems, an ISO outer layer, with a squashfs image inside, with
3240 an ext2/3 image inside that.  You can unpack this as follows
3241 in guestfish:
3242
3243  add-ro Fedora-11-i686-Live.iso
3244  run
3245  mkmountpoint /cd
3246  mkmountpoint /squash
3247  mkmountpoint /ext3
3248  mount /dev/sda /cd
3249  mount-loop /cd/LiveOS/squashfs.img /squash
3250  mount-loop /squash/LiveOS/ext3fs.img /ext3
3251
3252 The inner filesystem is now unpacked under the /ext3 mountpoint.");
3253
3254   ("rmmountpoint", (RErr, [String "exemptpath"]), 149, [],
3255    [],
3256    "remove a mountpoint",
3257    "\
3258 This calls removes a mountpoint that was previously created
3259 with C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint>
3260 for full details.");
3261
3262   ("read_file", (RBufferOut "content", [Pathname "path"]), 150, [ProtocolLimitWarning],
3263    [InitISOFS, Always, TestOutputBuffer (
3264       [["read_file"; "/known-4"]], "abc\ndef\nghi")],
3265    "read a file",
3266    "\
3267 This calls returns the contents of the file C<path> as a
3268 buffer.
3269
3270 Unlike C<guestfs_cat>, this function can correctly
3271 handle files that contain embedded ASCII NUL characters.
3272 However unlike C<guestfs_download>, this function is limited
3273 in the total size of file that can be handled.");
3274
3275   ("grep", (RStringList "lines", [String "regex"; Pathname "path"]), 151, [ProtocolLimitWarning],
3276    [InitISOFS, Always, TestOutputList (
3277       [["grep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"]);
3278     InitISOFS, Always, TestOutputList (
3279       [["grep"; "nomatch"; "/test-grep.txt"]], [])],
3280    "return lines matching a pattern",
3281    "\
3282 This calls the external C<grep> program and returns the
3283 matching lines.");
3284
3285   ("egrep", (RStringList "lines", [String "regex"; Pathname "path"]), 152, [ProtocolLimitWarning],
3286    [InitISOFS, Always, TestOutputList (
3287       [["egrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3288    "return lines matching a pattern",
3289    "\
3290 This calls the external C<egrep> program and returns the
3291 matching lines.");
3292
3293   ("fgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 153, [ProtocolLimitWarning],
3294    [InitISOFS, Always, TestOutputList (
3295       [["fgrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3296    "return lines matching a pattern",
3297    "\
3298 This calls the external C<fgrep> program and returns the
3299 matching lines.");
3300
3301   ("grepi", (RStringList "lines", [String "regex"; Pathname "path"]), 154, [ProtocolLimitWarning],
3302    [InitISOFS, Always, TestOutputList (
3303       [["grepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3304    "return lines matching a pattern",
3305    "\
3306 This calls the external C<grep -i> program and returns the
3307 matching lines.");
3308
3309   ("egrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 155, [ProtocolLimitWarning],
3310    [InitISOFS, Always, TestOutputList (
3311       [["egrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3312    "return lines matching a pattern",
3313    "\
3314 This calls the external C<egrep -i> program and returns the
3315 matching lines.");
3316
3317   ("fgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 156, [ProtocolLimitWarning],
3318    [InitISOFS, Always, TestOutputList (
3319       [["fgrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3320    "return lines matching a pattern",
3321    "\
3322 This calls the external C<fgrep -i> program and returns the
3323 matching lines.");
3324
3325   ("zgrep", (RStringList "lines", [String "regex"; Pathname "path"]), 157, [ProtocolLimitWarning],
3326    [InitISOFS, Always, TestOutputList (
3327       [["zgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3328    "return lines matching a pattern",
3329    "\
3330 This calls the external C<zgrep> program and returns the
3331 matching lines.");
3332
3333   ("zegrep", (RStringList "lines", [String "regex"; Pathname "path"]), 158, [ProtocolLimitWarning],
3334    [InitISOFS, Always, TestOutputList (
3335       [["zegrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3336    "return lines matching a pattern",
3337    "\
3338 This calls the external C<zegrep> program and returns the
3339 matching lines.");
3340
3341   ("zfgrep", (RStringList "lines", [String "pattern"; Pathname "path"]), 159, [ProtocolLimitWarning],
3342    [InitISOFS, Always, TestOutputList (
3343       [["zfgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3344    "return lines matching a pattern",
3345    "\
3346 This calls the external C<zfgrep> program and returns the
3347 matching lines.");
3348
3349   ("zgrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 160, [ProtocolLimitWarning],
3350    [InitISOFS, Always, TestOutputList (
3351       [["zgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3352    "return lines matching a pattern",
3353    "\
3354 This calls the external C<zgrep -i> program and returns the
3355 matching lines.");
3356
3357   ("zegrepi", (RStringList "lines", [String "regex"; Pathname "path"]), 161, [ProtocolLimitWarning],
3358    [InitISOFS, Always, TestOutputList (
3359       [["zegrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3360    "return lines matching a pattern",
3361    "\
3362 This calls the external C<zegrep -i> program and returns the
3363 matching lines.");
3364
3365   ("zfgrepi", (RStringList "lines", [String "pattern"; Pathname "path"]), 162, [ProtocolLimitWarning],
3366    [InitISOFS, Always, TestOutputList (
3367       [["zfgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3368    "return lines matching a pattern",
3369    "\
3370 This calls the external C<zfgrep -i> program and returns the
3371 matching lines.");
3372
3373   ("realpath", (RString "rpath", [Pathname "path"]), 163, [Optional "realpath"],
3374    [InitISOFS, Always, TestOutput (
3375       [["realpath"; "/../directory"]], "/directory")],
3376    "canonicalized absolute pathname",
3377    "\
3378 Return the canonicalized absolute pathname of C<path>.  The
3379 returned path has no C<.>, C<..> or symbolic link path elements.");
3380
3381   ("ln", (RErr, [String "target"; Pathname "linkname"]), 164, [],
3382    [InitBasicFS, Always, TestOutputStruct (
3383       [["touch"; "/a"];
3384        ["ln"; "/a"; "/b"];
3385        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3386    "create a hard link",
3387    "\
3388 This command creates a hard link using the C<ln> command.");
3389
3390   ("ln_f", (RErr, [String "target"; Pathname "linkname"]), 165, [],
3391    [InitBasicFS, Always, TestOutputStruct (
3392       [["touch"; "/a"];
3393        ["touch"; "/b"];
3394        ["ln_f"; "/a"; "/b"];
3395        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3396    "create a hard link",
3397    "\
3398 This command creates a hard link using the C<ln -f> command.
3399 The C<-f> option removes the link (C<linkname>) if it exists already.");
3400
3401   ("ln_s", (RErr, [String "target"; Pathname "linkname"]), 166, [],
3402    [InitBasicFS, Always, TestOutputStruct (
3403       [["touch"; "/a"];
3404        ["ln_s"; "a"; "/b"];
3405        ["lstat"; "/b"]], [CompareWithInt ("mode", 0o120777)])],
3406    "create a symbolic link",
3407    "\
3408 This command creates a symbolic link using the C<ln -s> command.");
3409
3410   ("ln_sf", (RErr, [String "target"; Pathname "linkname"]), 167, [],
3411    [InitBasicFS, Always, TestOutput (
3412       [["mkdir_p"; "/a/b"];
3413        ["touch"; "/a/b/c"];
3414        ["ln_sf"; "../d"; "/a/b/c"];
3415        ["readlink"; "/a/b/c"]], "../d")],
3416    "create a symbolic link",
3417    "\
3418 This command creates a symbolic link using the C<ln -sf> command,
3419 The C<-f> option removes the link (C<linkname>) if it exists already.");
3420
3421   ("readlink", (RString "link", [Pathname "path"]), 168, [],
3422    [] (* XXX tested above *),
3423    "read the target of a symbolic link",
3424    "\
3425 This command reads the target of a symbolic link.");
3426
3427   ("fallocate", (RErr, [Pathname "path"; Int "len"]), 169, [],
3428    [InitBasicFS, Always, TestOutputStruct (
3429       [["fallocate"; "/a"; "1000000"];
3430        ["stat"; "/a"]], [CompareWithInt ("size", 1_000_000)])],
3431    "preallocate a file in the guest filesystem",
3432    "\
3433 This command preallocates a file (containing zero bytes) named
3434 C<path> of size C<len> bytes.  If the file exists already, it
3435 is overwritten.
3436
3437 Do not confuse this with the guestfish-specific
3438 C<alloc> command which allocates a file in the host and
3439 attaches it as a device.");
3440
3441   ("swapon_device", (RErr, [Device "device"]), 170, [],
3442    [InitPartition, Always, TestRun (
3443       [["mkswap"; "/dev/sda1"];
3444        ["swapon_device"; "/dev/sda1"];
3445        ["swapoff_device"; "/dev/sda1"]])],
3446    "enable swap on device",
3447    "\
3448 This command enables the libguestfs appliance to use the
3449 swap device or partition named C<device>.  The increased
3450 memory is made available for all commands, for example
3451 those run using C<guestfs_command> or C<guestfs_sh>.
3452
3453 Note that you should not swap to existing guest swap
3454 partitions unless you know what you are doing.  They may
3455 contain hibernation information, or other information that
3456 the guest doesn't want you to trash.  You also risk leaking
3457 information about the host to the guest this way.  Instead,
3458 attach a new host device to the guest and swap on that.");
3459
3460   ("swapoff_device", (RErr, [Device "device"]), 171, [],
3461    [], (* XXX tested by swapon_device *)
3462    "disable swap on device",
3463    "\
3464 This command disables the libguestfs appliance swap
3465 device or partition named C<device>.
3466 See C<guestfs_swapon_device>.");
3467
3468   ("swapon_file", (RErr, [Pathname "file"]), 172, [],
3469    [InitBasicFS, Always, TestRun (
3470       [["fallocate"; "/swap"; "8388608"];
3471        ["mkswap_file"; "/swap"];
3472        ["swapon_file"; "/swap"];
3473        ["swapoff_file"; "/swap"]])],
3474    "enable swap on file",
3475    "\
3476 This command enables swap to a file.
3477 See C<guestfs_swapon_device> for other notes.");
3478
3479   ("swapoff_file", (RErr, [Pathname "file"]), 173, [],
3480    [], (* XXX tested by swapon_file *)
3481    "disable swap on file",
3482    "\
3483 This command disables the libguestfs appliance swap on file.");
3484
3485   ("swapon_label", (RErr, [String "label"]), 174, [],
3486    [InitEmpty, Always, TestRun (
3487       [["part_disk"; "/dev/sdb"; "mbr"];
3488        ["mkswap_L"; "swapit"; "/dev/sdb1"];
3489        ["swapon_label"; "swapit"];
3490        ["swapoff_label"; "swapit"];
3491        ["zero"; "/dev/sdb"];
3492        ["blockdev_rereadpt"; "/dev/sdb"]])],
3493    "enable swap on labeled swap partition",
3494    "\
3495 This command enables swap to a labeled swap partition.
3496 See C<guestfs_swapon_device> for other notes.");
3497
3498   ("swapoff_label", (RErr, [String "label"]), 175, [],
3499    [], (* XXX tested by swapon_label *)
3500    "disable swap on labeled swap partition",
3501    "\
3502 This command disables the libguestfs appliance swap on
3503 labeled swap partition.");
3504
3505   ("swapon_uuid", (RErr, [String "uuid"]), 176, [Optional "linuxfsuuid"],
3506    (let uuid = uuidgen () in
3507     [InitEmpty, Always, TestRun (
3508        [["mkswap_U"; uuid; "/dev/sdb"];
3509         ["swapon_uuid"; uuid];
3510         ["swapoff_uuid"; uuid]])]),
3511    "enable swap on swap partition by UUID",
3512    "\
3513 This command enables swap to a swap partition with the given UUID.
3514 See C<guestfs_swapon_device> for other notes.");
3515
3516   ("swapoff_uuid", (RErr, [String "uuid"]), 177, [Optional "linuxfsuuid"],
3517    [], (* XXX tested by swapon_uuid *)
3518    "disable swap on swap partition by UUID",
3519    "\
3520 This command disables the libguestfs appliance swap partition
3521 with the given UUID.");
3522
3523   ("mkswap_file", (RErr, [Pathname "path"]), 178, [],
3524    [InitBasicFS, Always, TestRun (
3525       [["fallocate"; "/swap"; "8388608"];
3526        ["mkswap_file"; "/swap"]])],
3527    "create a swap file",
3528    "\
3529 Create a swap file.
3530
3531 This command just writes a swap file signature to an existing
3532 file.  To create the file itself, use something like C<guestfs_fallocate>.");
3533
3534   ("inotify_init", (RErr, [Int "maxevents"]), 179, [Optional "inotify"],
3535    [InitISOFS, Always, TestRun (
3536       [["inotify_init"; "0"]])],
3537    "create an inotify handle",
3538    "\
3539 This command creates a new inotify handle.
3540 The inotify subsystem can be used to notify events which happen to
3541 objects in the guest filesystem.
3542
3543 C<maxevents> is the maximum number of events which will be
3544 queued up between calls to C<guestfs_inotify_read> or
3545 C<guestfs_inotify_files>.
3546 If this is passed as C<0>, then the kernel (or previously set)
3547 default is used.  For Linux 2.6.29 the default was 16384 events.
3548 Beyond this limit, the kernel throws away events, but records
3549 the fact that it threw them away by setting a flag
3550 C<IN_Q_OVERFLOW> in the returned structure list (see
3551 C<guestfs_inotify_read>).
3552
3553 Before any events are generated, you have to add some
3554 watches to the internal watch list.  See:
3555 C<guestfs_inotify_add_watch>,
3556 C<guestfs_inotify_rm_watch> and
3557 C<guestfs_inotify_watch_all>.
3558
3559 Queued up events should be read periodically by calling
3560 C<guestfs_inotify_read>
3561 (or C<guestfs_inotify_files> which is just a helpful
3562 wrapper around C<guestfs_inotify_read>).  If you don't
3563 read the events out often enough then you risk the internal
3564 queue overflowing.
3565
3566 The handle should be closed after use by calling
3567 C<guestfs_inotify_close>.  This also removes any
3568 watches automatically.
3569
3570 See also L<inotify(7)> for an overview of the inotify interface
3571 as exposed by the Linux kernel, which is roughly what we expose
3572 via libguestfs.  Note that there is one global inotify handle
3573 per libguestfs instance.");
3574
3575   ("inotify_add_watch", (RInt64 "wd", [Pathname "path"; Int "mask"]), 180, [Optional "inotify"],
3576    [InitBasicFS, Always, TestOutputList (
3577       [["inotify_init"; "0"];
3578        ["inotify_add_watch"; "/"; "1073741823"];
3579        ["touch"; "/a"];
3580        ["touch"; "/b"];
3581        ["inotify_files"]], ["a"; "b"])],
3582    "add an inotify watch",
3583    "\
3584 Watch C<path> for the events listed in C<mask>.
3585
3586 Note that if C<path> is a directory then events within that
3587 directory are watched, but this does I<not> happen recursively
3588 (in subdirectories).
3589
3590 Note for non-C or non-Linux callers: the inotify events are
3591 defined by the Linux kernel ABI and are listed in
3592 C</usr/include/sys/inotify.h>.");
3593
3594   ("inotify_rm_watch", (RErr, [Int(*XXX64*) "wd"]), 181, [Optional "inotify"],
3595    [],
3596    "remove an inotify watch",
3597    "\
3598 Remove a previously defined inotify watch.
3599 See C<guestfs_inotify_add_watch>.");
3600
3601   ("inotify_read", (RStructList ("events", "inotify_event"), []), 182, [Optional "inotify"],
3602    [],
3603    "return list of inotify events",
3604    "\
3605 Return the complete queue of events that have happened
3606 since the previous read call.
3607
3608 If no events have happened, this returns an empty list.
3609
3610 I<Note>: In order to make sure that all events have been
3611 read, you must call this function repeatedly until it
3612 returns an empty list.  The reason is that the call will
3613 read events up to the maximum appliance-to-host message
3614 size and leave remaining events in the queue.");
3615
3616   ("inotify_files", (RStringList "paths", []), 183, [Optional "inotify"],
3617    [],
3618    "return list of watched files that had events",
3619    "\
3620 This function is a helpful wrapper around C<guestfs_inotify_read>
3621 which just returns a list of pathnames of objects that were
3622 touched.  The returned pathnames are sorted and deduplicated.");
3623
3624   ("inotify_close", (RErr, []), 184, [Optional "inotify"],
3625    [],
3626    "close the inotify handle",
3627    "\
3628 This closes the inotify handle which was previously
3629 opened by inotify_init.  It removes all watches, throws
3630 away any pending events, and deallocates all resources.");
3631
3632   ("setcon", (RErr, [String "context"]), 185, [Optional "selinux"],
3633    [],
3634    "set SELinux security context",
3635    "\
3636 This sets the SELinux security context of the daemon
3637 to the string C<context>.
3638
3639 See the documentation about SELINUX in L<guestfs(3)>.");
3640
3641   ("getcon", (RString "context", []), 186, [Optional "selinux"],
3642    [],
3643    "get SELinux security context",
3644    "\
3645 This gets the SELinux security context of the daemon.
3646
3647 See the documentation about SELINUX in L<guestfs(3)>,
3648 and C<guestfs_setcon>");
3649
3650   ("mkfs_b", (RErr, [String "fstype"; Int "blocksize"; Device "device"]), 187, [],
3651    [InitEmpty, Always, TestOutput (
3652       [["part_disk"; "/dev/sda"; "mbr"];
3653        ["mkfs_b"; "ext2"; "4096"; "/dev/sda1"];
3654        ["mount_options"; ""; "/dev/sda1"; "/"];
3655        ["write_file"; "/new"; "new file contents"; "0"];
3656        ["cat"; "/new"]], "new file contents")],
3657    "make a filesystem with block size",
3658    "\
3659 This call is similar to C<guestfs_mkfs>, but it allows you to
3660 control the block size of the resulting filesystem.  Supported
3661 block sizes depend on the filesystem type, but typically they
3662 are C<1024>, C<2048> or C<4096> only.");
3663
3664   ("mke2journal", (RErr, [Int "blocksize"; Device "device"]), 188, [],
3665    [InitEmpty, Always, TestOutput (
3666       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3667        ["mke2journal"; "4096"; "/dev/sda1"];
3668        ["mke2fs_J"; "ext2"; "4096"; "/dev/sda2"; "/dev/sda1"];
3669        ["mount_options"; ""; "/dev/sda2"; "/"];
3670        ["write_file"; "/new"; "new file contents"; "0"];
3671        ["cat"; "/new"]], "new file contents")],
3672    "make ext2/3/4 external journal",
3673    "\
3674 This creates an ext2 external journal on C<device>.  It is equivalent
3675 to the command:
3676
3677  mke2fs -O journal_dev -b blocksize device");
3678
3679   ("mke2journal_L", (RErr, [Int "blocksize"; String "label"; Device "device"]), 189, [],
3680    [InitEmpty, Always, TestOutput (
3681       [["sfdiskM"; "/dev/sda"; ",100 ,"];
3682        ["mke2journal_L"; "4096"; "JOURNAL"; "/dev/sda1"];
3683        ["mke2fs_JL"; "ext2"; "4096"; "/dev/sda2"; "JOURNAL"];
3684        ["mount_options"; ""; "/dev/sda2"; "/"];
3685        ["write_file"; "/new"; "new file contents"; "0"];
3686        ["cat"; "/new"]], "new file contents")],
3687    "make ext2/3/4 external journal with label",
3688    "\
3689 This creates an ext2 external journal on C<device> with label C<label>.");
3690
3691   ("mke2journal_U", (RErr, [Int "blocksize"; String "uuid"; Device "device"]), 190, [Optional "linuxfsuuid"],
3692    (let uuid = uuidgen () in
3693     [InitEmpty, Always, TestOutput (
3694        [["sfdiskM"; "/dev/sda"; ",100 ,"];
3695         ["mke2journal_U"; "4096"; uuid; "/dev/sda1"];
3696         ["mke2fs_JU"; "ext2"; "4096"; "/dev/sda2"; uuid];
3697         ["mount_options"; ""; "/dev/sda2"; "/"];
3698         ["write_file"; "/new"; "new file contents"; "0"];
3699         ["cat"; "/new"]], "new file contents")]),
3700    "make ext2/3/4 external journal with UUID",
3701    "\
3702 This creates an ext2 external journal on C<device> with UUID C<uuid>.");
3703
3704   ("mke2fs_J", (RErr, [String "fstype"; Int "blocksize"; Device "device"; Device "journal"]), 191, [],
3705    [],
3706    "make ext2/3/4 filesystem with external journal",
3707    "\
3708 This creates an ext2/3/4 filesystem on C<device> with
3709 an external journal on C<journal>.  It is equivalent
3710 to the command:
3711
3712  mke2fs -t fstype -b blocksize -J device=<journal> <device>
3713
3714 See also C<guestfs_mke2journal>.");
3715
3716   ("mke2fs_JL", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "label"]), 192, [],
3717    [],
3718    "make ext2/3/4 filesystem with external journal",
3719    "\
3720 This creates an ext2/3/4 filesystem on C<device> with
3721 an external journal on the journal labeled C<label>.
3722
3723 See also C<guestfs_mke2journal_L>.");
3724
3725   ("mke2fs_JU", (RErr, [String "fstype"; Int "blocksize"; Device "device"; String "uuid"]), 193, [Optional "linuxfsuuid"],
3726    [],
3727    "make ext2/3/4 filesystem with external journal",
3728    "\
3729 This creates an ext2/3/4 filesystem on C<device> with
3730 an external journal on the journal with UUID C<uuid>.
3731
3732 See also C<guestfs_mke2journal_U>.");
3733
3734   ("modprobe", (RErr, [String "modulename"]), 194, [Optional "linuxmodules"],
3735    [InitNone, Always, TestRun [["modprobe"; "fat"]]],
3736    "load a kernel module",
3737    "\
3738 This loads a kernel module in the appliance.
3739
3740 The kernel module must have been whitelisted when libguestfs
3741 was built (see C<appliance/kmod.whitelist.in> in the source).");
3742
3743   ("echo_daemon", (RString "output", [StringList "words"]), 195, [],
3744    [InitNone, Always, TestOutput (
3745       [["echo_daemon"; "This is a test"]], "This is a test"
3746     )],
3747    "echo arguments back to the client",
3748    "\
3749 This command concatenate the list of C<words> passed with single spaces between
3750 them and returns the resulting string.
3751
3752 You can use this command to test the connection through to the daemon.
3753
3754 See also C<guestfs_ping_daemon>.");
3755
3756   ("find0", (RErr, [Pathname "directory"; FileOut "files"]), 196, [],
3757    [], (* There is a regression test for this. *)
3758    "find all files and directories, returning NUL-separated list",
3759    "\
3760 This command lists out all files and directories, recursively,
3761 starting at C<directory>, placing the resulting list in the
3762 external file called C<files>.
3763
3764 This command works the same way as C<guestfs_find> with the
3765 following exceptions:
3766
3767 =over 4
3768
3769 =item *
3770
3771 The resulting list is written to an external file.
3772
3773 =item *
3774
3775 Items (filenames) in the result are separated
3776 by C<\\0> characters.  See L<find(1)> option I<-print0>.
3777
3778 =item *
3779
3780 This command is not limited in the number of names that it
3781 can return.
3782
3783 =item *
3784
3785 The result list is not sorted.
3786
3787 =back");
3788
3789   ("case_sensitive_path", (RString "rpath", [Pathname "path"]), 197, [],
3790    [InitISOFS, Always, TestOutput (
3791       [["case_sensitive_path"; "/DIRECTORY"]], "/directory");
3792     InitISOFS, Always, TestOutput (
3793       [["case_sensitive_path"; "/DIRECTORY/"]], "/directory");
3794     InitISOFS, Always, TestOutput (
3795       [["case_sensitive_path"; "/Known-1"]], "/known-1");
3796     InitISOFS, Always, TestLastFail (
3797       [["case_sensitive_path"; "/Known-1/"]]);
3798     InitBasicFS, Always, TestOutput (
3799       [["mkdir"; "/a"];
3800        ["mkdir"; "/a/bbb"];
3801        ["touch"; "/a/bbb/c"];
3802        ["case_sensitive_path"; "/A/bbB/C"]], "/a/bbb/c");
3803     InitBasicFS, Always, TestOutput (
3804       [["mkdir"; "/a"];
3805        ["mkdir"; "/a/bbb"];
3806        ["touch"; "/a/bbb/c"];
3807        ["case_sensitive_path"; "/A////bbB/C"]], "/a/bbb/c");
3808     InitBasicFS, Always, TestLastFail (
3809       [["mkdir"; "/a"];
3810        ["mkdir"; "/a/bbb"];
3811        ["touch"; "/a/bbb/c"];
3812        ["case_sensitive_path"; "/A/bbb/../bbb/C"]])],
3813    "return true path on case-insensitive filesystem",
3814    "\
3815 This can be used to resolve case insensitive paths on
3816 a filesystem which is case sensitive.  The use case is
3817 to resolve paths which you have read from Windows configuration
3818 files or the Windows Registry, to the true path.
3819
3820 The command handles a peculiarity of the Linux ntfs-3g
3821 filesystem driver (and probably others), which is that although
3822 the underlying filesystem is case-insensitive, the driver
3823 exports the filesystem to Linux as case-sensitive.
3824
3825 One consequence of this is that special directories such
3826 as C<c:\\windows> may appear as C</WINDOWS> or C</windows>
3827 (or other things) depending on the precise details of how
3828 they were created.  In Windows itself this would not be
3829 a problem.
3830
3831 Bug or feature?  You decide:
3832 L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>
3833
3834 This function resolves the true case of each element in the
3835 path and returns the case-sensitive path.
3836
3837 Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")
3838 might return C<\"/WINDOWS/system32\"> (the exact return value
3839 would depend on details of how the directories were originally
3840 created under Windows).
3841
3842 I<Note>:
3843 This function does not handle drive names, backslashes etc.
3844
3845 See also C<guestfs_realpath>.");
3846
3847   ("vfs_type", (RString "fstype", [Device "device"]), 198, [],
3848    [InitBasicFS, Always, TestOutput (
3849       [["vfs_type"; "/dev/sda1"]], "ext2")],
3850    "get the Linux VFS type corresponding to a mounted device",
3851    "\
3852 This command gets the block device type corresponding to
3853 a mounted device called C<device>.
3854
3855 Usually the result is the name of the Linux VFS module that
3856 is used to mount this device (probably determined automatically
3857 if you used the C<guestfs_mount> call).");
3858
3859   ("truncate", (RErr, [Pathname "path"]), 199, [],
3860    [InitBasicFS, Always, TestOutputStruct (
3861       [["write_file"; "/test"; "some stuff so size is not zero"; "0"];
3862        ["truncate"; "/test"];
3863        ["stat"; "/test"]], [CompareWithInt ("size", 0)])],
3864    "truncate a file to zero size",
3865    "\
3866 This command truncates C<path> to a zero-length file.  The
3867 file must exist already.");
3868
3869   ("truncate_size", (RErr, [Pathname "path"; Int64 "size"]), 200, [],
3870    [InitBasicFS, Always, TestOutputStruct (
3871       [["touch"; "/test"];
3872        ["truncate_size"; "/test"; "1000"];
3873        ["stat"; "/test"]], [CompareWithInt ("size", 1000)])],
3874    "truncate a file to a particular size",
3875    "\
3876 This command truncates C<path> to size C<size> bytes.  The file
3877 must exist already.  If the file is smaller than C<size> then
3878 the file is extended to the required size with null bytes.");
3879
3880   ("utimens", (RErr, [Pathname "path"; Int64 "atsecs"; Int64 "atnsecs"; Int64 "mtsecs"; Int64 "mtnsecs"]), 201, [],
3881    [InitBasicFS, Always, TestOutputStruct (
3882       [["touch"; "/test"];
3883        ["utimens"; "/test"; "12345"; "67890"; "9876"; "5432"];
3884        ["stat"; "/test"]], [CompareWithInt ("mtime", 9876)])],
3885    "set timestamp of a file with nanosecond precision",
3886    "\
3887 This command sets the timestamps of a file with nanosecond
3888 precision.
3889
3890 C<atsecs, atnsecs> are the last access time (atime) in secs and
3891 nanoseconds from the epoch.
3892
3893 C<mtsecs, mtnsecs> are the last modification time (mtime) in
3894 secs and nanoseconds from the epoch.
3895
3896 If the C<*nsecs> field contains the special value C<-1> then
3897 the corresponding timestamp is set to the current time.  (The
3898 C<*secs> field is ignored in this case).
3899
3900 If the C<*nsecs> field contains the special value C<-2> then
3901 the corresponding timestamp is left unchanged.  (The
3902 C<*secs> field is ignored in this case).");
3903
3904   ("mkdir_mode", (RErr, [Pathname "path"; Int "mode"]), 202, [],
3905    [InitBasicFS, Always, TestOutputStruct (
3906       [["mkdir_mode"; "/test"; "0o111"];
3907        ["stat"; "/test"]], [CompareWithInt ("mode", 0o40111)])],
3908    "create a directory with a particular mode",
3909    "\
3910 This command creates a directory, setting the initial permissions
3911 of the directory to C<mode>.
3912
3913 For common Linux filesystems, the actual mode which is set will
3914 be C<mode & ~umask & 01777>.  Non-native-Linux filesystems may
3915 interpret the mode in other ways.
3916
3917 See also C<guestfs_mkdir>, C<guestfs_umask>");
3918
3919   ("lchown", (RErr, [Int "owner"; Int "group"; Pathname "path"]), 203, [],
3920    [], (* XXX *)
3921    "change file owner and group",
3922    "\
3923 Change the file owner to C<owner> and group to C<group>.
3924 This is like C<guestfs_chown> but if C<path> is a symlink then
3925 the link itself is changed, not the target.
3926
3927 Only numeric uid and gid are supported.  If you want to use
3928 names, you will need to locate and parse the password file
3929 yourself (Augeas support makes this relatively easy).");
3930
3931   ("lstatlist", (RStructList ("statbufs", "stat"), [Pathname "path"; StringList "names"]), 204, [],
3932    [], (* XXX *)
3933    "lstat on multiple files",
3934    "\
3935 This call allows you to perform the C<guestfs_lstat> operation
3936 on multiple files, where all files are in the directory C<path>.
3937 C<names> is the list of files from this directory.
3938
3939 On return you get a list of stat structs, with a one-to-one
3940 correspondence to the C<names> list.  If any name did not exist
3941 or could not be lstat'd, then the C<ino> field of that structure
3942 is set to C<-1>.
3943
3944 This call is intended for programs that want to efficiently
3945 list a directory contents without making many round-trips.
3946 See also C<guestfs_lxattrlist> for a similarly efficient call
3947 for getting extended attributes.  Very long directory listings
3948 might cause the protocol message size to be exceeded, causing
3949 this call to fail.  The caller must split up such requests
3950 into smaller groups of names.");
3951
3952   ("lxattrlist", (RStructList ("xattrs", "xattr"), [Pathname "path"; StringList "names"]), 205, [Optional "linuxxattrs"],
3953    [], (* XXX *)
3954    "lgetxattr on multiple files",
3955    "\
3956 This call allows you to get the extended attributes
3957 of multiple files, where all files are in the directory C<path>.
3958 C<names> is the list of files from this directory.
3959
3960 On return you get a flat list of xattr structs which must be
3961 interpreted sequentially.  The first xattr struct always has a zero-length
3962 C<attrname>.  C<attrval> in this struct is zero-length
3963 to indicate there was an error doing C<lgetxattr> for this
3964 file, I<or> is a C string which is a decimal number
3965 (the number of following attributes for this file, which could
3966 be C<\"0\">).  Then after the first xattr struct are the
3967 zero or more attributes for the first named file.
3968 This repeats for the second and subsequent files.
3969
3970 This call is intended for programs that want to efficiently
3971 list a directory contents without making many round-trips.
3972 See also C<guestfs_lstatlist> for a similarly efficient call
3973 for getting standard stats.  Very long directory listings
3974 might cause the protocol message size to be exceeded, causing
3975 this call to fail.  The caller must split up such requests
3976 into smaller groups of names.");
3977
3978   ("readlinklist", (RStringList "links", [Pathname "path"; StringList "names"]), 206, [],
3979    [], (* XXX *)
3980    "readlink on multiple files",
3981    "\
3982 This call allows you to do a C<readlink> operation
3983 on multiple files, where all files are in the directory C<path>.
3984 C<names> is the list of files from this directory.
3985
3986 On return you get a list of strings, with a one-to-one
3987 correspondence to the C<names> list.  Each string is the
3988 value of the symbol link.
3989
3990 If the C<readlink(2)> operation fails on any name, then
3991 the corresponding result string is the empty string C<\"\">.
3992 However the whole operation is completed even if there
3993 were C<readlink(2)> errors, and so you can call this
3994 function with names where you don't know if they are
3995 symbolic links already (albeit slightly less efficient).
3996
3997 This call is intended for programs that want to efficiently
3998 list a directory contents without making many round-trips.
3999 Very long directory listings might cause the protocol
4000 message size to be exceeded, causing
4001 this call to fail.  The caller must split up such requests
4002 into smaller groups of names.");
4003
4004   ("pread", (RBufferOut "content", [Pathname "path"; Int "count"; Int64 "offset"]), 207, [ProtocolLimitWarning],
4005    [InitISOFS, Always, TestOutputBuffer (
4006       [["pread"; "/known-4"; "1"; "3"]], "\n");
4007     InitISOFS, Always, TestOutputBuffer (
4008       [["pread"; "/empty"; "0"; "100"]], "")],
4009    "read part of a file",
4010    "\
4011 This command lets you read part of a file.  It reads C<count>
4012 bytes of the file, starting at C<offset>, from file C<path>.
4013
4014 This may read fewer bytes than requested.  For further details
4015 see the L<pread(2)> system call.");
4016
4017   ("part_init", (RErr, [Device "device"; String "parttype"]), 208, [],
4018    [InitEmpty, Always, TestRun (
4019       [["part_init"; "/dev/sda"; "gpt"]])],
4020    "create an empty partition table",
4021    "\
4022 This creates an empty partition table on C<device> of one of the
4023 partition types listed below.  Usually C<parttype> should be
4024 either C<msdos> or C<gpt> (for large disks).
4025
4026 Initially there are no partitions.  Following this, you should
4027 call C<guestfs_part_add> for each partition required.
4028
4029 Possible values for C<parttype> are:
4030
4031 =over 4
4032
4033 =item B<efi> | B<gpt>
4034
4035 Intel EFI / GPT partition table.
4036
4037 This is recommended for >= 2 TB partitions that will be accessed
4038 from Linux and Intel-based Mac OS X.  It also has limited backwards
4039 compatibility with the C<mbr> format.
4040
4041 =item B<mbr> | B<msdos>
4042
4043 The standard PC \"Master Boot Record\" (MBR) format used
4044 by MS-DOS and Windows.  This partition type will B<only> work
4045 for device sizes up to 2 TB.  For large disks we recommend
4046 using C<gpt>.
4047
4048 =back
4049
4050 Other partition table types that may work but are not
4051 supported include:
4052
4053 =over 4
4054
4055 =item B<aix>
4056
4057 AIX disk labels.
4058
4059 =item B<amiga> | B<rdb>
4060
4061 Amiga \"Rigid Disk Block\" format.
4062
4063 =item B<bsd>
4064
4065 BSD disk labels.
4066
4067 =item B<dasd>
4068
4069 DASD, used on IBM mainframes.
4070
4071 =item B<dvh>
4072
4073 MIPS/SGI volumes.
4074
4075 =item B<mac>
4076
4077 Old Mac partition format.  Modern Macs use C<gpt>.
4078
4079 =item B<pc98>
4080
4081 NEC PC-98 format, common in Japan apparently.
4082
4083 =item B<sun>
4084
4085 Sun disk labels.
4086
4087 =back");
4088
4089   ("part_add", (RErr, [Device "device"; String "prlogex"; Int64 "startsect"; Int64 "endsect"]), 209, [],
4090    [InitEmpty, Always, TestRun (
4091       [["part_init"; "/dev/sda"; "mbr"];
4092        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"]]);
4093     InitEmpty, Always, TestRun (
4094       [["part_init"; "/dev/sda"; "gpt"];
4095        ["part_add"; "/dev/sda"; "primary"; "34"; "127"];
4096        ["part_add"; "/dev/sda"; "primary"; "128"; "-34"]]);
4097     InitEmpty, Always, TestRun (
4098       [["part_init"; "/dev/sda"; "mbr"];
4099        ["part_add"; "/dev/sda"; "primary"; "32"; "127"];
4100        ["part_add"; "/dev/sda"; "primary"; "128"; "255"];
4101        ["part_add"; "/dev/sda"; "primary"; "256"; "511"];
4102        ["part_add"; "/dev/sda"; "primary"; "512"; "-1"]])],
4103    "add a partition to the device",
4104    "\
4105 This command adds a partition to C<device>.  If there is no partition
4106 table on the device, call C<guestfs_part_init> first.
4107
4108 The C<prlogex> parameter is the type of partition.  Normally you
4109 should pass C<p> or C<primary> here, but MBR partition tables also
4110 support C<l> (or C<logical>) and C<e> (or C<extended>) partition
4111 types.
4112
4113 C<startsect> and C<endsect> are the start and end of the partition
4114 in I<sectors>.  C<endsect> may be negative, which means it counts
4115 backwards from the end of the disk (C<-1> is the last sector).
4116
4117 Creating a partition which covers the whole disk is not so easy.
4118 Use C<guestfs_part_disk> to do that.");
4119
4120   ("part_disk", (RErr, [Device "device"; String "parttype"]), 210, [DangerWillRobinson],
4121    [InitEmpty, Always, TestRun (
4122       [["part_disk"; "/dev/sda"; "mbr"]]);
4123     InitEmpty, Always, TestRun (
4124       [["part_disk"; "/dev/sda"; "gpt"]])],
4125    "partition whole disk with a single primary partition",
4126    "\
4127 This command is simply a combination of C<guestfs_part_init>
4128 followed by C<guestfs_part_add> to create a single primary partition
4129 covering the whole disk.
4130
4131 C<parttype> is the partition table type, usually C<mbr> or C<gpt>,
4132 but other possible values are described in C<guestfs_part_init>.");
4133
4134   ("part_set_bootable", (RErr, [Device "device"; Int "partnum"; Bool "bootable"]), 211, [],
4135    [InitEmpty, Always, TestRun (
4136       [["part_disk"; "/dev/sda"; "mbr"];
4137        ["part_set_bootable"; "/dev/sda"; "1"; "true"]])],
4138    "make a partition bootable",
4139    "\
4140 This sets the bootable flag on partition numbered C<partnum> on
4141 device C<device>.  Note that partitions are numbered from 1.
4142
4143 The bootable flag is used by some operating systems (notably
4144 Windows) to determine which partition to boot from.  It is by
4145 no means universally recognized.");
4146
4147   ("part_set_name", (RErr, [Device "device"; Int "partnum"; String "name"]), 212, [],
4148    [InitEmpty, Always, TestRun (
4149       [["part_disk"; "/dev/sda"; "gpt"];
4150        ["part_set_name"; "/dev/sda"; "1"; "thepartname"]])],
4151    "set partition name",
4152    "\
4153 This sets the partition name on partition numbered C<partnum> on
4154 device C<device>.  Note that partitions are numbered from 1.
4155
4156 The partition name can only be set on certain types of partition
4157 table.  This works on C<gpt> but not on C<mbr> partitions.");
4158
4159   ("part_list", (RStructList ("partitions", "partition"), [Device "device"]), 213, [],
4160    [], (* XXX Add a regression test for this. *)
4161    "list partitions on a device",
4162    "\
4163 This command parses the partition table on C<device> and
4164 returns the list of partitions found.
4165
4166 The fields in the returned structure are:
4167
4168 =over 4
4169
4170 =item B<part_num>
4171
4172 Partition number, counting from 1.
4173
4174 =item B<part_start>
4175
4176 Start of the partition I<in bytes>.  To get sectors you have to
4177 divide by the device's sector size, see C<guestfs_blockdev_getss>.
4178
4179 =item B<part_end>
4180
4181 End of the partition in bytes.
4182
4183 =item B<part_size>
4184
4185 Size of the partition in bytes.
4186
4187 =back");
4188
4189   ("part_get_parttype", (RString "parttype", [Device "device"]), 214, [],
4190    [InitEmpty, Always, TestOutput (
4191       [["part_disk"; "/dev/sda"; "gpt"];
4192        ["part_get_parttype"; "/dev/sda"]], "gpt")],
4193    "get the partition table type",
4194    "\
4195 This command examines the partition table on C<device> and
4196 returns the partition table type (format) being used.
4197
4198 Common return values include: C<msdos> (a DOS/Windows style MBR
4199 partition table), C<gpt> (a GPT/EFI-style partition table).  Other
4200 values are possible, although unusual.  See C<guestfs_part_init>
4201 for a full list.");
4202
4203   ("fill", (RErr, [Int "c"; Int "len"; Pathname "path"]), 215, [],
4204    [InitBasicFS, Always, TestOutputBuffer (
4205       [["fill"; "0x63"; "10"; "/test"];
4206        ["read_file"; "/test"]], "cccccccccc")],
4207    "fill a file with octets",
4208    "\
4209 This command creates a new file called C<path>.  The initial
4210 content of the file is C<len> octets of C<c>, where C<c>
4211 must be a number in the range C<[0..255]>.
4212
4213 To fill a file with zero bytes (sparsely), it is
4214 much more efficient to use C<guestfs_truncate_size>.");
4215
4216   ("available", (RErr, [StringList "groups"]), 216, [],
4217    [InitNone, Always, TestRun [["available"; ""]]],
4218    "test availability of some parts of the API",
4219    "\
4220 This command is used to check the availability of some
4221 groups of functionality in the appliance, which not all builds of
4222 the libguestfs appliance will be able to provide.
4223
4224 The libguestfs groups, and the functions that those
4225 groups correspond to, are listed in L<guestfs(3)/AVAILABILITY>.
4226
4227 The argument C<groups> is a list of group names, eg:
4228 C<[\"inotify\", \"augeas\"]> would check for the availability of
4229 the Linux inotify functions and Augeas (configuration file
4230 editing) functions.
4231
4232 The command returns no error if I<all> requested groups are available.
4233
4234 It fails with an error if one or more of the requested
4235 groups is unavailable in the appliance.
4236
4237 If an unknown group name is included in the
4238 list of groups then an error is always returned.
4239
4240 I<Notes:>
4241
4242 =over 4
4243
4244 =item *
4245
4246 You must call C<guestfs_launch> before calling this function.
4247
4248 The reason is because we don't know what groups are
4249 supported by the appliance/daemon until it is running and can
4250 be queried.
4251
4252 =item *
4253
4254 If a group of functions is available, this does not necessarily
4255 mean that they will work.  You still have to check for errors
4256 when calling individual API functions even if they are
4257 available.
4258
4259 =item *
4260
4261 It is usually the job of distro packagers to build
4262 complete functionality into the libguestfs appliance.
4263 Upstream libguestfs, if built from source with all
4264 requirements satisfied, will support everything.
4265
4266 =item *
4267
4268 This call was added in version C<1.0.80>.  In previous
4269 versions of libguestfs all you could do would be to speculatively
4270 execute a command to find out if the daemon implemented it.
4271 See also C<guestfs_version>.
4272
4273 =back");
4274
4275   ("dd", (RErr, [Dev_or_Path "src"; Dev_or_Path "dest"]), 217, [],
4276    [InitBasicFS, Always, TestOutputBuffer (
4277       [["write_file"; "/src"; "hello, world"; "0"];
4278        ["dd"; "/src"; "/dest"];
4279        ["read_file"; "/dest"]], "hello, world")],
4280    "copy from source to destination using dd",
4281    "\
4282 This command copies from one source device or file C<src>
4283 to another destination device or file C<dest>.  Normally you
4284 would use this to copy to or from a device or partition, for
4285 example to duplicate a filesystem.
4286
4287 If the destination is a device, it must be as large or larger
4288 than the source file or device, otherwise the copy will fail.
4289 This command cannot do partial copies (see C<guestfs_copy_size>).");
4290
4291   ("filesize", (RInt64 "size", [Pathname "file"]), 218, [],
4292    [InitBasicFS, Always, TestOutputInt (
4293       [["write_file"; "/file"; "hello, world"; "0"];
4294        ["filesize"; "/file"]], 12)],
4295    "return the size of the file in bytes",
4296    "\
4297 This command returns the size of C<file> in bytes.
4298
4299 To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>,
4300 C<guestfs_is_dir>, C<guestfs_is_file> etc.
4301 To get the size of block devices, use C<guestfs_blockdev_getsize64>.");
4302
4303   ("lvrename", (RErr, [String "logvol"; String "newlogvol"]), 219, [],
4304    [InitBasicFSonLVM, Always, TestOutputList (
4305       [["lvrename"; "/dev/VG/LV"; "/dev/VG/LV2"];
4306        ["lvs"]], ["/dev/VG/LV2"])],
4307    "rename an LVM logical volume",
4308    "\
4309 Rename a logical volume C<logvol> with the new name C<newlogvol>.");
4310
4311   ("vgrename", (RErr, [String "volgroup"; String "newvolgroup"]), 220, [],
4312    [InitBasicFSonLVM, Always, TestOutputList (
4313       [["umount"; "/"];
4314        ["vg_activate"; "false"; "VG"];
4315        ["vgrename"; "VG"; "VG2"];
4316        ["vg_activate"; "true"; "VG2"];
4317        ["mount_options"; ""; "/dev/VG2/LV"; "/"];
4318        ["vgs"]], ["VG2"])],
4319    "rename an LVM volume group",
4320    "\
4321 Rename a volume group C<volgroup> with the new name C<newvolgroup>.");
4322
4323   ("initrd_cat", (RBufferOut "content", [Pathname "initrdpath"; String "filename"]), 221, [ProtocolLimitWarning],
4324    [InitISOFS, Always, TestOutputBuffer (
4325       [["initrd_cat"; "/initrd"; "known-4"]], "abc\ndef\nghi")],
4326    "list the contents of a single file in an initrd",
4327    "\
4328 This command unpacks the file C<filename> from the initrd file
4329 called C<initrdpath>.  The filename must be given I<without> the
4330 initial C</> character.
4331
4332 For example, in guestfish you could use the following command
4333 to examine the boot script (usually called C</init>)
4334 contained in a Linux initrd or initramfs image:
4335
4336  initrd-cat /boot/initrd-<version>.img init
4337
4338 See also C<guestfs_initrd_list>.");
4339
4340   ("pvuuid", (RString "uuid", [Device "device"]), 222, [],
4341    [],
4342    "get the UUID of a physical volume",
4343    "\
4344 This command returns the UUID of the LVM PV C<device>.");
4345
4346   ("vguuid", (RString "uuid", [String "vgname"]), 223, [],
4347    [],
4348    "get the UUID of a volume group",
4349    "\
4350 This command returns the UUID of the LVM VG named C<vgname>.");
4351
4352   ("lvuuid", (RString "uuid", [Device "device"]), 224, [],
4353    [],
4354    "get the UUID of a logical volume",
4355    "\
4356 This command returns the UUID of the LVM LV C<device>.");
4357
4358   ("vgpvuuids", (RStringList "uuids", [String "vgname"]), 225, [],
4359    [],
4360    "get the PV UUIDs containing the volume group",
4361    "\
4362 Given a VG called C<vgname>, this returns the UUIDs of all
4363 the physical volumes that this volume group resides on.
4364
4365 You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid>
4366 calls to associate physical volumes and volume groups.
4367
4368 See also C<guestfs_vglvuuids>.");
4369
4370   ("vglvuuids", (RStringList "uuids", [String "vgname"]), 226, [],
4371    [],
4372    "get the LV UUIDs of all LVs in the volume group",
4373    "\
4374 Given a VG called C<vgname>, this returns the UUIDs of all
4375 the logical volumes created in this volume group.
4376
4377 You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid>
4378 calls to associate logical volumes and volume groups.
4379
4380 See also C<guestfs_vgpvuuids>.");
4381
4382   ("copy_size", (RErr, [Dev_or_Path "src"; Dev_or_Path "dest"; Int64 "size"]), 227, [],
4383    [InitBasicFS, Always, TestOutputBuffer (
4384       [["write_file"; "/src"; "hello, world"; "0"];
4385        ["copy_size"; "/src"; "/dest"; "5"];
4386        ["read_file"; "/dest"]], "hello")],
4387    "copy size bytes from source to destination using dd",
4388    "\
4389 This command copies exactly C<size> bytes from one source device
4390 or file C<src> to another destination device or file C<dest>.
4391
4392 Note this will fail if the source is too short or if the destination
4393 is not large enough.");
4394
4395   ("zero_device", (RErr, [Device "device"]), 228, [DangerWillRobinson],
4396    [InitBasicFSonLVM, Always, TestRun (
4397       [["zero_device"; "/dev/VG/LV"]])],
4398    "write zeroes to an entire device",
4399    "\
4400 This command writes zeroes over the entire C<device>.  Compare
4401 with C<guestfs_zero> which just zeroes the first few blocks of
4402 a device.");
4403
4404   ("txz_in", (RErr, [FileIn "tarball"; Pathname "directory"]), 229, [],
4405    [InitBasicFS, Always, TestOutput (
4406       [["txz_in"; "../images/helloworld.tar.xz"; "/"];
4407        ["cat"; "/hello"]], "hello\n")],
4408    "unpack compressed tarball to directory",
4409    "\
4410 This command uploads and unpacks local file C<tarball> (an
4411 I<xz compressed> tar file) into C<directory>.");
4412
4413   ("txz_out", (RErr, [Pathname "directory"; FileOut "tarball"]), 230, [],
4414    [],
4415    "pack directory into compressed tarball",
4416    "\
4417 This command packs the contents of C<directory> and downloads
4418 it to local file C<tarball> (as an xz compressed tar archive).");
4419
4420   ("ntfsresize", (RErr, [Device "device"]), 231, [Optional "ntfsprogs"],
4421    [],
4422    "resize an NTFS filesystem",
4423    "\
4424 This command resizes an NTFS filesystem, expanding or
4425 shrinking it to the size of the underlying device.
4426 See also L<ntfsresize(8)>.");
4427
4428   ("vgscan", (RErr, []), 232, [],
4429    [InitEmpty, Always, TestRun (
4430       [["vgscan"]])],
4431    "rescan for LVM physical volumes, volume groups and logical volumes",
4432    "\
4433 This rescans all block devices and rebuilds the list of LVM
4434 physical volumes, volume groups and logical volumes.");
4435
4436   ("part_del", (RErr, [Device "device"; Int "partnum"]), 233, [],
4437    [InitEmpty, Always, TestRun (
4438       [["part_init"; "/dev/sda"; "mbr"];
4439        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4440        ["part_del"; "/dev/sda"; "1"]])],
4441    "delete a partition",
4442    "\
4443 This command deletes the partition numbered C<partnum> on C<device>.
4444
4445 Note that in the case of MBR partitioning, deleting an
4446 extended partition also deletes any logical partitions
4447 it contains.");
4448
4449   ("part_get_bootable", (RBool "bootable", [Device "device"; Int "partnum"]), 234, [],
4450    [InitEmpty, Always, TestOutputTrue (
4451       [["part_init"; "/dev/sda"; "mbr"];
4452        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4453        ["part_set_bootable"; "/dev/sda"; "1"; "true"];
4454        ["part_get_bootable"; "/dev/sda"; "1"]])],
4455    "return true if a partition is bootable",
4456    "\
4457 This command returns true if the partition C<partnum> on
4458 C<device> has the bootable flag set.
4459
4460 See also C<guestfs_part_set_bootable>.");
4461
4462   ("part_get_mbr_id", (RInt "idbyte", [Device "device"; Int "partnum"]), 235, [FishOutput FishOutputHexadecimal],
4463    [InitEmpty, Always, TestOutputInt (
4464       [["part_init"; "/dev/sda"; "mbr"];
4465        ["part_add"; "/dev/sda"; "primary"; "1"; "-1"];
4466        ["part_set_mbr_id"; "/dev/sda"; "1"; "0x7f"];
4467        ["part_get_mbr_id"; "/dev/sda"; "1"]], 0x7f)],
4468    "get the MBR type byte (ID byte) from a partition",
4469    "\
4470 Returns the MBR type byte (also known as the ID byte) from
4471 the numbered partition C<partnum>.
4472
4473 Note that only MBR (old DOS-style) partitions have type bytes.
4474 You will get undefined results for other partition table
4475 types (see C<guestfs_part_get_parttype>).");
4476
4477   ("part_set_mbr_id", (RErr, [Device "device"; Int "partnum"; Int "idbyte"]), 236, [],
4478    [], (* tested by part_get_mbr_id *)
4479    "set the MBR type byte (ID byte) of a partition",
4480    "\
4481 Sets the MBR type byte (also known as the ID byte) of
4482 the numbered partition C<partnum> to C<idbyte>.  Note
4483 that the type bytes quoted in most documentation are
4484 in fact hexadecimal numbers, but usually documented
4485 without any leading \"0x\" which might be confusing.
4486
4487 Note that only MBR (old DOS-style) partitions have type bytes.
4488 You will get undefined results for other partition table
4489 types (see C<guestfs_part_get_parttype>).");
4490
4491   ("checksum_device", (RString "checksum", [String "csumtype"; Device "device"]), 237, [],
4492    [InitISOFS, Always, TestOutput (
4493       [["checksum_device"; "md5"; "/dev/sdd"]],
4494       (Digest.to_hex (Digest.file "images/test.iso")))],
4495    "compute MD5, SHAx or CRC checksum of the contents of a device",
4496    "\
4497 This call computes the MD5, SHAx or CRC checksum of the
4498 contents of the device named C<device>.  For the types of
4499 checksums supported see the C<guestfs_checksum> command.");
4500
4501   ("lvresize_free", (RErr, [Device "lv"; Int "percent"]), 238, [Optional "lvm2"],
4502    [InitNone, Always, TestRun (
4503       [["part_disk"; "/dev/sda"; "mbr"];
4504        ["pvcreate"; "/dev/sda1"];
4505        ["vgcreate"; "VG"; "/dev/sda1"];
4506        ["lvcreate"; "LV"; "VG"; "10"];
4507        ["lvresize_free"; "/dev/VG/LV"; "100"]])],
4508    "expand an LV to fill free space",
4509    "\
4510 This expands an existing logical volume C<lv> so that it fills
4511 C<pc>% of the remaining free space in the volume group.  Commonly
4512 you would call this with pc = 100 which expands the logical volume
4513 as much as possible, using all remaining free space in the volume
4514 group.");
4515
4516   ("aug_clear", (RErr, [String "augpath"]), 239, [Optional "augeas"],
4517    [], (* XXX Augeas code needs tests. *)
4518    "clear Augeas path",
4519    "\
4520 Set the value associated with C<path> to C<NULL>.  This
4521 is the same as the L<augtool(1)> C<clear> command.");
4522
4523   ("get_umask", (RInt "mask", []), 240, [FishOutput FishOutputOctal],
4524    [InitEmpty, Always, TestOutputInt (
4525       [["get_umask"]], 0o22)],
4526    "get the current umask",
4527    "\
4528 Return the current umask.  By default the umask is C<022>
4529 unless it has been set by calling C<guestfs_umask>.");
4530
4531   ("debug_upload", (RErr, [FileIn "filename"; String "tmpname"; Int "mode"]), 241, [],
4532    [],
4533    "upload a file to the appliance (internal use only)",
4534    "\
4535 The C<guestfs_debug_upload> command uploads a file to
4536 the libguestfs appliance.
4537
4538 There is no comprehensive help for this command.  You have
4539 to look at the file C<daemon/debug.c> in the libguestfs source
4540 to find out what it is for.");
4541
4542   ("base64_in", (RErr, [FileIn "base64file"; Pathname "filename"]), 242, [],
4543    [InitBasicFS, Always, TestOutput (
4544       [["base64_in"; "../images/hello.b64"; "/hello"];
4545        ["cat"; "/hello"]], "hello\n")],
4546    "upload base64-encoded data to file",
4547    "\
4548 This command uploads base64-encoded data from C<base64file>
4549 to C<filename>.");
4550
4551   ("base64_out", (RErr, [Pathname "filename"; FileOut "base64file"]), 243, [],
4552    [],
4553    "download file and encode as base64",
4554    "\
4555 This command downloads the contents of C<filename>, writing
4556 it out to local file C<base64file> encoded as base64.");
4557
4558   ("checksums_out", (RErr, [String "csumtype"; Pathname "directory"; FileOut "sumsfile"]), 244, [],
4559    [],
4560    "compute MD5, SHAx or CRC checksum of files in a directory",
4561    "\
4562 This command computes the checksums of all regular files in
4563 C<directory> and then emits a list of those checksums to
4564 the local output file C<sumsfile>.
4565
4566 This can be used for verifying the integrity of a virtual
4567 machine.  However to be properly secure you should pay
4568 attention to the output of the checksum command (it uses
4569 the ones from GNU coreutils).  In particular when the
4570 filename is not printable, coreutils uses a special
4571 backslash syntax.  For more information, see the GNU
4572 coreutils info file.");
4573
4574 ]
4575
4576 let all_functions = non_daemon_functions @ daemon_functions
4577
4578 (* In some places we want the functions to be displayed sorted
4579  * alphabetically, so this is useful:
4580  *)
4581 let all_functions_sorted =
4582   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
4583                compare n1 n2) all_functions
4584
4585 (* Field types for structures. *)
4586 type field =
4587   | FChar                       (* C 'char' (really, a 7 bit byte). *)
4588   | FString                     (* nul-terminated ASCII string, NOT NULL. *)
4589   | FBuffer                     (* opaque buffer of bytes, (char *, int) pair *)
4590   | FUInt32
4591   | FInt32
4592   | FUInt64
4593   | FInt64
4594   | FBytes                      (* Any int measure that counts bytes. *)
4595   | FUUID                       (* 32 bytes long, NOT nul-terminated. *)
4596   | FOptPercent                 (* [0..100], or -1 meaning "not present". *)
4597
4598 (* Because we generate extra parsing code for LVM command line tools,
4599  * we have to pull out the LVM columns separately here.
4600  *)
4601 let lvm_pv_cols = [
4602   "pv_name", FString;
4603   "pv_uuid", FUUID;
4604   "pv_fmt", FString;
4605   "pv_size", FBytes;
4606   "dev_size", FBytes;
4607   "pv_free", FBytes;
4608   "pv_used", FBytes;
4609   "pv_attr", FString (* XXX *);
4610   "pv_pe_count", FInt64;
4611   "pv_pe_alloc_count", FInt64;
4612   "pv_tags", FString;
4613   "pe_start", FBytes;
4614   "pv_mda_count", FInt64;
4615   "pv_mda_free", FBytes;
4616   (* Not in Fedora 10:
4617      "pv_mda_size", FBytes;
4618   *)
4619 ]
4620 let lvm_vg_cols = [
4621   "vg_name", FString;
4622   "vg_uuid", FUUID;
4623   "vg_fmt", FString;
4624   "vg_attr", FString (* XXX *);
4625   "vg_size", FBytes;
4626   "vg_free", FBytes;
4627   "vg_sysid", FString;
4628   "vg_extent_size", FBytes;
4629   "vg_extent_count", FInt64;
4630   "vg_free_count", FInt64;
4631   "max_lv", FInt64;
4632   "max_pv", FInt64;
4633   "pv_count", FInt64;
4634   "lv_count", FInt64;
4635   "snap_count", FInt64;
4636   "vg_seqno", FInt64;
4637   "vg_tags", FString;
4638   "vg_mda_count", FInt64;
4639   "vg_mda_free", FBytes;
4640   (* Not in Fedora 10:
4641      "vg_mda_size", FBytes;
4642   *)
4643 ]
4644 let lvm_lv_cols = [
4645   "lv_name", FString;
4646   "lv_uuid", FUUID;
4647   "lv_attr", FString (* XXX *);
4648   "lv_major", FInt64;
4649   "lv_minor", FInt64;
4650   "lv_kernel_major", FInt64;
4651   "lv_kernel_minor", FInt64;
4652   "lv_size", FBytes;
4653   "seg_count", FInt64;
4654   "origin", FString;
4655   "snap_percent", FOptPercent;
4656   "copy_percent", FOptPercent;
4657   "move_pv", FString;
4658   "lv_tags", FString;
4659   "mirror_log", FString;
4660   "modules", FString;
4661 ]
4662
4663 (* Names and fields in all structures (in RStruct and RStructList)
4664  * that we support.
4665  *)
4666 let structs = [
4667   (* The old RIntBool return type, only ever used for aug_defnode.  Do
4668    * not use this struct in any new code.
4669    *)
4670   "int_bool", [
4671     "i", FInt32;                (* for historical compatibility *)
4672     "b", FInt32;                (* for historical compatibility *)
4673   ];
4674
4675   (* LVM PVs, VGs, LVs. *)
4676   "lvm_pv", lvm_pv_cols;
4677   "lvm_vg", lvm_vg_cols;
4678   "lvm_lv", lvm_lv_cols;
4679
4680   (* Column names and types from stat structures.
4681    * NB. Can't use things like 'st_atime' because glibc header files
4682    * define some of these as macros.  Ugh.
4683    *)
4684   "stat", [
4685     "dev", FInt64;
4686     "ino", FInt64;
4687     "mode", FInt64;
4688     "nlink", FInt64;
4689     "uid", FInt64;
4690     "gid", FInt64;
4691     "rdev", FInt64;
4692     "size", FInt64;
4693     "blksize", FInt64;
4694     "blocks", FInt64;
4695     "atime", FInt64;
4696     "mtime", FInt64;
4697     "ctime", FInt64;
4698   ];
4699   "statvfs", [
4700     "bsize", FInt64;
4701     "frsize", FInt64;
4702     "blocks", FInt64;
4703     "bfree", FInt64;
4704     "bavail", FInt64;
4705     "files", FInt64;
4706     "ffree", FInt64;
4707     "favail", FInt64;
4708     "fsid", FInt64;
4709     "flag", FInt64;
4710     "namemax", FInt64;
4711   ];
4712
4713   (* Column names in dirent structure. *)
4714   "dirent", [
4715     "ino", FInt64;
4716     (* 'b' 'c' 'd' 'f' (FIFO) 'l' 'r' (regular file) 's' 'u' '?' *)
4717     "ftyp", FChar;
4718     "name", FString;
4719   ];
4720
4721   (* Version numbers. *)
4722   "version", [
4723     "major", FInt64;
4724     "minor", FInt64;
4725     "release", FInt64;
4726     "extra", FString;
4727   ];
4728
4729   (* Extended attribute. *)
4730   "xattr", [
4731     "attrname", FString;
4732     "attrval", FBuffer;
4733   ];
4734
4735   (* Inotify events. *)
4736   "inotify_event", [
4737     "in_wd", FInt64;
4738     "in_mask", FUInt32;
4739     "in_cookie", FUInt32;
4740     "in_name", FString;
4741   ];
4742
4743   (* Partition table entry. *)
4744   "partition", [
4745     "part_num", FInt32;
4746     "part_start", FBytes;
4747     "part_end", FBytes;
4748     "part_size", FBytes;
4749   ];
4750 ] (* end of structs *)
4751
4752 (* Ugh, Java has to be different ..
4753  * These names are also used by the Haskell bindings.
4754  *)
4755 let java_structs = [
4756   "int_bool", "IntBool";
4757   "lvm_pv", "PV";
4758   "lvm_vg", "VG";
4759   "lvm_lv", "LV";
4760   "stat", "Stat";
4761   "statvfs", "StatVFS";
4762   "dirent", "Dirent";
4763   "version", "Version";
4764   "xattr", "XAttr";
4765   "inotify_event", "INotifyEvent";
4766   "partition", "Partition";
4767 ]
4768
4769 (* What structs are actually returned. *)
4770 type rstructs_used_t = RStructOnly | RStructListOnly | RStructAndList
4771
4772 (* Returns a list of RStruct/RStructList structs that are returned
4773  * by any function.  Each element of returned list is a pair:
4774  *
4775  * (structname, RStructOnly)
4776  *    == there exists function which returns RStruct (_, structname)
4777  * (structname, RStructListOnly)
4778  *    == there exists function which returns RStructList (_, structname)
4779  * (structname, RStructAndList)
4780  *    == there are functions returning both RStruct (_, structname)
4781  *                                      and RStructList (_, structname)
4782  *)
4783 let rstructs_used_by functions =
4784   (* ||| is a "logical OR" for rstructs_used_t *)
4785   let (|||) a b =
4786     match a, b with
4787     | RStructAndList, _
4788     | _, RStructAndList -> RStructAndList
4789     | RStructOnly, RStructListOnly
4790     | RStructListOnly, RStructOnly -> RStructAndList
4791     | RStructOnly, RStructOnly -> RStructOnly
4792     | RStructListOnly, RStructListOnly -> RStructListOnly
4793   in
4794
4795   let h = Hashtbl.create 13 in
4796
4797   (* if elem->oldv exists, update entry using ||| operator,
4798    * else just add elem->newv to the hash
4799    *)
4800   let update elem newv =
4801     try  let oldv = Hashtbl.find h elem in
4802          Hashtbl.replace h elem (newv ||| oldv)
4803     with Not_found -> Hashtbl.add h elem newv
4804   in
4805
4806   List.iter (
4807     fun (_, style, _, _, _, _, _) ->
4808       match fst style with
4809       | RStruct (_, structname) -> update structname RStructOnly
4810       | RStructList (_, structname) -> update structname RStructListOnly
4811       | _ -> ()
4812   ) functions;
4813
4814   (* return key->values as a list of (key,value) *)
4815   Hashtbl.fold (fun key value xs -> (key, value) :: xs) h []
4816
4817 (* Used for testing language bindings. *)
4818 type callt =
4819   | CallString of string
4820   | CallOptString of string option
4821   | CallStringList of string list
4822   | CallInt of int
4823   | CallInt64 of int64
4824   | CallBool of bool
4825
4826 (* Used to memoize the result of pod2text. *)
4827 let pod2text_memo_filename = "src/.pod2text.data"
4828 let pod2text_memo : ((int * string * string), string list) Hashtbl.t =
4829   try
4830     let chan = open_in pod2text_memo_filename in
4831     let v = input_value chan in
4832     close_in chan;
4833     v
4834   with
4835     _ -> Hashtbl.create 13
4836 let pod2text_memo_updated () =
4837   let chan = open_out pod2text_memo_filename in
4838   output_value chan pod2text_memo;
4839   close_out chan
4840
4841 (* Useful functions.
4842  * Note we don't want to use any external OCaml libraries which
4843  * makes this a bit harder than it should be.
4844  *)
4845 module StringMap = Map.Make (String)
4846
4847 let failwithf fs = ksprintf failwith fs
4848
4849 let unique = let i = ref 0 in fun () -> incr i; !i
4850
4851 let replace_char s c1 c2 =
4852   let s2 = String.copy s in
4853   let r = ref false in
4854   for i = 0 to String.length s2 - 1 do
4855     if String.unsafe_get s2 i = c1 then (
4856       String.unsafe_set s2 i c2;
4857       r := true
4858     )
4859   done;
4860   if not !r then s else s2
4861
4862 let isspace c =
4863   c = ' '
4864   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
4865
4866 let triml ?(test = isspace) str =
4867   let i = ref 0 in
4868   let n = ref (String.length str) in
4869   while !n > 0 && test str.[!i]; do
4870     decr n;
4871     incr i
4872   done;
4873   if !i = 0 then str
4874   else String.sub str !i !n
4875
4876 let trimr ?(test = isspace) str =
4877   let n = ref (String.length str) in
4878   while !n > 0 && test str.[!n-1]; do
4879     decr n
4880   done;
4881   if !n = String.length str then str
4882   else String.sub str 0 !n
4883
4884 let trim ?(test = isspace) str =
4885   trimr ~test (triml ~test str)
4886
4887 let rec find s sub =
4888   let len = String.length s in
4889   let sublen = String.length sub in
4890   let rec loop i =
4891     if i <= len-sublen then (
4892       let rec loop2 j =
4893         if j < sublen then (
4894           if s.[i+j] = sub.[j] then loop2 (j+1)
4895           else -1
4896         ) else
4897           i (* found *)
4898       in
4899       let r = loop2 0 in
4900       if r = -1 then loop (i+1) else r
4901     ) else
4902       -1 (* not found *)
4903   in
4904   loop 0
4905
4906 let rec replace_str s s1 s2 =
4907   let len = String.length s in
4908   let sublen = String.length s1 in
4909   let i = find s s1 in
4910   if i = -1 then s
4911   else (
4912     let s' = String.sub s 0 i in
4913     let s'' = String.sub s (i+sublen) (len-i-sublen) in
4914     s' ^ s2 ^ replace_str s'' s1 s2
4915   )
4916
4917 let rec string_split sep str =
4918   let len = String.length str in
4919   let seplen = String.length sep in
4920   let i = find str sep in
4921   if i = -1 then [str]
4922   else (
4923     let s' = String.sub str 0 i in
4924     let s'' = String.sub str (i+seplen) (len-i-seplen) in
4925     s' :: string_split sep s''
4926   )
4927
4928 let files_equal n1 n2 =
4929   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
4930   match Sys.command cmd with
4931   | 0 -> true
4932   | 1 -> false
4933   | i -> failwithf "%s: failed with error code %d" cmd i
4934
4935 let rec filter_map f = function
4936   | [] -> []
4937   | x :: xs ->
4938       match f x with
4939       | Some y -> y :: filter_map f xs
4940       | None -> filter_map f xs
4941
4942 let rec find_map f = function
4943   | [] -> raise Not_found
4944   | x :: xs ->
4945       match f x with
4946       | Some y -> y
4947       | None -> find_map f xs
4948
4949 let iteri f xs =
4950   let rec loop i = function
4951     | [] -> ()
4952     | x :: xs -> f i x; loop (i+1) xs
4953   in
4954   loop 0 xs
4955
4956 let mapi f xs =
4957   let rec loop i = function
4958     | [] -> []
4959     | x :: xs -> let r = f i x in r :: loop (i+1) xs
4960   in
4961   loop 0 xs
4962
4963 let count_chars c str =
4964   let count = ref 0 in
4965   for i = 0 to String.length str - 1 do
4966     if c = String.unsafe_get str i then incr count
4967   done;
4968   !count
4969
4970 let name_of_argt = function
4971   | Pathname n | Device n | Dev_or_Path n | String n | OptString n
4972   | StringList n | DeviceList n | Bool n | Int n | Int64 n
4973   | FileIn n | FileOut n -> n
4974
4975 let java_name_of_struct typ =
4976   try List.assoc typ java_structs
4977   with Not_found ->
4978     failwithf
4979       "java_name_of_struct: no java_structs entry corresponding to %s" typ
4980
4981 let cols_of_struct typ =
4982   try List.assoc typ structs
4983   with Not_found ->
4984     failwithf "cols_of_struct: unknown struct %s" typ
4985
4986 let seq_of_test = function
4987   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
4988   | TestOutputListOfDevices (s, _)
4989   | TestOutputInt (s, _) | TestOutputIntOp (s, _, _)
4990   | TestOutputTrue s | TestOutputFalse s
4991   | TestOutputLength (s, _) | TestOutputBuffer (s, _)
4992   | TestOutputStruct (s, _)
4993   | TestLastFail s -> s
4994
4995 (* Handling for function flags. *)
4996 let protocol_limit_warning =
4997   "Because of the message protocol, there is a transfer limit
4998 of somewhere between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
4999
5000 let danger_will_robinson =
5001   "B<This command is dangerous.  Without careful use you
5002 can easily destroy all your data>."
5003
5004 let deprecation_notice flags =
5005   try
5006     let alt =
5007       find_map (function DeprecatedBy str -> Some str | _ -> None) flags in
5008     let txt =
5009       sprintf "This function is deprecated.
5010 In new code, use the C<%s> call instead.
5011
5012 Deprecated functions will not be removed from the API, but the
5013 fact that they are deprecated indicates that there are problems
5014 with correct use of these functions." alt in
5015     Some txt
5016   with
5017     Not_found -> None
5018
5019 (* Create list of optional groups. *)
5020 let optgroups =
5021   let h = Hashtbl.create 13 in
5022   List.iter (
5023     fun (name, _, _, flags, _, _, _) ->
5024       List.iter (
5025         function
5026         | Optional group ->
5027             let names = try Hashtbl.find h group with Not_found -> [] in
5028             Hashtbl.replace h group (name :: names)
5029         | _ -> ()
5030       ) flags
5031   ) daemon_functions;
5032   let groups = Hashtbl.fold (fun k _ ks -> k :: ks) h [] in
5033   let groups =
5034     List.map (
5035       fun group -> group, List.sort compare (Hashtbl.find h group)
5036     ) groups in
5037   List.sort (fun x y -> compare (fst x) (fst y)) groups
5038
5039 (* Check function names etc. for consistency. *)
5040 let check_functions () =
5041   let contains_uppercase str =
5042     let len = String.length str in
5043     let rec loop i =
5044       if i >= len then false
5045       else (
5046         let c = str.[i] in
5047         if c >= 'A' && c <= 'Z' then true
5048         else loop (i+1)
5049       )
5050     in
5051     loop 0
5052   in
5053
5054   (* Check function names. *)
5055   List.iter (
5056     fun (name, _, _, _, _, _, _) ->
5057       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
5058         failwithf "function name %s does not need 'guestfs' prefix" name;
5059       if name = "" then
5060         failwithf "function name is empty";
5061       if name.[0] < 'a' || name.[0] > 'z' then
5062         failwithf "function name %s must start with lowercase a-z" name;
5063       if String.contains name '-' then
5064         failwithf "function name %s should not contain '-', use '_' instead."
5065           name
5066   ) all_functions;
5067
5068   (* Check function parameter/return names. *)
5069   List.iter (
5070     fun (name, style, _, _, _, _, _) ->
5071       let check_arg_ret_name n =
5072         if contains_uppercase n then
5073           failwithf "%s param/ret %s should not contain uppercase chars"
5074             name n;
5075         if String.contains n '-' || String.contains n '_' then
5076           failwithf "%s param/ret %s should not contain '-' or '_'"
5077             name n;
5078         if n = "value" then
5079           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;
5080         if n = "int" || n = "char" || n = "short" || n = "long" then
5081           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
5082         if n = "i" || n = "n" then
5083           failwithf "%s has a param/ret called 'i' or 'n', which will cause some conflicts in the generated code" name;
5084         if n = "argv" || n = "args" then
5085           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name;
5086
5087         (* List Haskell, OCaml and C keywords here.
5088          * http://www.haskell.org/haskellwiki/Keywords
5089          * http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#operator-char
5090          * http://en.wikipedia.org/wiki/C_syntax#Reserved_keywords
5091          * Formatted via: cat c haskell ocaml|sort -u|grep -vE '_|^val$' \
5092          *   |perl -pe 's/(.+)/"$1";/'|fmt -70
5093          * Omitting _-containing words, since they're handled above.
5094          * Omitting the OCaml reserved word, "val", is ok,
5095          * and saves us from renaming several parameters.
5096          *)
5097         let reserved = [
5098           "and"; "as"; "asr"; "assert"; "auto"; "begin"; "break"; "case";
5099           "char"; "class"; "const"; "constraint"; "continue"; "data";
5100           "default"; "deriving"; "do"; "done"; "double"; "downto"; "else";
5101           "end"; "enum"; "exception"; "extern"; "external"; "false"; "float";
5102           "for"; "forall"; "foreign"; "fun"; "function"; "functor"; "goto";
5103           "hiding"; "if"; "import"; "in"; "include"; "infix"; "infixl";
5104           "infixr"; "inherit"; "initializer"; "inline"; "instance"; "int";
5105           "interface";
5106           "land"; "lazy"; "let"; "long"; "lor"; "lsl"; "lsr"; "lxor";
5107           "match"; "mdo"; "method"; "mod"; "module"; "mutable"; "new";
5108           "newtype"; "object"; "of"; "open"; "or"; "private"; "qualified";
5109           "rec"; "register"; "restrict"; "return"; "short"; "sig"; "signed";
5110           "sizeof"; "static"; "struct"; "switch"; "then"; "to"; "true"; "try";
5111           "type"; "typedef"; "union"; "unsigned"; "virtual"; "void";
5112           "volatile"; "when"; "where"; "while";
5113           ] in
5114         if List.mem n reserved then
5115           failwithf "%s has param/ret using reserved word %s" name n;
5116       in
5117
5118       (match fst style with
5119        | RErr -> ()
5120        | RInt n | RInt64 n | RBool n
5121        | RConstString n | RConstOptString n | RString n
5122        | RStringList n | RStruct (n, _) | RStructList (n, _)
5123        | RHashtable n | RBufferOut n ->
5124            check_arg_ret_name n
5125       );
5126       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
5127   ) all_functions;
5128
5129   (* Check short descriptions. *)
5130   List.iter (
5131     fun (name, _, _, _, _, shortdesc, _) ->
5132       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
5133         failwithf "short description of %s should begin with lowercase." name;
5134       let c = shortdesc.[String.length shortdesc-1] in
5135       if c = '\n' || c = '.' then
5136         failwithf "short description of %s should not end with . or \\n." name
5137   ) all_functions;
5138
5139   (* Check long descriptions. *)
5140   List.iter (
5141     fun (name, _, _, _, _, _, longdesc) ->
5142       if longdesc.[String.length longdesc-1] = '\n' then
5143         failwithf "long description of %s should not end with \\n." name
5144   ) all_functions;
5145
5146   (* Check proc_nrs. *)
5147   List.iter (
5148     fun (name, _, proc_nr, _, _, _, _) ->
5149       if proc_nr <= 0 then
5150         failwithf "daemon function %s should have proc_nr > 0" name
5151   ) daemon_functions;
5152
5153   List.iter (
5154     fun (name, _, proc_nr, _, _, _, _) ->
5155       if proc_nr <> -1 then
5156         failwithf "non-daemon function %s should have proc_nr -1" name
5157   ) non_daemon_functions;
5158
5159   let proc_nrs =
5160     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
5161       daemon_functions in
5162   let proc_nrs =
5163     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
5164   let rec loop = function
5165     | [] -> ()
5166     | [_] -> ()
5167     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
5168         loop rest
5169     | (name1,nr1) :: (name2,nr2) :: _ ->
5170         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
5171           name1 name2 nr1 nr2
5172   in
5173   loop proc_nrs;
5174
5175   (* Check tests. *)
5176   List.iter (
5177     function
5178       (* Ignore functions that have no tests.  We generate a
5179        * warning when the user does 'make check' instead.
5180        *)
5181     | name, _, _, _, [], _, _ -> ()
5182     | name, _, _, _, tests, _, _ ->
5183         let funcs =
5184           List.map (
5185             fun (_, _, test) ->
5186               match seq_of_test test with
5187               | [] ->
5188                   failwithf "%s has a test containing an empty sequence" name
5189               | cmds -> List.map List.hd cmds
5190           ) tests in
5191         let funcs = List.flatten funcs in
5192
5193         let tested = List.mem name funcs in
5194
5195         if not tested then
5196           failwithf "function %s has tests but does not test itself" name
5197   ) all_functions
5198
5199 (* 'pr' prints to the current output file. *)
5200 let chan = ref Pervasives.stdout
5201 let lines = ref 0
5202 let pr fs =
5203   ksprintf
5204     (fun str ->
5205        let i = count_chars '\n' str in
5206        lines := !lines + i;
5207        output_string !chan str
5208     ) fs
5209
5210 let copyright_years =
5211   let this_year = 1900 + (localtime (time ())).tm_year in
5212   if this_year > 2009 then sprintf "2009-%04d" this_year else "2009"
5213
5214 (* Generate a header block in a number of standard styles. *)
5215 type comment_style =
5216     CStyle | CPlusPlusStyle | HashStyle | OCamlStyle | HaskellStyle
5217 type license = GPLv2plus | LGPLv2plus
5218
5219 let generate_header ?(extra_inputs = []) comment license =
5220   let inputs = "src/generator.ml" :: extra_inputs in
5221   let c = match comment with
5222     | CStyle ->         pr "/* "; " *"
5223     | CPlusPlusStyle -> pr "// "; "//"
5224     | HashStyle ->      pr "# ";  "#"
5225     | OCamlStyle ->     pr "(* "; " *"
5226     | HaskellStyle ->   pr "{- "; "  " in
5227   pr "libguestfs generated file\n";
5228   pr "%s WARNING: THIS FILE IS GENERATED FROM:\n" c;
5229   List.iter (pr "%s   %s\n" c) inputs;
5230   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
5231   pr "%s\n" c;
5232   pr "%s Copyright (C) %s Red Hat Inc.\n" c copyright_years;
5233   pr "%s\n" c;
5234   (match license with
5235    | GPLv2plus ->
5236        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
5237        pr "%s it under the terms of the GNU General Public License as published by\n" c;
5238        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
5239        pr "%s (at your option) any later version.\n" c;
5240        pr "%s\n" c;
5241        pr "%s This program is distributed in the hope that it will be useful,\n" c;
5242        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
5243        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
5244        pr "%s GNU General Public License for more details.\n" c;
5245        pr "%s\n" c;
5246        pr "%s You should have received a copy of the GNU General Public License along\n" c;
5247        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
5248        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
5249
5250    | LGPLv2plus ->
5251        pr "%s This library is free software; you can redistribute it and/or\n" c;
5252        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
5253        pr "%s License as published by the Free Software Foundation; either\n" c;
5254        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
5255        pr "%s\n" c;
5256        pr "%s This library is distributed in the hope that it will be useful,\n" c;
5257        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
5258        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
5259        pr "%s Lesser General Public License for more details.\n" c;
5260        pr "%s\n" c;
5261        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
5262        pr "%s License along with this library; if not, write to the Free Software\n" c;
5263        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
5264   );
5265   (match comment with
5266    | CStyle -> pr " */\n"
5267    | CPlusPlusStyle
5268    | HashStyle -> ()
5269    | OCamlStyle -> pr " *)\n"
5270    | HaskellStyle -> pr "-}\n"
5271   );
5272   pr "\n"
5273
5274 (* Start of main code generation functions below this line. *)
5275
5276 (* Generate the pod documentation for the C API. *)
5277 let rec generate_actions_pod () =
5278   List.iter (
5279     fun (shortname, style, _, flags, _, _, longdesc) ->
5280       if not (List.mem NotInDocs flags) then (
5281         let name = "guestfs_" ^ shortname in
5282         pr "=head2 %s\n\n" name;
5283         pr " ";
5284         generate_prototype ~extern:false ~handle:"g" name style;
5285         pr "\n\n";
5286         pr "%s\n\n" longdesc;
5287         (match fst style with
5288          | RErr ->
5289              pr "This function returns 0 on success or -1 on error.\n\n"
5290          | RInt _ ->
5291              pr "On error this function returns -1.\n\n"
5292          | RInt64 _ ->
5293              pr "On error this function returns -1.\n\n"
5294          | RBool _ ->
5295              pr "This function returns a C truth value on success or -1 on error.\n\n"
5296          | RConstString _ ->
5297              pr "This function returns a string, or NULL on error.
5298 The string is owned by the guest handle and must I<not> be freed.\n\n"
5299          | RConstOptString _ ->
5300              pr "This function returns a string which may be NULL.
5301 There is way to return an error from this function.
5302 The string is owned by the guest handle and must I<not> be freed.\n\n"
5303          | RString _ ->
5304              pr "This function returns a string, or NULL on error.
5305 I<The caller must free the returned string after use>.\n\n"
5306          | RStringList _ ->
5307              pr "This function returns a NULL-terminated array of strings
5308 (like L<environ(3)>), or NULL if there was an error.
5309 I<The caller must free the strings and the array after use>.\n\n"
5310          | RStruct (_, typ) ->
5311              pr "This function returns a C<struct guestfs_%s *>,
5312 or NULL if there was an error.
5313 I<The caller must call C<guestfs_free_%s> after use>.\n\n" typ typ
5314          | RStructList (_, typ) ->
5315              pr "This function returns a C<struct guestfs_%s_list *>
5316 (see E<lt>guestfs-structs.hE<gt>),
5317 or NULL if there was an error.
5318 I<The caller must call C<guestfs_free_%s_list> after use>.\n\n" typ typ
5319          | RHashtable _ ->
5320              pr "This function returns a NULL-terminated array of
5321 strings, or NULL if there was an error.
5322 The array of strings will always have length C<2n+1>, where
5323 C<n> keys and values alternate, followed by the trailing NULL entry.
5324 I<The caller must free the strings and the array after use>.\n\n"
5325          | RBufferOut _ ->
5326              pr "This function returns a buffer, or NULL on error.
5327 The size of the returned buffer is written to C<*size_r>.
5328 I<The caller must free the returned buffer after use>.\n\n"
5329         );
5330         if List.mem ProtocolLimitWarning flags then
5331           pr "%s\n\n" protocol_limit_warning;
5332         if List.mem DangerWillRobinson flags then
5333           pr "%s\n\n" danger_will_robinson;
5334         match deprecation_notice flags with
5335         | None -> ()
5336         | Some txt -> pr "%s\n\n" txt
5337       )
5338   ) all_functions_sorted
5339
5340 and generate_structs_pod () =
5341   (* Structs documentation. *)
5342   List.iter (
5343     fun (typ, cols) ->
5344       pr "=head2 guestfs_%s\n" typ;
5345       pr "\n";
5346       pr " struct guestfs_%s {\n" typ;
5347       List.iter (
5348         function
5349         | name, FChar -> pr "   char %s;\n" name
5350         | name, FUInt32 -> pr "   uint32_t %s;\n" name
5351         | name, FInt32 -> pr "   int32_t %s;\n" name
5352         | name, (FUInt64|FBytes) -> pr "   uint64_t %s;\n" name
5353         | name, FInt64 -> pr "   int64_t %s;\n" name
5354         | name, FString -> pr "   char *%s;\n" name
5355         | name, FBuffer ->
5356             pr "   /* The next two fields describe a byte array. */\n";
5357             pr "   uint32_t %s_len;\n" name;
5358             pr "   char *%s;\n" name
5359         | name, FUUID ->
5360             pr "   /* The next field is NOT nul-terminated, be careful when printing it: */\n";
5361             pr "   char %s[32];\n" name
5362         | name, FOptPercent ->
5363             pr "   /* The next field is [0..100] or -1 meaning 'not present': */\n";
5364             pr "   float %s;\n" name
5365       ) cols;
5366       pr " };\n";
5367       pr " \n";
5368       pr " struct guestfs_%s_list {\n" typ;
5369       pr "   uint32_t len; /* Number of elements in list. */\n";
5370       pr "   struct guestfs_%s *val; /* Elements. */\n" typ;
5371       pr " };\n";
5372       pr " \n";
5373       pr " void guestfs_free_%s (struct guestfs_free_%s *);\n" typ typ;
5374       pr " void guestfs_free_%s_list (struct guestfs_free_%s_list *);\n"
5375         typ typ;
5376       pr "\n"
5377   ) structs
5378
5379 and generate_availability_pod () =
5380   (* Availability documentation. *)
5381   pr "=over 4\n";
5382   pr "\n";
5383   List.iter (
5384     fun (group, functions) ->
5385       pr "=item B<%s>\n" group;
5386       pr "\n";
5387       pr "The following functions:\n";
5388       List.iter (pr "L</guestfs_%s>\n") functions;
5389       pr "\n"
5390   ) optgroups;
5391   pr "=back\n";
5392   pr "\n"
5393
5394 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
5395  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
5396  *
5397  * We have to use an underscore instead of a dash because otherwise
5398  * rpcgen generates incorrect code.
5399  *
5400  * This header is NOT exported to clients, but see also generate_structs_h.
5401  *)
5402 and generate_xdr () =
5403   generate_header CStyle LGPLv2plus;
5404
5405   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
5406   pr "typedef string str<>;\n";
5407   pr "\n";
5408
5409   (* Internal structures. *)
5410   List.iter (
5411     function
5412     | typ, cols ->
5413         pr "struct guestfs_int_%s {\n" typ;
5414         List.iter (function
5415                    | name, FChar -> pr "  char %s;\n" name
5416                    | name, FString -> pr "  string %s<>;\n" name
5417                    | name, FBuffer -> pr "  opaque %s<>;\n" name
5418                    | name, FUUID -> pr "  opaque %s[32];\n" name
5419                    | name, (FInt32|FUInt32) -> pr "  int %s;\n" name
5420                    | name, (FInt64|FUInt64|FBytes) -> pr "  hyper %s;\n" name
5421                    | name, FOptPercent -> pr "  float %s;\n" name
5422                   ) cols;
5423         pr "};\n";
5424         pr "\n";
5425         pr "typedef struct guestfs_int_%s guestfs_int_%s_list<>;\n" typ typ;
5426         pr "\n";
5427   ) structs;
5428
5429   List.iter (
5430     fun (shortname, style, _, _, _, _, _) ->
5431       let name = "guestfs_" ^ shortname in
5432
5433       (match snd style with
5434        | [] -> ()
5435        | args ->
5436            pr "struct %s_args {\n" name;
5437            List.iter (
5438              function
5439              | Pathname n | Device n | Dev_or_Path n | String n ->
5440                  pr "  string %s<>;\n" n
5441              | OptString n -> pr "  str *%s;\n" n
5442              | StringList n | DeviceList n -> pr "  str %s<>;\n" n
5443              | Bool n -> pr "  bool %s;\n" n
5444              | Int n -> pr "  int %s;\n" n
5445              | Int64 n -> pr "  hyper %s;\n" n
5446              | FileIn _ | FileOut _ -> ()
5447            ) args;
5448            pr "};\n\n"
5449       );
5450       (match fst style with
5451        | RErr -> ()
5452        | RInt n ->
5453            pr "struct %s_ret {\n" name;
5454            pr "  int %s;\n" n;
5455            pr "};\n\n"
5456        | RInt64 n ->
5457            pr "struct %s_ret {\n" name;
5458            pr "  hyper %s;\n" n;
5459            pr "};\n\n"
5460        | RBool n ->
5461            pr "struct %s_ret {\n" name;
5462            pr "  bool %s;\n" n;
5463            pr "};\n\n"
5464        | RConstString _ | RConstOptString _ ->
5465            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5466        | RString n ->
5467            pr "struct %s_ret {\n" name;
5468            pr "  string %s<>;\n" n;
5469            pr "};\n\n"
5470        | RStringList n ->
5471            pr "struct %s_ret {\n" name;
5472            pr "  str %s<>;\n" n;
5473            pr "};\n\n"
5474        | RStruct (n, typ) ->
5475            pr "struct %s_ret {\n" name;
5476            pr "  guestfs_int_%s %s;\n" typ n;
5477            pr "};\n\n"
5478        | RStructList (n, typ) ->
5479            pr "struct %s_ret {\n" name;
5480            pr "  guestfs_int_%s_list %s;\n" typ n;
5481            pr "};\n\n"
5482        | RHashtable n ->
5483            pr "struct %s_ret {\n" name;
5484            pr "  str %s<>;\n" n;
5485            pr "};\n\n"
5486        | RBufferOut n ->
5487            pr "struct %s_ret {\n" name;
5488            pr "  opaque %s<>;\n" n;
5489            pr "};\n\n"
5490       );
5491   ) daemon_functions;
5492
5493   (* Table of procedure numbers. *)
5494   pr "enum guestfs_procedure {\n";
5495   List.iter (
5496     fun (shortname, _, proc_nr, _, _, _, _) ->
5497       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
5498   ) daemon_functions;
5499   pr "  GUESTFS_PROC_NR_PROCS\n";
5500   pr "};\n";
5501   pr "\n";
5502
5503   (* Having to choose a maximum message size is annoying for several
5504    * reasons (it limits what we can do in the API), but it (a) makes
5505    * the protocol a lot simpler, and (b) provides a bound on the size
5506    * of the daemon which operates in limited memory space.
5507    *)
5508   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
5509   pr "\n";
5510
5511   (* Message header, etc. *)
5512   pr "\
5513 /* The communication protocol is now documented in the guestfs(3)
5514  * manpage.
5515  */
5516
5517 const GUESTFS_PROGRAM = 0x2000F5F5;
5518 const GUESTFS_PROTOCOL_VERSION = 1;
5519
5520 /* These constants must be larger than any possible message length. */
5521 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
5522 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
5523
5524 enum guestfs_message_direction {
5525   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
5526   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
5527 };
5528
5529 enum guestfs_message_status {
5530   GUESTFS_STATUS_OK = 0,
5531   GUESTFS_STATUS_ERROR = 1
5532 };
5533
5534 const GUESTFS_ERROR_LEN = 256;
5535
5536 struct guestfs_message_error {
5537   string error_message<GUESTFS_ERROR_LEN>;
5538 };
5539
5540 struct guestfs_message_header {
5541   unsigned prog;                     /* GUESTFS_PROGRAM */
5542   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
5543   guestfs_procedure proc;            /* GUESTFS_PROC_x */
5544   guestfs_message_direction direction;
5545   unsigned serial;                   /* message serial number */
5546   guestfs_message_status status;
5547 };
5548
5549 const GUESTFS_MAX_CHUNK_SIZE = 8192;
5550
5551 struct guestfs_chunk {
5552   int cancel;                        /* if non-zero, transfer is cancelled */
5553   /* data size is 0 bytes if the transfer has finished successfully */
5554   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
5555 };
5556 "
5557
5558 (* Generate the guestfs-structs.h file. *)
5559 and generate_structs_h () =
5560   generate_header CStyle LGPLv2plus;
5561
5562   (* This is a public exported header file containing various
5563    * structures.  The structures are carefully written to have
5564    * exactly the same in-memory format as the XDR structures that
5565    * we use on the wire to the daemon.  The reason for creating
5566    * copies of these structures here is just so we don't have to
5567    * export the whole of guestfs_protocol.h (which includes much
5568    * unrelated and XDR-dependent stuff that we don't want to be
5569    * public, or required by clients).
5570    *
5571    * To reiterate, we will pass these structures to and from the
5572    * client with a simple assignment or memcpy, so the format
5573    * must be identical to what rpcgen / the RFC defines.
5574    *)
5575
5576   (* Public structures. *)
5577   List.iter (
5578     fun (typ, cols) ->
5579       pr "struct guestfs_%s {\n" typ;
5580       List.iter (
5581         function
5582         | name, FChar -> pr "  char %s;\n" name
5583         | name, FString -> pr "  char *%s;\n" name
5584         | name, FBuffer ->
5585             pr "  uint32_t %s_len;\n" name;
5586             pr "  char *%s;\n" name
5587         | name, FUUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
5588         | name, FUInt32 -> pr "  uint32_t %s;\n" name
5589         | name, FInt32 -> pr "  int32_t %s;\n" name
5590         | name, (FUInt64|FBytes) -> pr "  uint64_t %s;\n" name
5591         | name, FInt64 -> pr "  int64_t %s;\n" name
5592         | name, FOptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
5593       ) cols;
5594       pr "};\n";
5595       pr "\n";
5596       pr "struct guestfs_%s_list {\n" typ;
5597       pr "  uint32_t len;\n";
5598       pr "  struct guestfs_%s *val;\n" typ;
5599       pr "};\n";
5600       pr "\n";
5601       pr "extern void guestfs_free_%s (struct guestfs_%s *);\n" typ typ;
5602       pr "extern void guestfs_free_%s_list (struct guestfs_%s_list *);\n" typ typ;
5603       pr "\n"
5604   ) structs
5605
5606 (* Generate the guestfs-actions.h file. *)
5607 and generate_actions_h () =
5608   generate_header CStyle LGPLv2plus;
5609   List.iter (
5610     fun (shortname, style, _, _, _, _, _) ->
5611       let name = "guestfs_" ^ shortname in
5612       generate_prototype ~single_line:true ~newline:true ~handle:"g"
5613         name style
5614   ) all_functions
5615
5616 (* Generate the guestfs-internal-actions.h file. *)
5617 and generate_internal_actions_h () =
5618   generate_header CStyle LGPLv2plus;
5619   List.iter (
5620     fun (shortname, style, _, _, _, _, _) ->
5621       let name = "guestfs__" ^ shortname in
5622       generate_prototype ~single_line:true ~newline:true ~handle:"g"
5623         name style
5624   ) non_daemon_functions
5625
5626 (* Generate the client-side dispatch stubs. *)
5627 and generate_client_actions () =
5628   generate_header CStyle LGPLv2plus;
5629
5630   pr "\
5631 #include <stdio.h>
5632 #include <stdlib.h>
5633 #include <stdint.h>
5634 #include <string.h>
5635 #include <inttypes.h>
5636
5637 #include \"guestfs.h\"
5638 #include \"guestfs-internal.h\"
5639 #include \"guestfs-internal-actions.h\"
5640 #include \"guestfs_protocol.h\"
5641
5642 #define error guestfs_error
5643 //#define perrorf guestfs_perrorf
5644 #define safe_malloc guestfs_safe_malloc
5645 #define safe_realloc guestfs_safe_realloc
5646 //#define safe_strdup guestfs_safe_strdup
5647 #define safe_memdup guestfs_safe_memdup
5648
5649 /* Check the return message from a call for validity. */
5650 static int
5651 check_reply_header (guestfs_h *g,
5652                     const struct guestfs_message_header *hdr,
5653                     unsigned int proc_nr, unsigned int serial)
5654 {
5655   if (hdr->prog != GUESTFS_PROGRAM) {
5656     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
5657     return -1;
5658   }
5659   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
5660     error (g, \"wrong protocol version (%%d/%%d)\",
5661            hdr->vers, GUESTFS_PROTOCOL_VERSION);
5662     return -1;
5663   }
5664   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
5665     error (g, \"unexpected message direction (%%d/%%d)\",
5666            hdr->direction, GUESTFS_DIRECTION_REPLY);
5667     return -1;
5668   }
5669   if (hdr->proc != proc_nr) {
5670     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
5671     return -1;
5672   }
5673   if (hdr->serial != serial) {
5674     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
5675     return -1;
5676   }
5677
5678   return 0;
5679 }
5680
5681 /* Check we are in the right state to run a high-level action. */
5682 static int
5683 check_state (guestfs_h *g, const char *caller)
5684 {
5685   if (!guestfs__is_ready (g)) {
5686     if (guestfs__is_config (g) || guestfs__is_launching (g))
5687       error (g, \"%%s: call launch before using this function\\n(in guestfish, don't forget to use the 'run' command)\",
5688         caller);
5689     else
5690       error (g, \"%%s called from the wrong state, %%d != READY\",
5691         caller, guestfs__get_state (g));
5692     return -1;
5693   }
5694   return 0;
5695 }
5696
5697 ";
5698
5699   (* Generate code to generate guestfish call traces. *)
5700   let trace_call shortname style =
5701     pr "  if (guestfs__get_trace (g)) {\n";
5702
5703     let needs_i =
5704       List.exists (function
5705                    | StringList _ | DeviceList _ -> true
5706                    | _ -> false) (snd style) in
5707     if needs_i then (
5708       pr "    int i;\n";
5709       pr "\n"
5710     );
5711
5712     pr "    printf (\"%s\");\n" shortname;
5713     List.iter (
5714       function
5715       | String n                        (* strings *)
5716       | Device n
5717       | Pathname n
5718       | Dev_or_Path n
5719       | FileIn n
5720       | FileOut n ->
5721           (* guestfish doesn't support string escaping, so neither do we *)
5722           pr "    printf (\" \\\"%%s\\\"\", %s);\n" n
5723       | OptString n ->                  (* string option *)
5724           pr "    if (%s) printf (\" \\\"%%s\\\"\", %s);\n" n n;
5725           pr "    else printf (\" null\");\n"
5726       | StringList n
5727       | DeviceList n ->                 (* string list *)
5728           pr "    putchar (' ');\n";
5729           pr "    putchar ('\"');\n";
5730           pr "    for (i = 0; %s[i]; ++i) {\n" n;
5731           pr "      if (i > 0) putchar (' ');\n";
5732           pr "      fputs (%s[i], stdout);\n" n;
5733           pr "    }\n";
5734           pr "    putchar ('\"');\n";
5735       | Bool n ->                       (* boolean *)
5736           pr "    fputs (%s ? \" true\" : \" false\", stdout);\n" n
5737       | Int n ->                        (* int *)
5738           pr "    printf (\" %%d\", %s);\n" n
5739       | Int64 n ->
5740           pr "    printf (\" %%\" PRIi64, %s);\n" n
5741     ) (snd style);
5742     pr "    putchar ('\\n');\n";
5743     pr "  }\n";
5744     pr "\n";
5745   in
5746
5747   (* For non-daemon functions, generate a wrapper around each function. *)
5748   List.iter (
5749     fun (shortname, style, _, _, _, _, _) ->
5750       let name = "guestfs_" ^ shortname in
5751
5752       generate_prototype ~extern:false ~semicolon:false ~newline:true
5753         ~handle:"g" name style;
5754       pr "{\n";
5755       trace_call shortname style;
5756       pr "  return guestfs__%s " shortname;
5757       generate_c_call_args ~handle:"g" style;
5758       pr ";\n";
5759       pr "}\n";
5760       pr "\n"
5761   ) non_daemon_functions;
5762
5763   (* Client-side stubs for each function. *)
5764   List.iter (
5765     fun (shortname, style, _, _, _, _, _) ->
5766       let name = "guestfs_" ^ shortname in
5767
5768       (* Generate the action stub. *)
5769       generate_prototype ~extern:false ~semicolon:false ~newline:true
5770         ~handle:"g" name style;
5771
5772       let error_code =
5773         match fst style with
5774         | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
5775         | RConstString _ | RConstOptString _ ->
5776             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5777         | RString _ | RStringList _
5778         | RStruct _ | RStructList _
5779         | RHashtable _ | RBufferOut _ ->
5780             "NULL" in
5781
5782       pr "{\n";
5783
5784       (match snd style with
5785        | [] -> ()
5786        | _ -> pr "  struct %s_args args;\n" name
5787       );
5788
5789       pr "  guestfs_message_header hdr;\n";
5790       pr "  guestfs_message_error err;\n";
5791       let has_ret =
5792         match fst style with
5793         | RErr -> false
5794         | RConstString _ | RConstOptString _ ->
5795             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5796         | RInt _ | RInt64 _
5797         | RBool _ | RString _ | RStringList _
5798         | RStruct _ | RStructList _
5799         | RHashtable _ | RBufferOut _ ->
5800             pr "  struct %s_ret ret;\n" name;
5801             true in
5802
5803       pr "  int serial;\n";
5804       pr "  int r;\n";
5805       pr "\n";
5806       trace_call shortname style;
5807       pr "  if (check_state (g, \"%s\") == -1) return %s;\n"
5808         shortname error_code;
5809       pr "  guestfs___set_busy (g);\n";
5810       pr "\n";
5811
5812       (* Send the main header and arguments. *)
5813       (match snd style with
5814        | [] ->
5815            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s, NULL, NULL);\n"
5816              (String.uppercase shortname)
5817        | args ->
5818            List.iter (
5819              function
5820              | Pathname n | Device n | Dev_or_Path n | String n ->
5821                  pr "  args.%s = (char *) %s;\n" n n
5822              | OptString n ->
5823                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
5824              | StringList n | DeviceList n ->
5825                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
5826                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
5827              | Bool n ->
5828                  pr "  args.%s = %s;\n" n n
5829              | Int n ->
5830                  pr "  args.%s = %s;\n" n n
5831              | Int64 n ->
5832                  pr "  args.%s = %s;\n" n n
5833              | FileIn _ | FileOut _ -> ()
5834            ) args;
5835            pr "  serial = guestfs___send (g, GUESTFS_PROC_%s,\n"
5836              (String.uppercase shortname);
5837            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
5838              name;
5839       );
5840       pr "  if (serial == -1) {\n";
5841       pr "    guestfs___end_busy (g);\n";
5842       pr "    return %s;\n" error_code;
5843       pr "  }\n";
5844       pr "\n";
5845
5846       (* Send any additional files (FileIn) requested. *)
5847       let need_read_reply_label = ref false in
5848       List.iter (
5849         function
5850         | FileIn n ->
5851             pr "  r = guestfs___send_file (g, %s);\n" n;
5852             pr "  if (r == -1) {\n";
5853             pr "    guestfs___end_busy (g);\n";
5854             pr "    return %s;\n" error_code;
5855             pr "  }\n";
5856             pr "  if (r == -2) /* daemon cancelled */\n";
5857             pr "    goto read_reply;\n";
5858             need_read_reply_label := true;
5859             pr "\n";
5860         | _ -> ()
5861       ) (snd style);
5862
5863       (* Wait for the reply from the remote end. *)
5864       if !need_read_reply_label then pr " read_reply:\n";
5865       pr "  memset (&hdr, 0, sizeof hdr);\n";
5866       pr "  memset (&err, 0, sizeof err);\n";
5867       if has_ret then pr "  memset (&ret, 0, sizeof ret);\n";
5868       pr "\n";
5869       pr "  r = guestfs___recv (g, \"%s\", &hdr, &err,\n        " shortname;
5870       if not has_ret then
5871         pr "NULL, NULL"
5872       else
5873         pr "(xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret" shortname;
5874       pr ");\n";
5875
5876       pr "  if (r == -1) {\n";
5877       pr "    guestfs___end_busy (g);\n";
5878       pr "    return %s;\n" error_code;
5879       pr "  }\n";
5880       pr "\n";
5881
5882       pr "  if (check_reply_header (g, &hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
5883         (String.uppercase shortname);
5884       pr "    guestfs___end_busy (g);\n";
5885       pr "    return %s;\n" error_code;
5886       pr "  }\n";
5887       pr "\n";
5888
5889       pr "  if (hdr.status == GUESTFS_STATUS_ERROR) {\n";
5890       pr "    error (g, \"%%s: %%s\", \"%s\", err.error_message);\n" shortname;
5891       pr "    free (err.error_message);\n";
5892       pr "    guestfs___end_busy (g);\n";
5893       pr "    return %s;\n" error_code;
5894       pr "  }\n";
5895       pr "\n";
5896
5897       (* Expecting to receive further files (FileOut)? *)
5898       List.iter (
5899         function
5900         | FileOut n ->
5901             pr "  if (guestfs___recv_file (g, %s) == -1) {\n" n;
5902             pr "    guestfs___end_busy (g);\n";
5903             pr "    return %s;\n" error_code;
5904             pr "  }\n";
5905             pr "\n";
5906         | _ -> ()
5907       ) (snd style);
5908
5909       pr "  guestfs___end_busy (g);\n";
5910
5911       (match fst style with
5912        | RErr -> pr "  return 0;\n"
5913        | RInt n | RInt64 n | RBool n ->
5914            pr "  return ret.%s;\n" n
5915        | RConstString _ | RConstOptString _ ->
5916            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
5917        | RString n ->
5918            pr "  return ret.%s; /* caller will free */\n" n
5919        | RStringList n | RHashtable n ->
5920            pr "  /* caller will free this, but we need to add a NULL entry */\n";
5921            pr "  ret.%s.%s_val =\n" n n;
5922            pr "    safe_realloc (g, ret.%s.%s_val,\n" n n;
5923            pr "                  sizeof (char *) * (ret.%s.%s_len + 1));\n"
5924              n n;
5925            pr "  ret.%s.%s_val[ret.%s.%s_len] = NULL;\n" n n n n;
5926            pr "  return ret.%s.%s_val;\n" n n
5927        | RStruct (n, _) ->
5928            pr "  /* caller will free this */\n";
5929            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
5930        | RStructList (n, _) ->
5931            pr "  /* caller will free this */\n";
5932            pr "  return safe_memdup (g, &ret.%s, sizeof (ret.%s));\n" n n
5933        | RBufferOut n ->
5934            pr "  /* RBufferOut is tricky: If the buffer is zero-length, then\n";
5935            pr "   * _val might be NULL here.  To make the API saner for\n";
5936            pr "   * callers, we turn this case into a unique pointer (using\n";
5937            pr "   * malloc(1)).\n";
5938            pr "   */\n";
5939            pr "  if (ret.%s.%s_len > 0) {\n" n n;
5940            pr "    *size_r = ret.%s.%s_len;\n" n n;
5941            pr "    return ret.%s.%s_val; /* caller will free */\n" n n;
5942            pr "  } else {\n";
5943            pr "    free (ret.%s.%s_val);\n" n n;
5944            pr "    char *p = safe_malloc (g, 1);\n";
5945            pr "    *size_r = ret.%s.%s_len;\n" n n;
5946            pr "    return p;\n";
5947            pr "  }\n";
5948       );
5949
5950       pr "}\n\n"
5951   ) daemon_functions;
5952
5953   (* Functions to free structures. *)
5954   pr "/* Structure-freeing functions.  These rely on the fact that the\n";
5955   pr " * structure format is identical to the XDR format.  See note in\n";
5956   pr " * generator.ml.\n";
5957   pr " */\n";
5958   pr "\n";
5959
5960   List.iter (
5961     fun (typ, _) ->
5962       pr "void\n";
5963       pr "guestfs_free_%s (struct guestfs_%s *x)\n" typ typ;
5964       pr "{\n";
5965       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s, (char *) x);\n" typ;
5966       pr "  free (x);\n";
5967       pr "}\n";
5968       pr "\n";
5969
5970       pr "void\n";
5971       pr "guestfs_free_%s_list (struct guestfs_%s_list *x)\n" typ typ;
5972       pr "{\n";
5973       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s_list, (char *) x);\n" typ;
5974       pr "  free (x);\n";
5975       pr "}\n";
5976       pr "\n";
5977
5978   ) structs;
5979
5980 (* Generate daemon/actions.h. *)
5981 and generate_daemon_actions_h () =
5982   generate_header CStyle GPLv2plus;
5983
5984   pr "#include \"../src/guestfs_protocol.h\"\n";
5985   pr "\n";
5986
5987   List.iter (
5988     fun (name, style, _, _, _, _, _) ->
5989       generate_prototype
5990         ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
5991         name style;
5992   ) daemon_functions
5993
5994 (* Generate the linker script which controls the visibility of
5995  * symbols in the public ABI and ensures no other symbols get
5996  * exported accidentally.
5997  *)
5998 and generate_linker_script () =
5999   generate_header HashStyle GPLv2plus;
6000
6001   let globals = [
6002     "guestfs_create";
6003     "guestfs_close";
6004     "guestfs_get_error_handler";
6005     "guestfs_get_out_of_memory_handler";
6006     "guestfs_last_error";
6007     "guestfs_set_error_handler";
6008     "guestfs_set_launch_done_callback";
6009     "guestfs_set_log_message_callback";
6010     "guestfs_set_out_of_memory_handler";
6011     "guestfs_set_subprocess_quit_callback";
6012
6013     (* Unofficial parts of the API: the bindings code use these
6014      * functions, so it is useful to export them.
6015      *)
6016     "guestfs_safe_calloc";
6017     "guestfs_safe_malloc";
6018   ] in
6019   let functions =
6020     List.map (fun (name, _, _, _, _, _, _) -> "guestfs_" ^ name)
6021       all_functions in
6022   let structs =
6023     List.concat (
6024       List.map (fun (typ, _) ->
6025                   ["guestfs_free_" ^ typ; "guestfs_free_" ^ typ ^ "_list"])
6026         structs
6027     ) in
6028   let globals = List.sort compare (globals @ functions @ structs) in
6029
6030   pr "{\n";
6031   pr "    global:\n";
6032   List.iter (pr "        %s;\n") globals;
6033   pr "\n";
6034
6035   pr "    local:\n";
6036   pr "        *;\n";
6037   pr "};\n"
6038
6039 (* Generate the server-side stubs. *)
6040 and generate_daemon_actions () =
6041   generate_header CStyle GPLv2plus;
6042
6043   pr "#include <config.h>\n";
6044   pr "\n";
6045   pr "#include <stdio.h>\n";
6046   pr "#include <stdlib.h>\n";
6047   pr "#include <string.h>\n";
6048   pr "#include <inttypes.h>\n";
6049   pr "#include <rpc/types.h>\n";
6050   pr "#include <rpc/xdr.h>\n";
6051   pr "\n";
6052   pr "#include \"daemon.h\"\n";
6053   pr "#include \"c-ctype.h\"\n";
6054   pr "#include \"../src/guestfs_protocol.h\"\n";
6055   pr "#include \"actions.h\"\n";
6056   pr "\n";
6057
6058   List.iter (
6059     fun (name, style, _, _, _, _, _) ->
6060       (* Generate server-side stubs. *)
6061       pr "static void %s_stub (XDR *xdr_in)\n" name;
6062       pr "{\n";
6063       let error_code =
6064         match fst style with
6065         | RErr | RInt _ -> pr "  int r;\n"; "-1"
6066         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6067         | RBool _ -> pr "  int r;\n"; "-1"
6068         | RConstString _ | RConstOptString _ ->
6069             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6070         | RString _ -> pr "  char *r;\n"; "NULL"
6071         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
6072         | RStruct (_, typ) -> pr "  guestfs_int_%s *r;\n" typ; "NULL"
6073         | RStructList (_, typ) -> pr "  guestfs_int_%s_list *r;\n" typ; "NULL"
6074         | RBufferOut _ ->
6075             pr "  size_t size = 1;\n";
6076             pr "  char *r;\n";
6077             "NULL" in
6078
6079       (match snd style with
6080        | [] -> ()
6081        | args ->
6082            pr "  struct guestfs_%s_args args;\n" name;
6083            List.iter (
6084              function
6085              | Device n | Dev_or_Path n
6086              | Pathname n
6087              | String n -> ()
6088              | OptString n -> pr "  char *%s;\n" n
6089              | StringList n | DeviceList n -> pr "  char **%s;\n" n
6090              | Bool n -> pr "  int %s;\n" n
6091              | Int n -> pr "  int %s;\n" n
6092              | Int64 n -> pr "  int64_t %s;\n" n
6093              | FileIn _ | FileOut _ -> ()
6094            ) args
6095       );
6096       pr "\n";
6097
6098       let is_filein =
6099         List.exists (function FileIn _ -> true | _ -> false) (snd style) in
6100
6101       (match snd style with
6102        | [] -> ()
6103        | args ->
6104            pr "  memset (&args, 0, sizeof args);\n";
6105            pr "\n";
6106            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
6107            if is_filein then
6108              pr "    cancel_receive ();\n";
6109            pr "    reply_with_error (\"daemon failed to decode procedure arguments\");\n";
6110            pr "    goto done;\n";
6111            pr "  }\n";
6112            let pr_args n =
6113              pr "  char *%s = args.%s;\n" n n
6114            in
6115            let pr_list_handling_code n =
6116              pr "  %s = realloc (args.%s.%s_val,\n" n n n;
6117              pr "                sizeof (char *) * (args.%s.%s_len+1));\n" n n;
6118              pr "  if (%s == NULL) {\n" n;
6119              if is_filein then
6120                pr "    cancel_receive ();\n";
6121              pr "    reply_with_perror (\"realloc\");\n";
6122              pr "    goto done;\n";
6123              pr "  }\n";
6124              pr "  %s[args.%s.%s_len] = NULL;\n" n n n;
6125              pr "  args.%s.%s_val = %s;\n" n n n;
6126            in
6127            List.iter (
6128              function
6129              | Pathname n ->
6130                  pr_args n;
6131                  pr "  ABS_PATH (%s, %s, goto done);\n"
6132                    n (if is_filein then "cancel_receive ()" else "");
6133              | Device n ->
6134                  pr_args n;
6135                  pr "  RESOLVE_DEVICE (%s, %s, goto done);\n"
6136                    n (if is_filein then "cancel_receive ()" else "");
6137              | Dev_or_Path n ->
6138                  pr_args n;
6139                  pr "  REQUIRE_ROOT_OR_RESOLVE_DEVICE (%s, %s, goto done);\n"
6140                    n (if is_filein then "cancel_receive ()" else "");
6141              | String n -> pr_args n
6142              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
6143              | StringList n ->
6144                  pr_list_handling_code n;
6145              | DeviceList n ->
6146                  pr_list_handling_code n;
6147                  pr "  /* Ensure that each is a device,\n";
6148                  pr "   * and perform device name translation. */\n";
6149                  pr "  { int pvi; for (pvi = 0; physvols[pvi] != NULL; ++pvi)\n";
6150                  pr "    RESOLVE_DEVICE (physvols[pvi], %s, goto done);\n"
6151                    (if is_filein then "cancel_receive ()" else "");
6152                  pr "  }\n";
6153              | Bool n -> pr "  %s = args.%s;\n" n n
6154              | Int n -> pr "  %s = args.%s;\n" n n
6155              | Int64 n -> pr "  %s = args.%s;\n" n n
6156              | FileIn _ | FileOut _ -> ()
6157            ) args;
6158            pr "\n"
6159       );
6160
6161
6162       (* this is used at least for do_equal *)
6163       if List.exists (function Pathname _ -> true | _ -> false) (snd style) then (
6164         (* Emit NEED_ROOT just once, even when there are two or
6165            more Pathname args *)
6166         pr "  NEED_ROOT (%s, goto done);\n"
6167           (if is_filein then "cancel_receive ()" else "");
6168       );
6169
6170       (* Don't want to call the impl with any FileIn or FileOut
6171        * parameters, since these go "outside" the RPC protocol.
6172        *)
6173       let args' =
6174         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
6175           (snd style) in
6176       pr "  r = do_%s " name;
6177       generate_c_call_args (fst style, args');
6178       pr ";\n";
6179
6180       (match fst style with
6181        | RErr | RInt _ | RInt64 _ | RBool _
6182        | RConstString _ | RConstOptString _
6183        | RString _ | RStringList _ | RHashtable _
6184        | RStruct (_, _) | RStructList (_, _) ->
6185            pr "  if (r == %s)\n" error_code;
6186            pr "    /* do_%s has already called reply_with_error */\n" name;
6187            pr "    goto done;\n";
6188            pr "\n"
6189        | RBufferOut _ ->
6190            pr "  /* size == 0 && r == NULL could be a non-error case (just\n";
6191            pr "   * an ordinary zero-length buffer), so be careful ...\n";
6192            pr "   */\n";
6193            pr "  if (size == 1 && r == %s)\n" error_code;
6194            pr "    /* do_%s has already called reply_with_error */\n" name;
6195            pr "    goto done;\n";
6196            pr "\n"
6197       );
6198
6199       (* If there are any FileOut parameters, then the impl must
6200        * send its own reply.
6201        *)
6202       let no_reply =
6203         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
6204       if no_reply then
6205         pr "  /* do_%s has already sent a reply */\n" name
6206       else (
6207         match fst style with
6208         | RErr -> pr "  reply (NULL, NULL);\n"
6209         | RInt n | RInt64 n | RBool n ->
6210             pr "  struct guestfs_%s_ret ret;\n" name;
6211             pr "  ret.%s = r;\n" n;
6212             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6213               name
6214         | RConstString _ | RConstOptString _ ->
6215             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
6216         | RString n ->
6217             pr "  struct guestfs_%s_ret ret;\n" name;
6218             pr "  ret.%s = r;\n" n;
6219             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6220               name;
6221             pr "  free (r);\n"
6222         | RStringList n | RHashtable n ->
6223             pr "  struct guestfs_%s_ret ret;\n" name;
6224             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
6225             pr "  ret.%s.%s_val = r;\n" n n;
6226             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6227               name;
6228             pr "  free_strings (r);\n"
6229         | RStruct (n, _) ->
6230             pr "  struct guestfs_%s_ret ret;\n" name;
6231             pr "  ret.%s = *r;\n" n;
6232             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6233               name;
6234             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6235               name
6236         | RStructList (n, _) ->
6237             pr "  struct guestfs_%s_ret ret;\n" name;
6238             pr "  ret.%s = *r;\n" n;
6239             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6240               name;
6241             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
6242               name
6243         | RBufferOut n ->
6244             pr "  struct guestfs_%s_ret ret;\n" name;
6245             pr "  ret.%s.%s_val = r;\n" n n;
6246             pr "  ret.%s.%s_len = size;\n" n n;
6247             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
6248               name;
6249             pr "  free (r);\n"
6250       );
6251
6252       (* Free the args. *)
6253       pr "done:\n";
6254       (match snd style with
6255        | [] -> ()
6256        | _ ->
6257            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
6258              name
6259       );
6260       pr "  return;\n";
6261       pr "}\n\n";
6262   ) daemon_functions;
6263
6264   (* Dispatch function. *)
6265   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
6266   pr "{\n";
6267   pr "  switch (proc_nr) {\n";
6268
6269   List.iter (
6270     fun (name, style, _, _, _, _, _) ->
6271       pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
6272       pr "      %s_stub (xdr_in);\n" name;
6273       pr "      break;\n"
6274   ) daemon_functions;
6275
6276   pr "    default:\n";
6277   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";
6278   pr "  }\n";
6279   pr "}\n";
6280   pr "\n";
6281
6282   (* LVM columns and tokenization functions. *)
6283   (* XXX This generates crap code.  We should rethink how we
6284    * do this parsing.
6285    *)
6286   List.iter (
6287     function
6288     | typ, cols ->
6289         pr "static const char *lvm_%s_cols = \"%s\";\n"
6290           typ (String.concat "," (List.map fst cols));
6291         pr "\n";
6292
6293         pr "static int lvm_tokenize_%s (char *str, guestfs_int_lvm_%s *r)\n" typ typ;
6294         pr "{\n";
6295         pr "  char *tok, *p, *next;\n";
6296         pr "  int i, j;\n";
6297         pr "\n";
6298         (*
6299           pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
6300           pr "\n";
6301         *)
6302         pr "  if (!str) {\n";
6303         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
6304         pr "    return -1;\n";
6305         pr "  }\n";
6306         pr "  if (!*str || c_isspace (*str)) {\n";
6307         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
6308         pr "    return -1;\n";
6309         pr "  }\n";
6310         pr "  tok = str;\n";
6311         List.iter (
6312           fun (name, coltype) ->
6313             pr "  if (!tok) {\n";
6314             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
6315             pr "    return -1;\n";
6316             pr "  }\n";
6317             pr "  p = strchrnul (tok, ',');\n";
6318             pr "  if (*p) next = p+1; else next = NULL;\n";
6319             pr "  *p = '\\0';\n";
6320             (match coltype with
6321              | FString ->
6322                  pr "  r->%s = strdup (tok);\n" name;
6323                  pr "  if (r->%s == NULL) {\n" name;
6324                  pr "    perror (\"strdup\");\n";
6325                  pr "    return -1;\n";
6326                  pr "  }\n"
6327              | FUUID ->
6328                  pr "  for (i = j = 0; i < 32; ++j) {\n";
6329                  pr "    if (tok[j] == '\\0') {\n";
6330                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
6331                  pr "      return -1;\n";
6332                  pr "    } else if (tok[j] != '-')\n";
6333                  pr "      r->%s[i++] = tok[j];\n" name;
6334                  pr "  }\n";
6335              | FBytes ->
6336                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
6337                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6338                  pr "    return -1;\n";
6339                  pr "  }\n";
6340              | FInt64 ->
6341                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
6342                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6343                  pr "    return -1;\n";
6344                  pr "  }\n";
6345              | FOptPercent ->
6346                  pr "  if (tok[0] == '\\0')\n";
6347                  pr "    r->%s = -1;\n" name;
6348                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
6349                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
6350                  pr "    return -1;\n";
6351                  pr "  }\n";
6352              | FBuffer | FInt32 | FUInt32 | FUInt64 | FChar ->
6353                  assert false (* can never be an LVM column *)
6354             );
6355             pr "  tok = next;\n";
6356         ) cols;
6357
6358         pr "  if (tok != NULL) {\n";
6359         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
6360         pr "    return -1;\n";
6361         pr "  }\n";
6362         pr "  return 0;\n";
6363         pr "}\n";
6364         pr "\n";
6365
6366         pr "guestfs_int_lvm_%s_list *\n" typ;
6367         pr "parse_command_line_%ss (void)\n" typ;
6368         pr "{\n";
6369         pr "  char *out, *err;\n";
6370         pr "  char *p, *pend;\n";
6371         pr "  int r, i;\n";
6372         pr "  guestfs_int_lvm_%s_list *ret;\n" typ;
6373         pr "  void *newp;\n";
6374         pr "\n";
6375         pr "  ret = malloc (sizeof *ret);\n";
6376         pr "  if (!ret) {\n";
6377         pr "    reply_with_perror (\"malloc\");\n";
6378         pr "    return NULL;\n";
6379         pr "  }\n";
6380         pr "\n";
6381         pr "  ret->guestfs_int_lvm_%s_list_len = 0;\n" typ;
6382         pr "  ret->guestfs_int_lvm_%s_list_val = NULL;\n" typ;
6383         pr "\n";
6384         pr "  r = command (&out, &err,\n";
6385         pr "           \"lvm\", \"%ss\",\n" typ;
6386         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
6387         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
6388         pr "  if (r == -1) {\n";
6389         pr "    reply_with_error (\"%%s\", err);\n";
6390         pr "    free (out);\n";
6391         pr "    free (err);\n";
6392         pr "    free (ret);\n";
6393         pr "    return NULL;\n";
6394         pr "  }\n";
6395         pr "\n";
6396         pr "  free (err);\n";
6397         pr "\n";
6398         pr "  /* Tokenize each line of the output. */\n";
6399         pr "  p = out;\n";
6400         pr "  i = 0;\n";
6401         pr "  while (p) {\n";
6402         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
6403         pr "    if (pend) {\n";
6404         pr "      *pend = '\\0';\n";
6405         pr "      pend++;\n";
6406         pr "    }\n";
6407         pr "\n";
6408         pr "    while (*p && c_isspace (*p))    /* Skip any leading whitespace. */\n";
6409         pr "      p++;\n";
6410         pr "\n";
6411         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
6412         pr "      p = pend;\n";
6413         pr "      continue;\n";
6414         pr "    }\n";
6415         pr "\n";
6416         pr "    /* Allocate some space to store this next entry. */\n";
6417         pr "    newp = realloc (ret->guestfs_int_lvm_%s_list_val,\n" typ;
6418         pr "                sizeof (guestfs_int_lvm_%s) * (i+1));\n" typ;
6419         pr "    if (newp == NULL) {\n";
6420         pr "      reply_with_perror (\"realloc\");\n";
6421         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6422         pr "      free (ret);\n";
6423         pr "      free (out);\n";
6424         pr "      return NULL;\n";
6425         pr "    }\n";
6426         pr "    ret->guestfs_int_lvm_%s_list_val = newp;\n" typ;
6427         pr "\n";
6428         pr "    /* Tokenize the next entry. */\n";
6429         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_int_lvm_%s_list_val[i]);\n" typ typ;
6430         pr "    if (r == -1) {\n";
6431         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
6432         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
6433         pr "      free (ret);\n";
6434         pr "      free (out);\n";
6435         pr "      return NULL;\n";
6436         pr "    }\n";
6437         pr "\n";
6438         pr "    ++i;\n";
6439         pr "    p = pend;\n";
6440         pr "  }\n";
6441         pr "\n";
6442         pr "  ret->guestfs_int_lvm_%s_list_len = i;\n" typ;
6443         pr "\n";
6444         pr "  free (out);\n";
6445         pr "  return ret;\n";
6446         pr "}\n"
6447
6448   ) ["pv", lvm_pv_cols; "vg", lvm_vg_cols; "lv", lvm_lv_cols]
6449
6450 (* Generate a list of function names, for debugging in the daemon.. *)
6451 and generate_daemon_names () =
6452   generate_header CStyle GPLv2plus;
6453
6454   pr "#include <config.h>\n";
6455   pr "\n";
6456   pr "#include \"daemon.h\"\n";
6457   pr "\n";
6458
6459   pr "/* This array is indexed by proc_nr.  See guestfs_protocol.x. */\n";
6460   pr "const char *function_names[] = {\n";
6461   List.iter (
6462     fun (name, _, proc_nr, _, _, _, _) -> pr "  [%d] = \"%s\",\n" proc_nr name
6463   ) daemon_functions;
6464   pr "};\n";
6465
6466 (* Generate the optional groups for the daemon to implement
6467  * guestfs_available.
6468  *)
6469 and generate_daemon_optgroups_c () =
6470   generate_header CStyle GPLv2plus;
6471
6472   pr "#include <config.h>\n";
6473   pr "\n";
6474   pr "#include \"daemon.h\"\n";
6475   pr "#include \"optgroups.h\"\n";
6476   pr "\n";
6477
6478   pr "struct optgroup optgroups[] = {\n";
6479   List.iter (
6480     fun (group, _) ->
6481       pr "  { \"%s\", optgroup_%s_available },\n" group group
6482   ) optgroups;
6483   pr "  { NULL, NULL }\n";
6484   pr "};\n"
6485
6486 and generate_daemon_optgroups_h () =
6487   generate_header CStyle GPLv2plus;
6488
6489   List.iter (
6490     fun (group, _) ->
6491       pr "extern int optgroup_%s_available (void);\n" group
6492   ) optgroups
6493
6494 (* Generate the tests. *)
6495 and generate_tests () =
6496   generate_header CStyle GPLv2plus;
6497
6498   pr "\
6499 #include <stdio.h>
6500 #include <stdlib.h>
6501 #include <string.h>
6502 #include <unistd.h>
6503 #include <sys/types.h>
6504 #include <fcntl.h>
6505
6506 #include \"guestfs.h\"
6507 #include \"guestfs-internal.h\"
6508
6509 static guestfs_h *g;
6510 static int suppress_error = 0;
6511
6512 static void print_error (guestfs_h *g, void *data, const char *msg)
6513 {
6514   if (!suppress_error)
6515     fprintf (stderr, \"%%s\\n\", msg);
6516 }
6517
6518 /* FIXME: nearly identical code appears in fish.c */
6519 static void print_strings (char *const *argv)
6520 {
6521   int argc;
6522
6523   for (argc = 0; argv[argc] != NULL; ++argc)
6524     printf (\"\\t%%s\\n\", argv[argc]);
6525 }
6526
6527 /*
6528 static void print_table (char const *const *argv)
6529 {
6530   int i;
6531
6532   for (i = 0; argv[i] != NULL; i += 2)
6533     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
6534 }
6535 */
6536
6537 ";
6538
6539   (* Generate a list of commands which are not tested anywhere. *)
6540   pr "static void no_test_warnings (void)\n";
6541   pr "{\n";
6542
6543   let hash : (string, bool) Hashtbl.t = Hashtbl.create 13 in
6544   List.iter (
6545     fun (_, _, _, _, tests, _, _) ->
6546       let tests = filter_map (
6547         function
6548         | (_, (Always|If _|Unless _), test) -> Some test
6549         | (_, Disabled, _) -> None
6550       ) tests in
6551       let seq = List.concat (List.map seq_of_test tests) in
6552       let cmds_tested = List.map List.hd seq in
6553       List.iter (fun cmd -> Hashtbl.replace hash cmd true) cmds_tested
6554   ) all_functions;
6555
6556   List.iter (
6557     fun (name, _, _, _, _, _, _) ->
6558       if not (Hashtbl.mem hash name) then
6559         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
6560   ) all_functions;
6561
6562   pr "}\n";
6563   pr "\n";
6564
6565   (* Generate the actual tests.  Note that we generate the tests
6566    * in reverse order, deliberately, so that (in general) the
6567    * newest tests run first.  This makes it quicker and easier to
6568    * debug them.
6569    *)
6570   let test_names =
6571     List.map (
6572       fun (name, _, _, flags, tests, _, _) ->
6573         mapi (generate_one_test name flags) tests
6574     ) (List.rev all_functions) in
6575   let test_names = List.concat test_names in
6576   let nr_tests = List.length test_names in
6577
6578   pr "\
6579 int main (int argc, char *argv[])
6580 {
6581   char c = 0;
6582   unsigned long int n_failed = 0;
6583   const char *filename;
6584   int fd;
6585   int nr_tests, test_num = 0;
6586
6587   setbuf (stdout, NULL);
6588
6589   no_test_warnings ();
6590
6591   g = guestfs_create ();
6592   if (g == NULL) {
6593     printf (\"guestfs_create FAILED\\n\");
6594     exit (EXIT_FAILURE);
6595   }
6596
6597   guestfs_set_error_handler (g, print_error, NULL);
6598
6599   guestfs_set_path (g, \"../appliance\");
6600
6601   filename = \"test1.img\";
6602   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6603   if (fd == -1) {
6604     perror (filename);
6605     exit (EXIT_FAILURE);
6606   }
6607   if (lseek (fd, %d, SEEK_SET) == -1) {
6608     perror (\"lseek\");
6609     close (fd);
6610     unlink (filename);
6611     exit (EXIT_FAILURE);
6612   }
6613   if (write (fd, &c, 1) == -1) {
6614     perror (\"write\");
6615     close (fd);
6616     unlink (filename);
6617     exit (EXIT_FAILURE);
6618   }
6619   if (close (fd) == -1) {
6620     perror (filename);
6621     unlink (filename);
6622     exit (EXIT_FAILURE);
6623   }
6624   if (guestfs_add_drive (g, filename) == -1) {
6625     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6626     exit (EXIT_FAILURE);
6627   }
6628
6629   filename = \"test2.img\";
6630   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6631   if (fd == -1) {
6632     perror (filename);
6633     exit (EXIT_FAILURE);
6634   }
6635   if (lseek (fd, %d, SEEK_SET) == -1) {
6636     perror (\"lseek\");
6637     close (fd);
6638     unlink (filename);
6639     exit (EXIT_FAILURE);
6640   }
6641   if (write (fd, &c, 1) == -1) {
6642     perror (\"write\");
6643     close (fd);
6644     unlink (filename);
6645     exit (EXIT_FAILURE);
6646   }
6647   if (close (fd) == -1) {
6648     perror (filename);
6649     unlink (filename);
6650     exit (EXIT_FAILURE);
6651   }
6652   if (guestfs_add_drive (g, filename) == -1) {
6653     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6654     exit (EXIT_FAILURE);
6655   }
6656
6657   filename = \"test3.img\";
6658   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
6659   if (fd == -1) {
6660     perror (filename);
6661     exit (EXIT_FAILURE);
6662   }
6663   if (lseek (fd, %d, SEEK_SET) == -1) {
6664     perror (\"lseek\");
6665     close (fd);
6666     unlink (filename);
6667     exit (EXIT_FAILURE);
6668   }
6669   if (write (fd, &c, 1) == -1) {
6670     perror (\"write\");
6671     close (fd);
6672     unlink (filename);
6673     exit (EXIT_FAILURE);
6674   }
6675   if (close (fd) == -1) {
6676     perror (filename);
6677     unlink (filename);
6678     exit (EXIT_FAILURE);
6679   }
6680   if (guestfs_add_drive (g, filename) == -1) {
6681     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
6682     exit (EXIT_FAILURE);
6683   }
6684
6685   if (guestfs_add_drive_ro (g, \"../images/test.iso\") == -1) {
6686     printf (\"guestfs_add_drive_ro ../images/test.iso FAILED\\n\");
6687     exit (EXIT_FAILURE);
6688   }
6689
6690   /* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
6691   alarm (600);
6692
6693   if (guestfs_launch (g) == -1) {
6694     printf (\"guestfs_launch FAILED\\n\");
6695     exit (EXIT_FAILURE);
6696   }
6697
6698   /* Cancel previous alarm. */
6699   alarm (0);
6700
6701   nr_tests = %d;
6702
6703 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
6704
6705   iteri (
6706     fun i test_name ->
6707       pr "  test_num++;\n";
6708       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
6709       pr "  if (%s () == -1) {\n" test_name;
6710       pr "    printf (\"%s FAILED\\n\");\n" test_name;
6711       pr "    n_failed++;\n";
6712       pr "  }\n";
6713   ) test_names;
6714   pr "\n";
6715
6716   pr "  guestfs_close (g);\n";
6717   pr "  unlink (\"test1.img\");\n";
6718   pr "  unlink (\"test2.img\");\n";
6719   pr "  unlink (\"test3.img\");\n";
6720   pr "\n";
6721
6722   pr "  if (n_failed > 0) {\n";
6723   pr "    printf (\"***** %%lu / %%d tests FAILED *****\\n\", n_failed, nr_tests);\n";
6724   pr "    exit (EXIT_FAILURE);\n";
6725   pr "  }\n";
6726   pr "\n";
6727
6728   pr "  exit (EXIT_SUCCESS);\n";
6729   pr "}\n"
6730
6731 and generate_one_test name flags i (init, prereq, test) =
6732   let test_name = sprintf "test_%s_%d" name i in
6733
6734   pr "\
6735 static int %s_skip (void)
6736 {
6737   const char *str;
6738
6739   str = getenv (\"TEST_ONLY\");
6740   if (str)
6741     return strstr (str, \"%s\") == NULL;
6742   str = getenv (\"SKIP_%s\");
6743   if (str && STREQ (str, \"1\")) return 1;
6744   str = getenv (\"SKIP_TEST_%s\");
6745   if (str && STREQ (str, \"1\")) return 1;
6746   return 0;
6747 }
6748
6749 " test_name name (String.uppercase test_name) (String.uppercase name);
6750
6751   (match prereq with
6752    | Disabled | Always -> ()
6753    | If code | Unless code ->
6754        pr "static int %s_prereq (void)\n" test_name;
6755        pr "{\n";
6756        pr "  %s\n" code;
6757        pr "}\n";
6758        pr "\n";
6759   );
6760
6761   pr "\
6762 static int %s (void)
6763 {
6764   if (%s_skip ()) {
6765     printf (\"        %%s skipped (reason: environment variable set)\\n\", \"%s\");
6766     return 0;
6767   }
6768
6769 " test_name test_name test_name;
6770
6771   (* Optional functions should only be tested if the relevant
6772    * support is available in the daemon.
6773    *)
6774   List.iter (
6775     function
6776     | Optional group ->
6777         pr "  {\n";
6778         pr "    const char *groups[] = { \"%s\", NULL };\n" group;
6779         pr "    int r;\n";
6780         pr "    suppress_error = 1;\n";
6781         pr "    r = guestfs_available (g, (char **) groups);\n";
6782         pr "    suppress_error = 0;\n";
6783         pr "    if (r == -1) {\n";
6784         pr "      printf (\"        %%s skipped (reason: group %%s not available in daemon)\\n\", \"%s\", groups[0]);\n" test_name;
6785         pr "      return 0;\n";
6786         pr "    }\n";
6787         pr "  }\n";
6788     | _ -> ()
6789   ) flags;
6790
6791   (match prereq with
6792    | Disabled ->
6793        pr "  printf (\"        %%s skipped (reason: test disabled in generator)\\n\", \"%s\");\n" test_name
6794    | If _ ->
6795        pr "  if (! %s_prereq ()) {\n" test_name;
6796        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
6797        pr "    return 0;\n";
6798        pr "  }\n";
6799        pr "\n";
6800        generate_one_test_body name i test_name init test;
6801    | Unless _ ->
6802        pr "  if (%s_prereq ()) {\n" test_name;
6803        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
6804        pr "    return 0;\n";
6805        pr "  }\n";
6806        pr "\n";
6807        generate_one_test_body name i test_name init test;
6808    | Always ->
6809        generate_one_test_body name i test_name init test
6810   );
6811
6812   pr "  return 0;\n";
6813   pr "}\n";
6814   pr "\n";
6815   test_name
6816
6817 and generate_one_test_body name i test_name init test =
6818   (match init with
6819    | InitNone (* XXX at some point, InitNone and InitEmpty became
6820                * folded together as the same thing.  Really we should
6821                * make InitNone do nothing at all, but the tests may
6822                * need to be checked to make sure this is OK.
6823                *)
6824    | InitEmpty ->
6825        pr "  /* InitNone|InitEmpty for %s */\n" test_name;
6826        List.iter (generate_test_command_call test_name)
6827          [["blockdev_setrw"; "/dev/sda"];
6828           ["umount_all"];
6829           ["lvm_remove_all"]]
6830    | InitPartition ->
6831        pr "  /* InitPartition for %s: create /dev/sda1 */\n" test_name;
6832        List.iter (generate_test_command_call test_name)
6833          [["blockdev_setrw"; "/dev/sda"];
6834           ["umount_all"];
6835           ["lvm_remove_all"];
6836           ["part_disk"; "/dev/sda"; "mbr"]]
6837    | InitBasicFS ->
6838        pr "  /* InitBasicFS for %s: create ext2 on /dev/sda1 */\n" test_name;
6839        List.iter (generate_test_command_call test_name)
6840          [["blockdev_setrw"; "/dev/sda"];
6841           ["umount_all"];
6842           ["lvm_remove_all"];
6843           ["part_disk"; "/dev/sda"; "mbr"];
6844           ["mkfs"; "ext2"; "/dev/sda1"];
6845           ["mount_options"; ""; "/dev/sda1"; "/"]]
6846    | InitBasicFSonLVM ->
6847        pr "  /* InitBasicFSonLVM for %s: create ext2 on /dev/VG/LV */\n"
6848          test_name;
6849        List.iter (generate_test_command_call test_name)
6850          [["blockdev_setrw"; "/dev/sda"];
6851           ["umount_all"];
6852           ["lvm_remove_all"];
6853           ["part_disk"; "/dev/sda"; "mbr"];
6854           ["pvcreate"; "/dev/sda1"];
6855           ["vgcreate"; "VG"; "/dev/sda1"];
6856           ["lvcreate"; "LV"; "VG"; "8"];
6857           ["mkfs"; "ext2"; "/dev/VG/LV"];
6858           ["mount_options"; ""; "/dev/VG/LV"; "/"]]
6859    | InitISOFS ->
6860        pr "  /* InitISOFS for %s */\n" test_name;
6861        List.iter (generate_test_command_call test_name)
6862          [["blockdev_setrw"; "/dev/sda"];
6863           ["umount_all"];
6864           ["lvm_remove_all"];
6865           ["mount_ro"; "/dev/sdd"; "/"]]
6866   );
6867
6868   let get_seq_last = function
6869     | [] ->
6870         failwithf "%s: you cannot use [] (empty list) when expecting a command"
6871           test_name
6872     | seq ->
6873         let seq = List.rev seq in
6874         List.rev (List.tl seq), List.hd seq
6875   in
6876
6877   match test with
6878   | TestRun seq ->
6879       pr "  /* TestRun for %s (%d) */\n" name i;
6880       List.iter (generate_test_command_call test_name) seq
6881   | TestOutput (seq, expected) ->
6882       pr "  /* TestOutput for %s (%d) */\n" name i;
6883       pr "  const char *expected = \"%s\";\n" (c_quote expected);
6884       let seq, last = get_seq_last seq in
6885       let test () =
6886         pr "    if (STRNEQ (r, expected)) {\n";
6887         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
6888         pr "      return -1;\n";
6889         pr "    }\n"
6890       in
6891       List.iter (generate_test_command_call test_name) seq;
6892       generate_test_command_call ~test test_name last
6893   | TestOutputList (seq, expected) ->
6894       pr "  /* TestOutputList for %s (%d) */\n" name i;
6895       let seq, last = get_seq_last seq in
6896       let test () =
6897         iteri (
6898           fun i str ->
6899             pr "    if (!r[%d]) {\n" i;
6900             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
6901             pr "      print_strings (r);\n";
6902             pr "      return -1;\n";
6903             pr "    }\n";
6904             pr "    {\n";
6905             pr "      const char *expected = \"%s\";\n" (c_quote str);
6906             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
6907             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
6908             pr "        return -1;\n";
6909             pr "      }\n";
6910             pr "    }\n"
6911         ) expected;
6912         pr "    if (r[%d] != NULL) {\n" (List.length expected);
6913         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
6914           test_name;
6915         pr "      print_strings (r);\n";
6916         pr "      return -1;\n";
6917         pr "    }\n"
6918       in
6919       List.iter (generate_test_command_call test_name) seq;
6920       generate_test_command_call ~test test_name last
6921   | TestOutputListOfDevices (seq, expected) ->
6922       pr "  /* TestOutputListOfDevices for %s (%d) */\n" name i;
6923       let seq, last = get_seq_last seq in
6924       let test () =
6925         iteri (
6926           fun i str ->
6927             pr "    if (!r[%d]) {\n" i;
6928             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
6929             pr "      print_strings (r);\n";
6930             pr "      return -1;\n";
6931             pr "    }\n";
6932             pr "    {\n";
6933             pr "      const char *expected = \"%s\";\n" (c_quote str);
6934             pr "      r[%d][5] = 's';\n" i;
6935             pr "      if (STRNEQ (r[%d], expected)) {\n" i;
6936             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
6937             pr "        return -1;\n";
6938             pr "      }\n";
6939             pr "    }\n"
6940         ) expected;
6941         pr "    if (r[%d] != NULL) {\n" (List.length expected);
6942         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
6943           test_name;
6944         pr "      print_strings (r);\n";
6945         pr "      return -1;\n";
6946         pr "    }\n"
6947       in
6948       List.iter (generate_test_command_call test_name) seq;
6949       generate_test_command_call ~test test_name last
6950   | TestOutputInt (seq, expected) ->
6951       pr "  /* TestOutputInt for %s (%d) */\n" name i;
6952       let seq, last = get_seq_last seq in
6953       let test () =
6954         pr "    if (r != %d) {\n" expected;
6955         pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
6956           test_name expected;
6957         pr "               (int) r);\n";
6958         pr "      return -1;\n";
6959         pr "    }\n"
6960       in
6961       List.iter (generate_test_command_call test_name) seq;
6962       generate_test_command_call ~test test_name last
6963   | TestOutputIntOp (seq, op, expected) ->
6964       pr "  /* TestOutputIntOp for %s (%d) */\n" name i;
6965       let seq, last = get_seq_last seq in
6966       let test () =
6967         pr "    if (! (r %s %d)) {\n" op expected;
6968         pr "      fprintf (stderr, \"%s: expected %s %d but got %%d\\n\","
6969           test_name op expected;
6970         pr "               (int) r);\n";
6971         pr "      return -1;\n";
6972         pr "    }\n"
6973       in
6974       List.iter (generate_test_command_call test_name) seq;
6975       generate_test_command_call ~test test_name last
6976   | TestOutputTrue seq ->
6977       pr "  /* TestOutputTrue for %s (%d) */\n" name i;
6978       let seq, last = get_seq_last seq in
6979       let test () =
6980         pr "    if (!r) {\n";
6981         pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
6982           test_name;
6983         pr "      return -1;\n";
6984         pr "    }\n"
6985       in
6986       List.iter (generate_test_command_call test_name) seq;
6987       generate_test_command_call ~test test_name last
6988   | TestOutputFalse seq ->
6989       pr "  /* TestOutputFalse for %s (%d) */\n" name i;
6990       let seq, last = get_seq_last seq in
6991       let test () =
6992         pr "    if (r) {\n";
6993         pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
6994           test_name;
6995         pr "      return -1;\n";
6996         pr "    }\n"
6997       in
6998       List.iter (generate_test_command_call test_name) seq;
6999       generate_test_command_call ~test test_name last
7000   | TestOutputLength (seq, expected) ->
7001       pr "  /* TestOutputLength for %s (%d) */\n" name i;
7002       let seq, last = get_seq_last seq in
7003       let test () =
7004         pr "    int j;\n";
7005         pr "    for (j = 0; j < %d; ++j)\n" expected;
7006         pr "      if (r[j] == NULL) {\n";
7007         pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
7008           test_name;
7009         pr "        print_strings (r);\n";
7010         pr "        return -1;\n";
7011         pr "      }\n";
7012         pr "    if (r[j] != NULL) {\n";
7013         pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
7014           test_name;
7015         pr "      print_strings (r);\n";
7016         pr "      return -1;\n";
7017         pr "    }\n"
7018       in
7019       List.iter (generate_test_command_call test_name) seq;
7020       generate_test_command_call ~test test_name last
7021   | TestOutputBuffer (seq, expected) ->
7022       pr "  /* TestOutputBuffer for %s (%d) */\n" name i;
7023       pr "  const char *expected = \"%s\";\n" (c_quote expected);
7024       let seq, last = get_seq_last seq in
7025       let len = String.length expected in
7026       let test () =
7027         pr "    if (size != %d) {\n" len;
7028         pr "      fprintf (stderr, \"%s: returned size of buffer wrong, expected %d but got %%zu\\n\", size);\n" test_name len;
7029         pr "      return -1;\n";
7030         pr "    }\n";
7031         pr "    if (STRNEQLEN (r, expected, size)) {\n";
7032         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
7033         pr "      return -1;\n";
7034         pr "    }\n"
7035       in
7036       List.iter (generate_test_command_call test_name) seq;
7037       generate_test_command_call ~test test_name last
7038   | TestOutputStruct (seq, checks) ->
7039       pr "  /* TestOutputStruct for %s (%d) */\n" name i;
7040       let seq, last = get_seq_last seq in
7041       let test () =
7042         List.iter (
7043           function
7044           | CompareWithInt (field, expected) ->
7045               pr "    if (r->%s != %d) {\n" field expected;
7046               pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
7047                 test_name field expected;
7048               pr "               (int) r->%s);\n" field;
7049               pr "      return -1;\n";
7050               pr "    }\n"
7051           | CompareWithIntOp (field, op, expected) ->
7052               pr "    if (!(r->%s %s %d)) {\n" field op expected;
7053               pr "      fprintf (stderr, \"%s: %s was %%d, expected %s %d\\n\",\n"
7054                 test_name field op expected;
7055               pr "               (int) r->%s);\n" field;
7056               pr "      return -1;\n";
7057               pr "    }\n"
7058           | CompareWithString (field, expected) ->
7059               pr "    if (STRNEQ (r->%s, \"%s\")) {\n" field expected;
7060               pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
7061                 test_name field expected;
7062               pr "               r->%s);\n" field;
7063               pr "      return -1;\n";
7064               pr "    }\n"
7065           | CompareFieldsIntEq (field1, field2) ->
7066               pr "    if (r->%s != r->%s) {\n" field1 field2;
7067               pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
7068                 test_name field1 field2;
7069               pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
7070               pr "      return -1;\n";
7071               pr "    }\n"
7072           | CompareFieldsStrEq (field1, field2) ->
7073               pr "    if (STRNEQ (r->%s, r->%s)) {\n" field1 field2;
7074               pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
7075                 test_name field1 field2;
7076               pr "               r->%s, r->%s);\n" field1 field2;
7077               pr "      return -1;\n";
7078               pr "    }\n"
7079         ) checks
7080       in
7081       List.iter (generate_test_command_call test_name) seq;
7082       generate_test_command_call ~test test_name last
7083   | TestLastFail seq ->
7084       pr "  /* TestLastFail for %s (%d) */\n" name i;
7085       let seq, last = get_seq_last seq in
7086       List.iter (generate_test_command_call test_name) seq;
7087       generate_test_command_call test_name ~expect_error:true last
7088
7089 (* Generate the code to run a command, leaving the result in 'r'.
7090  * If you expect to get an error then you should set expect_error:true.
7091  *)
7092 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
7093   match cmd with
7094   | [] -> assert false
7095   | name :: args ->
7096       (* Look up the command to find out what args/ret it has. *)
7097       let style =
7098         try
7099           let _, style, _, _, _, _, _ =
7100             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
7101           style
7102         with Not_found ->
7103           failwithf "%s: in test, command %s was not found" test_name name in
7104
7105       if List.length (snd style) <> List.length args then
7106         failwithf "%s: in test, wrong number of args given to %s"
7107           test_name name;
7108
7109       pr "  {\n";
7110
7111       List.iter (
7112         function
7113         | OptString n, "NULL" -> ()
7114         | Pathname n, arg
7115         | Device n, arg
7116         | Dev_or_Path n, arg
7117         | String n, arg
7118         | OptString n, arg ->
7119             pr "    const char *%s = \"%s\";\n" n (c_quote arg);
7120         | Int _, _
7121         | Int64 _, _
7122         | Bool _, _
7123         | FileIn _, _ | FileOut _, _ -> ()
7124         | StringList n, "" | DeviceList n, "" ->
7125             pr "    const char *const %s[1] = { NULL };\n" n
7126         | StringList n, arg | DeviceList n, arg ->
7127             let strs = string_split " " arg in
7128             iteri (
7129               fun i str ->
7130                 pr "    const char *%s_%d = \"%s\";\n" n i (c_quote str);
7131             ) strs;
7132             pr "    const char *const %s[] = {\n" n;
7133             iteri (
7134               fun i _ -> pr "      %s_%d,\n" n i
7135             ) strs;
7136             pr "      NULL\n";
7137             pr "    };\n";
7138       ) (List.combine (snd style) args);
7139
7140       let error_code =
7141         match fst style with
7142         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
7143         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
7144         | RConstString _ | RConstOptString _ ->
7145             pr "    const char *r;\n"; "NULL"
7146         | RString _ -> pr "    char *r;\n"; "NULL"
7147         | RStringList _ | RHashtable _ ->
7148             pr "    char **r;\n";
7149             pr "    int i;\n";
7150             "NULL"
7151         | RStruct (_, typ) ->
7152             pr "    struct guestfs_%s *r;\n" typ; "NULL"
7153         | RStructList (_, typ) ->
7154             pr "    struct guestfs_%s_list *r;\n" typ; "NULL"
7155         | RBufferOut _ ->
7156             pr "    char *r;\n";
7157             pr "    size_t size;\n";
7158             "NULL" in
7159
7160       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
7161       pr "    r = guestfs_%s (g" name;
7162
7163       (* Generate the parameters. *)
7164       List.iter (
7165         function
7166         | OptString _, "NULL" -> pr ", NULL"
7167         | Pathname n, _
7168         | Device n, _ | Dev_or_Path n, _
7169         | String n, _
7170         | OptString n, _ ->
7171             pr ", %s" n
7172         | FileIn _, arg | FileOut _, arg ->
7173             pr ", \"%s\"" (c_quote arg)
7174         | StringList n, _ | DeviceList n, _ ->
7175             pr ", (char **) %s" n
7176         | Int _, arg ->
7177             let i =
7178               try int_of_string arg
7179               with Failure "int_of_string" ->
7180                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
7181             pr ", %d" i
7182         | Int64 _, arg ->
7183             let i =
7184               try Int64.of_string arg
7185               with Failure "int_of_string" ->
7186                 failwithf "%s: expecting an int64, but got '%s'" test_name arg in
7187             pr ", %Ld" i
7188         | Bool _, arg ->
7189             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
7190       ) (List.combine (snd style) args);
7191
7192       (match fst style with
7193        | RBufferOut _ -> pr ", &size"
7194        | _ -> ()
7195       );
7196
7197       pr ");\n";
7198
7199       if not expect_error then
7200         pr "    if (r == %s)\n" error_code
7201       else
7202         pr "    if (r != %s)\n" error_code;
7203       pr "      return -1;\n";
7204
7205       (* Insert the test code. *)
7206       (match test with
7207        | None -> ()
7208        | Some f -> f ()
7209       );
7210
7211       (match fst style with
7212        | RErr | RInt _ | RInt64 _ | RBool _
7213        | RConstString _ | RConstOptString _ -> ()
7214        | RString _ | RBufferOut _ -> pr "    free (r);\n"
7215        | RStringList _ | RHashtable _ ->
7216            pr "    for (i = 0; r[i] != NULL; ++i)\n";
7217            pr "      free (r[i]);\n";
7218            pr "    free (r);\n"
7219        | RStruct (_, typ) ->
7220            pr "    guestfs_free_%s (r);\n" typ
7221        | RStructList (_, typ) ->
7222            pr "    guestfs_free_%s_list (r);\n" typ
7223       );
7224
7225       pr "  }\n"
7226
7227 and c_quote str =
7228   let str = replace_str str "\r" "\\r" in
7229   let str = replace_str str "\n" "\\n" in
7230   let str = replace_str str "\t" "\\t" in
7231   let str = replace_str str "\000" "\\0" in
7232   str
7233
7234 (* Generate a lot of different functions for guestfish. *)
7235 and generate_fish_cmds () =
7236   generate_header CStyle GPLv2plus;
7237
7238   let all_functions =
7239     List.filter (
7240       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7241     ) all_functions in
7242   let all_functions_sorted =
7243     List.filter (
7244       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7245     ) all_functions_sorted in
7246
7247   pr "#include <config.h>\n";
7248   pr "\n";
7249   pr "#include <stdio.h>\n";
7250   pr "#include <stdlib.h>\n";
7251   pr "#include <string.h>\n";
7252   pr "#include <inttypes.h>\n";
7253   pr "\n";
7254   pr "#include <guestfs.h>\n";
7255   pr "#include \"c-ctype.h\"\n";
7256   pr "#include \"full-write.h\"\n";
7257   pr "#include \"xstrtol.h\"\n";
7258   pr "#include \"fish.h\"\n";
7259   pr "\n";
7260
7261   (* list_commands function, which implements guestfish -h *)
7262   pr "void list_commands (void)\n";
7263   pr "{\n";
7264   pr "  printf (\"    %%-16s     %%s\\n\", _(\"Command\"), _(\"Description\"));\n";
7265   pr "  list_builtin_commands ();\n";
7266   List.iter (
7267     fun (name, _, _, flags, _, shortdesc, _) ->
7268       let name = replace_char name '_' '-' in
7269       pr "  printf (\"%%-20s %%s\\n\", \"%s\", _(\"%s\"));\n"
7270         name shortdesc
7271   ) all_functions_sorted;
7272   pr "  printf (\"    %%s\\n\",";
7273   pr "          _(\"Use -h <cmd> / help <cmd> to show detailed help for a command.\"));\n";
7274   pr "}\n";
7275   pr "\n";
7276
7277   (* display_command function, which implements guestfish -h cmd *)
7278   pr "void display_command (const char *cmd)\n";
7279   pr "{\n";
7280   List.iter (
7281     fun (name, style, _, flags, _, shortdesc, longdesc) ->
7282       let name2 = replace_char name '_' '-' in
7283       let alias =
7284         try find_map (function FishAlias n -> Some n | _ -> None) flags
7285         with Not_found -> name in
7286       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
7287       let synopsis =
7288         match snd style with
7289         | [] -> name2
7290         | args ->
7291             sprintf "%s %s"
7292               name2 (String.concat " " (List.map name_of_argt args)) in
7293
7294       let warnings =
7295         if List.mem ProtocolLimitWarning flags then
7296           ("\n\n" ^ protocol_limit_warning)
7297         else "" in
7298
7299       (* For DangerWillRobinson commands, we should probably have
7300        * guestfish prompt before allowing you to use them (especially
7301        * in interactive mode). XXX
7302        *)
7303       let warnings =
7304         warnings ^
7305           if List.mem DangerWillRobinson flags then
7306             ("\n\n" ^ danger_will_robinson)
7307           else "" in
7308
7309       let warnings =
7310         warnings ^
7311           match deprecation_notice flags with
7312           | None -> ""
7313           | Some txt -> "\n\n" ^ txt in
7314
7315       let describe_alias =
7316         if name <> alias then
7317           sprintf "\n\nYou can use '%s' as an alias for this command." alias
7318         else "" in
7319
7320       pr "  if (";
7321       pr "STRCASEEQ (cmd, \"%s\")" name;
7322       if name <> name2 then
7323         pr " || STRCASEEQ (cmd, \"%s\")" name2;
7324       if name <> alias then
7325         pr " || STRCASEEQ (cmd, \"%s\")" alias;
7326       pr ")\n";
7327       pr "    pod2text (\"%s\", _(\"%s\"), %S);\n"
7328         name2 shortdesc
7329         ("=head1 SYNOPSIS\n\n " ^ synopsis ^ "\n\n" ^
7330          "=head1 DESCRIPTION\n\n" ^
7331          longdesc ^ warnings ^ describe_alias);
7332       pr "  else\n"
7333   ) all_functions;
7334   pr "    display_builtin_command (cmd);\n";
7335   pr "}\n";
7336   pr "\n";
7337
7338   let emit_print_list_function typ =
7339     pr "static void print_%s_list (struct guestfs_%s_list *%ss)\n"
7340       typ typ typ;
7341     pr "{\n";
7342     pr "  unsigned int i;\n";
7343     pr "\n";
7344     pr "  for (i = 0; i < %ss->len; ++i) {\n" typ;
7345     pr "    printf (\"[%%d] = {\\n\", i);\n";
7346     pr "    print_%s_indent (&%ss->val[i], \"  \");\n" typ typ;
7347     pr "    printf (\"}\\n\");\n";
7348     pr "  }\n";
7349     pr "}\n";
7350     pr "\n";
7351   in
7352
7353   (* print_* functions *)
7354   List.iter (
7355     fun (typ, cols) ->
7356       let needs_i =
7357         List.exists (function (_, (FUUID|FBuffer)) -> true | _ -> false) cols in
7358
7359       pr "static void print_%s_indent (struct guestfs_%s *%s, const char *indent)\n" typ typ typ;
7360       pr "{\n";
7361       if needs_i then (
7362         pr "  unsigned int i;\n";
7363         pr "\n"
7364       );
7365       List.iter (
7366         function
7367         | name, FString ->
7368             pr "  printf (\"%%s%s: %%s\\n\", indent, %s->%s);\n" name typ name
7369         | name, FUUID ->
7370             pr "  printf (\"%%s%s: \", indent);\n" name;
7371             pr "  for (i = 0; i < 32; ++i)\n";
7372             pr "    printf (\"%%c\", %s->%s[i]);\n" typ name;
7373             pr "  printf (\"\\n\");\n"
7374         | name, FBuffer ->
7375             pr "  printf (\"%%s%s: \", indent);\n" name;
7376             pr "  for (i = 0; i < %s->%s_len; ++i)\n" typ name;
7377             pr "    if (c_isprint (%s->%s[i]))\n" typ name;
7378             pr "      printf (\"%%c\", %s->%s[i]);\n" typ name;
7379             pr "    else\n";
7380             pr "      printf (\"\\\\x%%02x\", %s->%s[i]);\n" typ name;
7381             pr "  printf (\"\\n\");\n"
7382         | name, (FUInt64|FBytes) ->
7383             pr "  printf (\"%%s%s: %%\" PRIu64 \"\\n\", indent, %s->%s);\n"
7384               name typ name
7385         | name, FInt64 ->
7386             pr "  printf (\"%%s%s: %%\" PRIi64 \"\\n\", indent, %s->%s);\n"
7387               name typ name
7388         | name, FUInt32 ->
7389             pr "  printf (\"%%s%s: %%\" PRIu32 \"\\n\", indent, %s->%s);\n"
7390               name typ name
7391         | name, FInt32 ->
7392             pr "  printf (\"%%s%s: %%\" PRIi32 \"\\n\", indent, %s->%s);\n"
7393               name typ name
7394         | name, FChar ->
7395             pr "  printf (\"%%s%s: %%c\\n\", indent, %s->%s);\n"
7396               name typ name
7397         | name, FOptPercent ->
7398             pr "  if (%s->%s >= 0) printf (\"%%s%s: %%g %%%%\\n\", indent, %s->%s);\n"
7399               typ name name typ name;
7400             pr "  else printf (\"%%s%s: \\n\", indent);\n" name
7401       ) cols;
7402       pr "}\n";
7403       pr "\n";
7404   ) structs;
7405
7406   (* Emit a print_TYPE_list function definition only if that function is used. *)
7407   List.iter (
7408     function
7409     | typ, (RStructListOnly | RStructAndList) ->
7410         (* generate the function for typ *)
7411         emit_print_list_function typ
7412     | typ, _ -> () (* empty *)
7413   ) (rstructs_used_by all_functions);
7414
7415   (* Emit a print_TYPE function definition only if that function is used. *)
7416   List.iter (
7417     function
7418     | typ, (RStructOnly | RStructAndList) ->
7419         pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
7420         pr "{\n";
7421         pr "  print_%s_indent (%s, \"\");\n" typ typ;
7422         pr "}\n";
7423         pr "\n";
7424     | typ, _ -> () (* empty *)
7425   ) (rstructs_used_by all_functions);
7426
7427   (* run_<action> actions *)
7428   List.iter (
7429     fun (name, style, _, flags, _, _, _) ->
7430       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
7431       pr "{\n";
7432       (match fst style with
7433        | RErr
7434        | RInt _
7435        | RBool _ -> pr "  int r;\n"
7436        | RInt64 _ -> pr "  int64_t r;\n"
7437        | RConstString _ | RConstOptString _ -> pr "  const char *r;\n"
7438        | RString _ -> pr "  char *r;\n"
7439        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
7440        | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ
7441        | RStructList (_, typ) -> pr "  struct guestfs_%s_list *r;\n" typ
7442        | RBufferOut _ ->
7443            pr "  char *r;\n";
7444            pr "  size_t size;\n";
7445       );
7446       List.iter (
7447         function
7448         | Device n
7449         | String n
7450         | OptString n -> pr "  const char *%s;\n" n
7451         | Pathname n
7452         | Dev_or_Path n
7453         | FileIn n
7454         | FileOut n -> pr "  char *%s;\n" n
7455         | StringList n | DeviceList n -> pr "  char **%s;\n" n
7456         | Bool n -> pr "  int %s;\n" n
7457         | Int n -> pr "  int %s;\n" n
7458         | Int64 n -> pr "  int64_t %s;\n" n
7459       ) (snd style);
7460
7461       (* Check and convert parameters. *)
7462       let argc_expected = List.length (snd style) in
7463       pr "  if (argc != %d) {\n" argc_expected;
7464       pr "    fprintf (stderr, _(\"%%s should have %%d parameter(s)\\n\"), cmd, %d);\n"
7465         argc_expected;
7466       pr "    fprintf (stderr, _(\"type 'help %%s' for help on %%s\\n\"), cmd, cmd);\n";
7467       pr "    return -1;\n";
7468       pr "  }\n";
7469
7470       let parse_integer fn fntyp rtyp range name i =
7471         pr "  {\n";
7472         pr "    strtol_error xerr;\n";
7473         pr "    %s r;\n" fntyp;
7474         pr "\n";
7475         pr "    xerr = %s (argv[%d], NULL, 0, &r, \"\");\n" fn i;
7476         pr "    if (xerr != LONGINT_OK) {\n";
7477         pr "      fprintf (stderr,\n";
7478         pr "               _(\"%%s: %%s: invalid integer parameter (%%s returned %%d)\\n\"),\n";
7479         pr "               cmd, \"%s\", \"%s\", xerr);\n" name fn;
7480         pr "      return -1;\n";
7481         pr "    }\n";
7482         (match range with
7483          | None -> ()
7484          | Some (min, max, comment) ->
7485              pr "    /* %s */\n" comment;
7486              pr "    if (r < %s || r > %s) {\n" min max;
7487              pr "      fprintf (stderr, _(\"%%s: %%s: integer out of range\\n\"), cmd, \"%s\");\n"
7488                name;
7489              pr "      return -1;\n";
7490              pr "    }\n";
7491              pr "    /* The check above should ensure this assignment does not overflow. */\n";
7492         );
7493         pr "    %s = r;\n" name;
7494         pr "  }\n";
7495       in
7496
7497       iteri (
7498         fun i ->
7499           function
7500           | Device name
7501           | String name ->
7502               pr "  %s = argv[%d];\n" name i
7503           | Pathname name
7504           | Dev_or_Path name ->
7505               pr "  %s = resolve_win_path (argv[%d]);\n" name i;
7506               pr "  if (%s == NULL) return -1;\n" name
7507           | OptString name ->
7508               pr "  %s = STRNEQ (argv[%d], \"\") ? argv[%d] : NULL;\n"
7509                 name i i
7510           | FileIn name ->
7511               pr "  %s = file_in (argv[%d]);\n" name i;
7512               pr "  if (%s == NULL) return -1;\n" name
7513           | FileOut name ->
7514               pr "  %s = file_out (argv[%d]);\n" name i;
7515               pr "  if (%s == NULL) return -1;\n" name
7516           | StringList name | DeviceList name ->
7517               pr "  %s = parse_string_list (argv[%d]);\n" name i;
7518               pr "  if (%s == NULL) return -1;\n" name;
7519           | Bool name ->
7520               pr "  %s = is_true (argv[%d]) ? 1 : 0;\n" name i
7521           | Int name ->
7522               let range =
7523                 let min = "(-(2LL<<30))"
7524                 and max = "((2LL<<30)-1)"
7525                 and comment =
7526                   "The Int type in the generator is a signed 31 bit int." in
7527                 Some (min, max, comment) in
7528               parse_integer "xstrtoll" "long long" "int" range name i
7529           | Int64 name ->
7530               parse_integer "xstrtoll" "long long" "int64_t" None name i
7531       ) (snd style);
7532
7533       (* Call C API function. *)
7534       let fn =
7535         try find_map (function FishAction n -> Some n | _ -> None) flags
7536         with Not_found -> sprintf "guestfs_%s" name in
7537       pr "  r = %s " fn;
7538       generate_c_call_args ~handle:"g" style;
7539       pr ";\n";
7540
7541       List.iter (
7542         function
7543         | Device name | String name
7544         | OptString name | Bool name
7545         | Int name | Int64 name -> ()
7546         | Pathname name | Dev_or_Path name | FileOut name ->
7547             pr "  free (%s);\n" name
7548         | FileIn name ->
7549             pr "  free_file_in (%s);\n" name
7550         | StringList name | DeviceList name ->
7551             pr "  free_strings (%s);\n" name
7552       ) (snd style);
7553
7554       (* Any output flags? *)
7555       let fish_output =
7556         let flags = filter_map (
7557           function FishOutput flag -> Some flag | _ -> None
7558         ) flags in
7559         match flags with
7560         | [] -> None
7561         | [f] -> Some f
7562         | _ ->
7563             failwithf "%s: more than one FishOutput flag is not allowed" name in
7564
7565       (* Check return value for errors and display command results. *)
7566       (match fst style with
7567        | RErr -> pr "  return r;\n"
7568        | RInt _ ->
7569            pr "  if (r == -1) return -1;\n";
7570            (match fish_output with
7571             | None ->
7572                 pr "  printf (\"%%d\\n\", r);\n";
7573             | Some FishOutputOctal ->
7574                 pr "  printf (\"%%s%%o\\n\", r != 0 ? \"0\" : \"\", r);\n";
7575             | Some FishOutputHexadecimal ->
7576                 pr "  printf (\"%%s%%x\\n\", r != 0 ? \"0x\" : \"\", r);\n");
7577            pr "  return 0;\n"
7578        | RInt64 _ ->
7579            pr "  if (r == -1) return -1;\n";
7580            (match fish_output with
7581             | None ->
7582                 pr "  printf (\"%%\" PRIi64 \"\\n\", r);\n";
7583             | Some FishOutputOctal ->
7584                 pr "  printf (\"%%s%%\" PRIo64 \"\\n\", r != 0 ? \"0\" : \"\", r);\n";
7585             | Some FishOutputHexadecimal ->
7586                 pr "  printf (\"%%s%%\" PRIx64 \"\\n\", r != 0 ? \"0x\" : \"\", r);\n");
7587            pr "  return 0;\n"
7588        | RBool _ ->
7589            pr "  if (r == -1) return -1;\n";
7590            pr "  if (r) printf (\"true\\n\"); else printf (\"false\\n\");\n";
7591            pr "  return 0;\n"
7592        | RConstString _ ->
7593            pr "  if (r == NULL) return -1;\n";
7594            pr "  printf (\"%%s\\n\", r);\n";
7595            pr "  return 0;\n"
7596        | RConstOptString _ ->
7597            pr "  printf (\"%%s\\n\", r ? : \"(null)\");\n";
7598            pr "  return 0;\n"
7599        | RString _ ->
7600            pr "  if (r == NULL) return -1;\n";
7601            pr "  printf (\"%%s\\n\", r);\n";
7602            pr "  free (r);\n";
7603            pr "  return 0;\n"
7604        | RStringList _ ->
7605            pr "  if (r == NULL) return -1;\n";
7606            pr "  print_strings (r);\n";
7607            pr "  free_strings (r);\n";
7608            pr "  return 0;\n"
7609        | RStruct (_, typ) ->
7610            pr "  if (r == NULL) return -1;\n";
7611            pr "  print_%s (r);\n" typ;
7612            pr "  guestfs_free_%s (r);\n" typ;
7613            pr "  return 0;\n"
7614        | RStructList (_, typ) ->
7615            pr "  if (r == NULL) return -1;\n";
7616            pr "  print_%s_list (r);\n" typ;
7617            pr "  guestfs_free_%s_list (r);\n" typ;
7618            pr "  return 0;\n"
7619        | RHashtable _ ->
7620            pr "  if (r == NULL) return -1;\n";
7621            pr "  print_table (r);\n";
7622            pr "  free_strings (r);\n";
7623            pr "  return 0;\n"
7624        | RBufferOut _ ->
7625            pr "  if (r == NULL) return -1;\n";
7626            pr "  if (full_write (1, r, size) != size) {\n";
7627            pr "    perror (\"write\");\n";
7628            pr "    free (r);\n";
7629            pr "    return -1;\n";
7630            pr "  }\n";
7631            pr "  free (r);\n";
7632            pr "  return 0;\n"
7633       );
7634       pr "}\n";
7635       pr "\n"
7636   ) all_functions;
7637
7638   (* run_action function *)
7639   pr "int run_action (const char *cmd, int argc, char *argv[])\n";
7640   pr "{\n";
7641   List.iter (
7642     fun (name, _, _, flags, _, _, _) ->
7643       let name2 = replace_char name '_' '-' in
7644       let alias =
7645         try find_map (function FishAlias n -> Some n | _ -> None) flags
7646         with Not_found -> name in
7647       pr "  if (";
7648       pr "STRCASEEQ (cmd, \"%s\")" name;
7649       if name <> name2 then
7650         pr " || STRCASEEQ (cmd, \"%s\")" name2;
7651       if name <> alias then
7652         pr " || STRCASEEQ (cmd, \"%s\")" alias;
7653       pr ")\n";
7654       pr "    return run_%s (cmd, argc, argv);\n" name;
7655       pr "  else\n";
7656   ) all_functions;
7657   pr "    {\n";
7658   pr "      fprintf (stderr, _(\"%%s: unknown command\\n\"), cmd);\n";
7659   pr "      if (command_num == 1)\n";
7660   pr "        extended_help_message ();\n";
7661   pr "      return -1;\n";
7662   pr "    }\n";
7663   pr "  return 0;\n";
7664   pr "}\n";
7665   pr "\n"
7666
7667 (* Readline completion for guestfish. *)
7668 and generate_fish_completion () =
7669   generate_header CStyle GPLv2plus;
7670
7671   let all_functions =
7672     List.filter (
7673       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
7674     ) all_functions in
7675
7676   pr "\
7677 #include <config.h>
7678
7679 #include <stdio.h>
7680 #include <stdlib.h>
7681 #include <string.h>
7682
7683 #ifdef HAVE_LIBREADLINE
7684 #include <readline/readline.h>
7685 #endif
7686
7687 #include \"fish.h\"
7688
7689 #ifdef HAVE_LIBREADLINE
7690
7691 static const char *const commands[] = {
7692   BUILTIN_COMMANDS_FOR_COMPLETION,
7693 ";
7694
7695   (* Get the commands, including the aliases.  They don't need to be
7696    * sorted - the generator() function just does a dumb linear search.
7697    *)
7698   let commands =
7699     List.map (
7700       fun (name, _, _, flags, _, _, _) ->
7701         let name2 = replace_char name '_' '-' in
7702         let alias =
7703           try find_map (function FishAlias n -> Some n | _ -> None) flags
7704           with Not_found -> name in
7705
7706         if name <> alias then [name2; alias] else [name2]
7707     ) all_functions in
7708   let commands = List.flatten commands in
7709
7710   List.iter (pr "  \"%s\",\n") commands;
7711
7712   pr "  NULL
7713 };
7714
7715 static char *
7716 generator (const char *text, int state)
7717 {
7718   static int index, len;
7719   const char *name;
7720
7721   if (!state) {
7722     index = 0;
7723     len = strlen (text);
7724   }
7725
7726   rl_attempted_completion_over = 1;
7727
7728   while ((name = commands[index]) != NULL) {
7729     index++;
7730     if (STRCASEEQLEN (name, text, len))
7731       return strdup (name);
7732   }
7733
7734   return NULL;
7735 }
7736
7737 #endif /* HAVE_LIBREADLINE */
7738
7739 #ifdef HAVE_RL_COMPLETION_MATCHES
7740 #define RL_COMPLETION_MATCHES rl_completion_matches
7741 #else
7742 #ifdef HAVE_COMPLETION_MATCHES
7743 #define RL_COMPLETION_MATCHES completion_matches
7744 #endif
7745 #endif /* else just fail if we don't have either symbol */
7746
7747 char **
7748 do_completion (const char *text, int start, int end)
7749 {
7750   char **matches = NULL;
7751
7752 #ifdef HAVE_LIBREADLINE
7753   rl_completion_append_character = ' ';
7754
7755   if (start == 0)
7756     matches = RL_COMPLETION_MATCHES (text, generator);
7757   else if (complete_dest_paths)
7758     matches = RL_COMPLETION_MATCHES (text, complete_dest_paths_generator);
7759 #endif
7760
7761   return matches;
7762 }
7763 ";
7764
7765 (* Generate the POD documentation for guestfish. *)
7766 and generate_fish_actions_pod () =
7767   let all_functions_sorted =
7768     List.filter (
7769       fun (_, _, _, flags, _, _, _) ->
7770         not (List.mem NotInFish flags || List.mem NotInDocs flags)
7771     ) all_functions_sorted in
7772
7773   let rex = Str.regexp "C<guestfs_\\([^>]+\\)>" in
7774
7775   List.iter (
7776     fun (name, style, _, flags, _, _, longdesc) ->
7777       let longdesc =
7778         Str.global_substitute rex (
7779           fun s ->
7780             let sub =
7781               try Str.matched_group 1 s
7782               with Not_found ->
7783                 failwithf "error substituting C<guestfs_...> in longdesc of function %s" name in
7784             "C<" ^ replace_char sub '_' '-' ^ ">"
7785         ) longdesc in
7786       let name = replace_char name '_' '-' in
7787       let alias =
7788         try find_map (function FishAlias n -> Some n | _ -> None) flags
7789         with Not_found -> name in
7790
7791       pr "=head2 %s" name;
7792       if name <> alias then
7793         pr " | %s" alias;
7794       pr "\n";
7795       pr "\n";
7796       pr " %s" name;
7797       List.iter (
7798         function
7799         | Pathname n | Device n | Dev_or_Path n | String n -> pr " %s" n
7800         | OptString n -> pr " %s" n
7801         | StringList n | DeviceList n -> pr " '%s ...'" n
7802         | Bool _ -> pr " true|false"
7803         | Int n -> pr " %s" n
7804         | Int64 n -> pr " %s" n
7805         | FileIn n | FileOut n -> pr " (%s|-)" n
7806       ) (snd style);
7807       pr "\n";
7808       pr "\n";
7809       pr "%s\n\n" longdesc;
7810
7811       if List.exists (function FileIn _ | FileOut _ -> true
7812                       | _ -> false) (snd style) then
7813         pr "Use C<-> instead of a filename to read/write from stdin/stdout.\n\n";
7814
7815       if List.mem ProtocolLimitWarning flags then
7816         pr "%s\n\n" protocol_limit_warning;
7817
7818       if List.mem DangerWillRobinson flags then
7819         pr "%s\n\n" danger_will_robinson;
7820
7821       match deprecation_notice flags with
7822       | None -> ()
7823       | Some txt -> pr "%s\n\n" txt
7824   ) all_functions_sorted
7825
7826 (* Generate a C function prototype. *)
7827 and generate_prototype ?(extern = true) ?(static = false) ?(semicolon = true)
7828     ?(single_line = false) ?(newline = false) ?(in_daemon = false)
7829     ?(prefix = "")
7830     ?handle name style =
7831   if extern then pr "extern ";
7832   if static then pr "static ";
7833   (match fst style with
7834    | RErr -> pr "int "
7835    | RInt _ -> pr "int "
7836    | RInt64 _ -> pr "int64_t "
7837    | RBool _ -> pr "int "
7838    | RConstString _ | RConstOptString _ -> pr "const char *"
7839    | RString _ | RBufferOut _ -> pr "char *"
7840    | RStringList _ | RHashtable _ -> pr "char **"
7841    | RStruct (_, typ) ->
7842        if not in_daemon then pr "struct guestfs_%s *" typ
7843        else pr "guestfs_int_%s *" typ
7844    | RStructList (_, typ) ->
7845        if not in_daemon then pr "struct guestfs_%s_list *" typ
7846        else pr "guestfs_int_%s_list *" typ
7847   );
7848   let is_RBufferOut = match fst style with RBufferOut _ -> true | _ -> false in
7849   pr "%s%s (" prefix name;
7850   if handle = None && List.length (snd style) = 0 && not is_RBufferOut then
7851     pr "void"
7852   else (
7853     let comma = ref false in
7854     (match handle with
7855      | None -> ()
7856      | Some handle -> pr "guestfs_h *%s" handle; comma := true
7857     );
7858     let next () =
7859       if !comma then (
7860         if single_line then pr ", " else pr ",\n\t\t"
7861       );
7862       comma := true
7863     in
7864     List.iter (
7865       function
7866       | Pathname n
7867       | Device n | Dev_or_Path n
7868       | String n
7869       | OptString n ->
7870           next ();
7871           pr "const char *%s" n
7872       | StringList n | DeviceList n ->
7873           next ();
7874           pr "char *const *%s" n
7875       | Bool n -> next (); pr "int %s" n
7876       | Int n -> next (); pr "int %s" n
7877       | Int64 n -> next (); pr "int64_t %s" n
7878       | FileIn n
7879       | FileOut n ->
7880           if not in_daemon then (next (); pr "const char *%s" n)
7881     ) (snd style);
7882     if is_RBufferOut then (next (); pr "size_t *size_r");
7883   );
7884   pr ")";
7885   if semicolon then pr ";";
7886   if newline then pr "\n"
7887
7888 (* Generate C call arguments, eg "(handle, foo, bar)" *)
7889 and generate_c_call_args ?handle ?(decl = false) style =
7890   pr "(";
7891   let comma = ref false in
7892   let next () =
7893     if !comma then pr ", ";
7894     comma := true
7895   in
7896   (match handle with
7897    | None -> ()
7898    | Some handle -> pr "%s" handle; comma := true
7899   );
7900   List.iter (
7901     fun arg ->
7902       next ();
7903       pr "%s" (name_of_argt arg)
7904   ) (snd style);
7905   (* For RBufferOut calls, add implicit &size parameter. *)
7906   if not decl then (
7907     match fst style with
7908     | RBufferOut _ ->
7909         next ();
7910         pr "&size"
7911     | _ -> ()
7912   );
7913   pr ")"
7914
7915 (* Generate the OCaml bindings interface. *)
7916 and generate_ocaml_mli () =
7917   generate_header OCamlStyle LGPLv2plus;
7918
7919   pr "\
7920 (** For API documentation you should refer to the C API
7921     in the guestfs(3) manual page.  The OCaml API uses almost
7922     exactly the same calls. *)
7923
7924 type t
7925 (** A [guestfs_h] handle. *)
7926
7927 exception Error of string
7928 (** This exception is raised when there is an error. *)
7929
7930 exception Handle_closed of string
7931 (** This exception is raised if you use a {!Guestfs.t} handle
7932     after calling {!close} on it.  The string is the name of
7933     the function. *)
7934
7935 val create : unit -> t
7936 (** Create a {!Guestfs.t} handle. *)
7937
7938 val close : t -> unit
7939 (** Close the {!Guestfs.t} handle and free up all resources used
7940     by it immediately.
7941
7942     Handles are closed by the garbage collector when they become
7943     unreferenced, but callers can call this in order to provide
7944     predictable cleanup. *)
7945
7946 ";
7947   generate_ocaml_structure_decls ();
7948
7949   (* The actions. *)
7950   List.iter (
7951     fun (name, style, _, _, _, shortdesc, _) ->
7952       generate_ocaml_prototype name style;
7953       pr "(** %s *)\n" shortdesc;
7954       pr "\n"
7955   ) all_functions_sorted
7956
7957 (* Generate the OCaml bindings implementation. *)
7958 and generate_ocaml_ml () =
7959   generate_header OCamlStyle LGPLv2plus;
7960
7961   pr "\
7962 type t
7963
7964 exception Error of string
7965 exception Handle_closed of string
7966
7967 external create : unit -> t = \"ocaml_guestfs_create\"
7968 external close : t -> unit = \"ocaml_guestfs_close\"
7969
7970 (* Give the exceptions names, so they can be raised from the C code. *)
7971 let () =
7972   Callback.register_exception \"ocaml_guestfs_error\" (Error \"\");
7973   Callback.register_exception \"ocaml_guestfs_closed\" (Handle_closed \"\")
7974
7975 ";
7976
7977   generate_ocaml_structure_decls ();
7978
7979   (* The actions. *)
7980   List.iter (
7981     fun (name, style, _, _, _, shortdesc, _) ->
7982       generate_ocaml_prototype ~is_external:true name style;
7983   ) all_functions_sorted
7984
7985 (* Generate the OCaml bindings C implementation. *)
7986 and generate_ocaml_c () =
7987   generate_header CStyle LGPLv2plus;
7988
7989   pr "\
7990 #include <stdio.h>
7991 #include <stdlib.h>
7992 #include <string.h>
7993
7994 #include <caml/config.h>
7995 #include <caml/alloc.h>
7996 #include <caml/callback.h>
7997 #include <caml/fail.h>
7998 #include <caml/memory.h>
7999 #include <caml/mlvalues.h>
8000 #include <caml/signals.h>
8001
8002 #include <guestfs.h>
8003
8004 #include \"guestfs_c.h\"
8005
8006 /* Copy a hashtable of string pairs into an assoc-list.  We return
8007  * the list in reverse order, but hashtables aren't supposed to be
8008  * ordered anyway.
8009  */
8010 static CAMLprim value
8011 copy_table (char * const * argv)
8012 {
8013   CAMLparam0 ();
8014   CAMLlocal5 (rv, pairv, kv, vv, cons);
8015   int i;
8016
8017   rv = Val_int (0);
8018   for (i = 0; argv[i] != NULL; i += 2) {
8019     kv = caml_copy_string (argv[i]);
8020     vv = caml_copy_string (argv[i+1]);
8021     pairv = caml_alloc (2, 0);
8022     Store_field (pairv, 0, kv);
8023     Store_field (pairv, 1, vv);
8024     cons = caml_alloc (2, 0);
8025     Store_field (cons, 1, rv);
8026     rv = cons;
8027     Store_field (cons, 0, pairv);
8028   }
8029
8030   CAMLreturn (rv);
8031 }
8032
8033 ";
8034
8035   (* Struct copy functions. *)
8036
8037   let emit_ocaml_copy_list_function typ =
8038     pr "static CAMLprim value\n";
8039     pr "copy_%s_list (const struct guestfs_%s_list *%ss)\n" typ typ typ;
8040     pr "{\n";
8041     pr "  CAMLparam0 ();\n";
8042     pr "  CAMLlocal2 (rv, v);\n";
8043     pr "  unsigned int i;\n";
8044     pr "\n";
8045     pr "  if (%ss->len == 0)\n" typ;
8046     pr "    CAMLreturn (Atom (0));\n";
8047     pr "  else {\n";
8048     pr "    rv = caml_alloc (%ss->len, 0);\n" typ;
8049     pr "    for (i = 0; i < %ss->len; ++i) {\n" typ;
8050     pr "      v = copy_%s (&%ss->val[i]);\n" typ typ;
8051     pr "      caml_modify (&Field (rv, i), v);\n";
8052     pr "    }\n";
8053     pr "    CAMLreturn (rv);\n";
8054     pr "  }\n";
8055     pr "}\n";
8056     pr "\n";
8057   in
8058
8059   List.iter (
8060     fun (typ, cols) ->
8061       let has_optpercent_col =
8062         List.exists (function (_, FOptPercent) -> true | _ -> false) cols in
8063
8064       pr "static CAMLprim value\n";
8065       pr "copy_%s (const struct guestfs_%s *%s)\n" typ typ typ;
8066       pr "{\n";
8067       pr "  CAMLparam0 ();\n";
8068       if has_optpercent_col then
8069         pr "  CAMLlocal3 (rv, v, v2);\n"
8070       else
8071         pr "  CAMLlocal2 (rv, v);\n";
8072       pr "\n";
8073       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
8074       iteri (
8075         fun i col ->
8076           (match col with
8077            | name, FString ->
8078                pr "  v = caml_copy_string (%s->%s);\n" typ name
8079            | name, FBuffer ->
8080                pr "  v = caml_alloc_string (%s->%s_len);\n" typ name;
8081                pr "  memcpy (String_val (v), %s->%s, %s->%s_len);\n"
8082                  typ name typ name
8083            | name, FUUID ->
8084                pr "  v = caml_alloc_string (32);\n";
8085                pr "  memcpy (String_val (v), %s->%s, 32);\n" typ name
8086            | name, (FBytes|FInt64|FUInt64) ->
8087                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
8088            | name, (FInt32|FUInt32) ->
8089                pr "  v = caml_copy_int32 (%s->%s);\n" typ name
8090            | name, FOptPercent ->
8091                pr "  if (%s->%s >= 0) { /* Some %s */\n" typ name name;
8092                pr "    v2 = caml_copy_double (%s->%s);\n" typ name;
8093                pr "    v = caml_alloc (1, 0);\n";
8094                pr "    Store_field (v, 0, v2);\n";
8095                pr "  } else /* None */\n";
8096                pr "    v = Val_int (0);\n";
8097            | name, FChar ->
8098                pr "  v = Val_int (%s->%s);\n" typ name
8099           );
8100           pr "  Store_field (rv, %d, v);\n" i
8101       ) cols;
8102       pr "  CAMLreturn (rv);\n";
8103       pr "}\n";
8104       pr "\n";
8105   ) structs;
8106
8107   (* Emit a copy_TYPE_list function definition only if that function is used. *)
8108   List.iter (
8109     function
8110     | typ, (RStructListOnly | RStructAndList) ->
8111         (* generate the function for typ *)
8112         emit_ocaml_copy_list_function typ
8113     | typ, _ -> () (* empty *)
8114   ) (rstructs_used_by all_functions);
8115
8116   (* The wrappers. *)
8117   List.iter (
8118     fun (name, style, _, _, _, _, _) ->
8119       pr "/* Automatically generated wrapper for function\n";
8120       pr " * ";
8121       generate_ocaml_prototype name style;
8122       pr " */\n";
8123       pr "\n";
8124
8125       let params =
8126         "gv" :: List.map (fun arg -> name_of_argt arg ^ "v") (snd style) in
8127
8128       let needs_extra_vs =
8129         match fst style with RConstOptString _ -> true | _ -> false in
8130
8131       pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
8132       pr "CAMLprim value ocaml_guestfs_%s (value %s" name (List.hd params);
8133       List.iter (pr ", value %s") (List.tl params); pr ");\n";
8134       pr "\n";
8135
8136       pr "CAMLprim value\n";
8137       pr "ocaml_guestfs_%s (value %s" name (List.hd params);
8138       List.iter (pr ", value %s") (List.tl params);
8139       pr ")\n";
8140       pr "{\n";
8141
8142       (match params with
8143        | [p1; p2; p3; p4; p5] ->
8144            pr "  CAMLparam5 (%s);\n" (String.concat ", " params)
8145        | p1 :: p2 :: p3 :: p4 :: p5 :: rest ->
8146            pr "  CAMLparam5 (%s);\n" (String.concat ", " [p1; p2; p3; p4; p5]);
8147            pr "  CAMLxparam%d (%s);\n"
8148              (List.length rest) (String.concat ", " rest)
8149        | ps ->
8150            pr "  CAMLparam%d (%s);\n" (List.length ps) (String.concat ", " ps)
8151       );
8152       if not needs_extra_vs then
8153         pr "  CAMLlocal1 (rv);\n"
8154       else
8155         pr "  CAMLlocal3 (rv, v, v2);\n";
8156       pr "\n";
8157
8158       pr "  guestfs_h *g = Guestfs_val (gv);\n";
8159       pr "  if (g == NULL)\n";
8160       pr "    ocaml_guestfs_raise_closed (\"%s\");\n" name;
8161       pr "\n";
8162
8163       List.iter (
8164         function
8165         | Pathname n
8166         | Device n | Dev_or_Path n
8167         | String n
8168         | FileIn n
8169         | FileOut n ->
8170             pr "  const char *%s = String_val (%sv);\n" n n
8171         | OptString n ->
8172             pr "  const char *%s =\n" n;
8173             pr "    %sv != Val_int (0) ? String_val (Field (%sv, 0)) : NULL;\n"
8174               n n
8175         | StringList n | DeviceList n ->
8176             pr "  char **%s = ocaml_guestfs_strings_val (g, %sv);\n" n n
8177         | Bool n ->
8178             pr "  int %s = Bool_val (%sv);\n" n n
8179         | Int n ->
8180             pr "  int %s = Int_val (%sv);\n" n n
8181         | Int64 n ->
8182             pr "  int64_t %s = Int64_val (%sv);\n" n n
8183       ) (snd style);
8184       let error_code =
8185         match fst style with
8186         | RErr -> pr "  int r;\n"; "-1"
8187         | RInt _ -> pr "  int r;\n"; "-1"
8188         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
8189         | RBool _ -> pr "  int r;\n"; "-1"
8190         | RConstString _ | RConstOptString _ ->
8191             pr "  const char *r;\n"; "NULL"
8192         | RString _ -> pr "  char *r;\n"; "NULL"
8193         | RStringList _ ->
8194             pr "  int i;\n";
8195             pr "  char **r;\n";
8196             "NULL"
8197         | RStruct (_, typ) ->
8198             pr "  struct guestfs_%s *r;\n" typ; "NULL"
8199         | RStructList (_, typ) ->
8200             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
8201         | RHashtable _ ->
8202             pr "  int i;\n";
8203             pr "  char **r;\n";
8204             "NULL"
8205         | RBufferOut _ ->
8206             pr "  char *r;\n";
8207             pr "  size_t size;\n";
8208             "NULL" in
8209       pr "\n";
8210
8211       pr "  caml_enter_blocking_section ();\n";
8212       pr "  r = guestfs_%s " name;
8213       generate_c_call_args ~handle:"g" style;
8214       pr ";\n";
8215       pr "  caml_leave_blocking_section ();\n";
8216
8217       List.iter (
8218         function
8219         | StringList n | DeviceList n ->
8220             pr "  ocaml_guestfs_free_strings (%s);\n" n;
8221         | Pathname _ | Device _ | Dev_or_Path _ | String _ | OptString _
8222         | Bool _ | Int _ | Int64 _
8223         | FileIn _ | FileOut _ -> ()
8224       ) (snd style);
8225
8226       pr "  if (r == %s)\n" error_code;
8227       pr "    ocaml_guestfs_raise_error (g, \"%s\");\n" name;
8228       pr "\n";
8229
8230       (match fst style with
8231        | RErr -> pr "  rv = Val_unit;\n"
8232        | RInt _ -> pr "  rv = Val_int (r);\n"
8233        | RInt64 _ ->
8234            pr "  rv = caml_copy_int64 (r);\n"
8235        | RBool _ -> pr "  rv = Val_bool (r);\n"
8236        | RConstString _ ->
8237            pr "  rv = caml_copy_string (r);\n"
8238        | RConstOptString _ ->
8239            pr "  if (r) { /* Some string */\n";
8240            pr "    v = caml_alloc (1, 0);\n";
8241            pr "    v2 = caml_copy_string (r);\n";
8242            pr "    Store_field (v, 0, v2);\n";
8243            pr "  } else /* None */\n";
8244            pr "    v = Val_int (0);\n";
8245        | RString _ ->
8246            pr "  rv = caml_copy_string (r);\n";
8247            pr "  free (r);\n"
8248        | RStringList _ ->
8249            pr "  rv = caml_copy_string_array ((const char **) r);\n";
8250            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
8251            pr "  free (r);\n"
8252        | RStruct (_, typ) ->
8253            pr "  rv = copy_%s (r);\n" typ;
8254            pr "  guestfs_free_%s (r);\n" typ;
8255        | RStructList (_, typ) ->
8256            pr "  rv = copy_%s_list (r);\n" typ;
8257            pr "  guestfs_free_%s_list (r);\n" typ;
8258        | RHashtable _ ->
8259            pr "  rv = copy_table (r);\n";
8260            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
8261            pr "  free (r);\n";
8262        | RBufferOut _ ->
8263            pr "  rv = caml_alloc_string (size);\n";
8264            pr "  memcpy (String_val (rv), r, size);\n";
8265       );
8266
8267       pr "  CAMLreturn (rv);\n";
8268       pr "}\n";
8269       pr "\n";
8270
8271       if List.length params > 5 then (
8272         pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
8273         pr "CAMLprim value ";
8274         pr "ocaml_guestfs_%s_byte (value *argv, int argn);\n" name;
8275         pr "CAMLprim value\n";
8276         pr "ocaml_guestfs_%s_byte (value *argv, int argn)\n" name;
8277         pr "{\n";
8278         pr "  return ocaml_guestfs_%s (argv[0]" name;
8279         iteri (fun i _ -> pr ", argv[%d]" i) (List.tl params);
8280         pr ");\n";
8281         pr "}\n";
8282         pr "\n"
8283       )
8284   ) all_functions_sorted
8285
8286 and generate_ocaml_structure_decls () =
8287   List.iter (
8288     fun (typ, cols) ->
8289       pr "type %s = {\n" typ;
8290       List.iter (
8291         function
8292         | name, FString -> pr "  %s : string;\n" name
8293         | name, FBuffer -> pr "  %s : string;\n" name
8294         | name, FUUID -> pr "  %s : string;\n" name
8295         | name, (FBytes|FInt64|FUInt64) -> pr "  %s : int64;\n" name
8296         | name, (FInt32|FUInt32) -> pr "  %s : int32;\n" name
8297         | name, FChar -> pr "  %s : char;\n" name
8298         | name, FOptPercent -> pr "  %s : float option;\n" name
8299       ) cols;
8300       pr "}\n";
8301       pr "\n"
8302   ) structs
8303
8304 and generate_ocaml_prototype ?(is_external = false) name style =
8305   if is_external then pr "external " else pr "val ";
8306   pr "%s : t -> " name;
8307   List.iter (
8308     function
8309     | Pathname _ | Device _ | Dev_or_Path _ | String _ | FileIn _ | FileOut _ -> pr "string -> "
8310     | OptString _ -> pr "string option -> "
8311     | StringList _ | DeviceList _ -> pr "string array -> "
8312     | Bool _ -> pr "bool -> "
8313     | Int _ -> pr "int -> "
8314     | Int64 _ -> pr "int64 -> "
8315   ) (snd style);
8316   (match fst style with
8317    | RErr -> pr "unit" (* all errors are turned into exceptions *)
8318    | RInt _ -> pr "int"
8319    | RInt64 _ -> pr "int64"
8320    | RBool _ -> pr "bool"
8321    | RConstString _ -> pr "string"
8322    | RConstOptString _ -> pr "string option"
8323    | RString _ | RBufferOut _ -> pr "string"
8324    | RStringList _ -> pr "string array"
8325    | RStruct (_, typ) -> pr "%s" typ
8326    | RStructList (_, typ) -> pr "%s array" typ
8327    | RHashtable _ -> pr "(string * string) list"
8328   );
8329   if is_external then (
8330     pr " = ";
8331     if List.length (snd style) + 1 > 5 then
8332       pr "\"ocaml_guestfs_%s_byte\" " name;
8333     pr "\"ocaml_guestfs_%s\"" name
8334   );
8335   pr "\n"
8336
8337 (* Generate Perl xs code, a sort of crazy variation of C with macros. *)
8338 and generate_perl_xs () =
8339   generate_header CStyle LGPLv2plus;
8340
8341   pr "\
8342 #include \"EXTERN.h\"
8343 #include \"perl.h\"
8344 #include \"XSUB.h\"
8345
8346 #include <guestfs.h>
8347
8348 #ifndef PRId64
8349 #define PRId64 \"lld\"
8350 #endif
8351
8352 static SV *
8353 my_newSVll(long long val) {
8354 #ifdef USE_64_BIT_ALL
8355   return newSViv(val);
8356 #else
8357   char buf[100];
8358   int len;
8359   len = snprintf(buf, 100, \"%%\" PRId64, val);
8360   return newSVpv(buf, len);
8361 #endif
8362 }
8363
8364 #ifndef PRIu64
8365 #define PRIu64 \"llu\"
8366 #endif
8367
8368 static SV *
8369 my_newSVull(unsigned long long val) {
8370 #ifdef USE_64_BIT_ALL
8371   return newSVuv(val);
8372 #else
8373   char buf[100];
8374   int len;
8375   len = snprintf(buf, 100, \"%%\" PRIu64, val);
8376   return newSVpv(buf, len);
8377 #endif
8378 }
8379
8380 /* http://www.perlmonks.org/?node_id=680842 */
8381 static char **
8382 XS_unpack_charPtrPtr (SV *arg) {
8383   char **ret;
8384   AV *av;
8385   I32 i;
8386
8387   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
8388     croak (\"array reference expected\");
8389
8390   av = (AV *)SvRV (arg);
8391   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
8392   if (!ret)
8393     croak (\"malloc failed\");
8394
8395   for (i = 0; i <= av_len (av); i++) {
8396     SV **elem = av_fetch (av, i, 0);
8397
8398     if (!elem || !*elem)
8399       croak (\"missing element in list\");
8400
8401     ret[i] = SvPV_nolen (*elem);
8402   }
8403
8404   ret[i] = NULL;
8405
8406   return ret;
8407 }
8408
8409 MODULE = Sys::Guestfs  PACKAGE = Sys::Guestfs
8410
8411 PROTOTYPES: ENABLE
8412
8413 guestfs_h *
8414 _create ()
8415    CODE:
8416       RETVAL = guestfs_create ();
8417       if (!RETVAL)
8418         croak (\"could not create guestfs handle\");
8419       guestfs_set_error_handler (RETVAL, NULL, NULL);
8420  OUTPUT:
8421       RETVAL
8422
8423 void
8424 DESTROY (g)
8425       guestfs_h *g;
8426  PPCODE:
8427       guestfs_close (g);
8428
8429 ";
8430
8431   List.iter (
8432     fun (name, style, _, _, _, _, _) ->
8433       (match fst style with
8434        | RErr -> pr "void\n"
8435        | RInt _ -> pr "SV *\n"
8436        | RInt64 _ -> pr "SV *\n"
8437        | RBool _ -> pr "SV *\n"
8438        | RConstString _ -> pr "SV *\n"
8439        | RConstOptString _ -> pr "SV *\n"
8440        | RString _ -> pr "SV *\n"
8441        | RBufferOut _ -> pr "SV *\n"
8442        | RStringList _
8443        | RStruct _ | RStructList _
8444        | RHashtable _ ->
8445            pr "void\n" (* all lists returned implictly on the stack *)
8446       );
8447       (* Call and arguments. *)
8448       pr "%s " name;
8449       generate_c_call_args ~handle:"g" ~decl:true style;
8450       pr "\n";
8451       pr "      guestfs_h *g;\n";
8452       iteri (
8453         fun i ->
8454           function
8455           | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n ->
8456               pr "      char *%s;\n" n
8457           | OptString n ->
8458               (* http://www.perlmonks.org/?node_id=554277
8459                * Note that the implicit handle argument means we have
8460                * to add 1 to the ST(x) operator.
8461                *)
8462               pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n (i+1) (i+1)
8463           | StringList n | DeviceList n -> pr "      char **%s;\n" n
8464           | Bool n -> pr "      int %s;\n" n
8465           | Int n -> pr "      int %s;\n" n
8466           | Int64 n -> pr "      int64_t %s;\n" n
8467       ) (snd style);
8468
8469       let do_cleanups () =
8470         List.iter (
8471           function
8472           | Pathname _ | Device _ | Dev_or_Path _ | String _ | OptString _
8473           | Bool _ | Int _ | Int64 _
8474           | FileIn _ | FileOut _ -> ()
8475           | StringList n | DeviceList n -> pr "      free (%s);\n" n
8476         ) (snd style)
8477       in
8478
8479       (* Code. *)
8480       (match fst style with
8481        | RErr ->
8482            pr "PREINIT:\n";
8483            pr "      int r;\n";
8484            pr " PPCODE:\n";
8485            pr "      r = guestfs_%s " name;
8486            generate_c_call_args ~handle:"g" style;
8487            pr ";\n";
8488            do_cleanups ();
8489            pr "      if (r == -1)\n";
8490            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8491        | RInt n
8492        | RBool n ->
8493            pr "PREINIT:\n";
8494            pr "      int %s;\n" n;
8495            pr "   CODE:\n";
8496            pr "      %s = guestfs_%s " n name;
8497            generate_c_call_args ~handle:"g" style;
8498            pr ";\n";
8499            do_cleanups ();
8500            pr "      if (%s == -1)\n" n;
8501            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8502            pr "      RETVAL = newSViv (%s);\n" n;
8503            pr " OUTPUT:\n";
8504            pr "      RETVAL\n"
8505        | RInt64 n ->
8506            pr "PREINIT:\n";
8507            pr "      int64_t %s;\n" n;
8508            pr "   CODE:\n";
8509            pr "      %s = guestfs_%s " n name;
8510            generate_c_call_args ~handle:"g" style;
8511            pr ";\n";
8512            do_cleanups ();
8513            pr "      if (%s == -1)\n" n;
8514            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8515            pr "      RETVAL = my_newSVll (%s);\n" n;
8516            pr " OUTPUT:\n";
8517            pr "      RETVAL\n"
8518        | RConstString n ->
8519            pr "PREINIT:\n";
8520            pr "      const char *%s;\n" n;
8521            pr "   CODE:\n";
8522            pr "      %s = guestfs_%s " n name;
8523            generate_c_call_args ~handle:"g" style;
8524            pr ";\n";
8525            do_cleanups ();
8526            pr "      if (%s == NULL)\n" n;
8527            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8528            pr "      RETVAL = newSVpv (%s, 0);\n" n;
8529            pr " OUTPUT:\n";
8530            pr "      RETVAL\n"
8531        | RConstOptString n ->
8532            pr "PREINIT:\n";
8533            pr "      const char *%s;\n" n;
8534            pr "   CODE:\n";
8535            pr "      %s = guestfs_%s " n name;
8536            generate_c_call_args ~handle:"g" style;
8537            pr ";\n";
8538            do_cleanups ();
8539            pr "      if (%s == NULL)\n" n;
8540            pr "        RETVAL = &PL_sv_undef;\n";
8541            pr "      else\n";
8542            pr "        RETVAL = newSVpv (%s, 0);\n" n;
8543            pr " OUTPUT:\n";
8544            pr "      RETVAL\n"
8545        | RString n ->
8546            pr "PREINIT:\n";
8547            pr "      char *%s;\n" n;
8548            pr "   CODE:\n";
8549            pr "      %s = guestfs_%s " n name;
8550            generate_c_call_args ~handle:"g" style;
8551            pr ";\n";
8552            do_cleanups ();
8553            pr "      if (%s == NULL)\n" n;
8554            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8555            pr "      RETVAL = newSVpv (%s, 0);\n" n;
8556            pr "      free (%s);\n" n;
8557            pr " OUTPUT:\n";
8558            pr "      RETVAL\n"
8559        | RStringList n | RHashtable n ->
8560            pr "PREINIT:\n";
8561            pr "      char **%s;\n" n;
8562            pr "      int i, n;\n";
8563            pr " PPCODE:\n";
8564            pr "      %s = guestfs_%s " n name;
8565            generate_c_call_args ~handle:"g" style;
8566            pr ";\n";
8567            do_cleanups ();
8568            pr "      if (%s == NULL)\n" n;
8569            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8570            pr "      for (n = 0; %s[n] != NULL; ++n) /**/;\n" n;
8571            pr "      EXTEND (SP, n);\n";
8572            pr "      for (i = 0; i < n; ++i) {\n";
8573            pr "        PUSHs (sv_2mortal (newSVpv (%s[i], 0)));\n" n;
8574            pr "        free (%s[i]);\n" n;
8575            pr "      }\n";
8576            pr "      free (%s);\n" n;
8577        | RStruct (n, typ) ->
8578            let cols = cols_of_struct typ in
8579            generate_perl_struct_code typ cols name style n do_cleanups
8580        | RStructList (n, typ) ->
8581            let cols = cols_of_struct typ in
8582            generate_perl_struct_list_code typ cols name style n do_cleanups
8583        | RBufferOut n ->
8584            pr "PREINIT:\n";
8585            pr "      char *%s;\n" n;
8586            pr "      size_t size;\n";
8587            pr "   CODE:\n";
8588            pr "      %s = guestfs_%s " n name;
8589            generate_c_call_args ~handle:"g" style;
8590            pr ";\n";
8591            do_cleanups ();
8592            pr "      if (%s == NULL)\n" n;
8593            pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8594            pr "      RETVAL = newSVpvn (%s, size);\n" n;
8595            pr "      free (%s);\n" n;
8596            pr " OUTPUT:\n";
8597            pr "      RETVAL\n"
8598       );
8599
8600       pr "\n"
8601   ) all_functions
8602
8603 and generate_perl_struct_list_code typ cols name style n do_cleanups =
8604   pr "PREINIT:\n";
8605   pr "      struct guestfs_%s_list *%s;\n" typ n;
8606   pr "      int i;\n";
8607   pr "      HV *hv;\n";
8608   pr " PPCODE:\n";
8609   pr "      %s = guestfs_%s " n name;
8610   generate_c_call_args ~handle:"g" style;
8611   pr ";\n";
8612   do_cleanups ();
8613   pr "      if (%s == NULL)\n" n;
8614   pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8615   pr "      EXTEND (SP, %s->len);\n" n;
8616   pr "      for (i = 0; i < %s->len; ++i) {\n" n;
8617   pr "        hv = newHV ();\n";
8618   List.iter (
8619     function
8620     | name, FString ->
8621         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 0), 0);\n"
8622           name (String.length name) n name
8623     | name, FUUID ->
8624         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 32), 0);\n"
8625           name (String.length name) n name
8626     | name, FBuffer ->
8627         pr "        (void) hv_store (hv, \"%s\", %d, newSVpvn (%s->val[i].%s, %s->val[i].%s_len), 0);\n"
8628           name (String.length name) n name n name
8629     | name, (FBytes|FUInt64) ->
8630         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVull (%s->val[i].%s), 0);\n"
8631           name (String.length name) n name
8632     | name, FInt64 ->
8633         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVll (%s->val[i].%s), 0);\n"
8634           name (String.length name) n name
8635     | name, (FInt32|FUInt32) ->
8636         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
8637           name (String.length name) n name
8638     | name, FChar ->
8639         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (&%s->val[i].%s, 1), 0);\n"
8640           name (String.length name) n name
8641     | name, FOptPercent ->
8642         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
8643           name (String.length name) n name
8644   ) cols;
8645   pr "        PUSHs (sv_2mortal (newRV ((SV *) hv)));\n";
8646   pr "      }\n";
8647   pr "      guestfs_free_%s_list (%s);\n" typ n
8648
8649 and generate_perl_struct_code typ cols name style n do_cleanups =
8650   pr "PREINIT:\n";
8651   pr "      struct guestfs_%s *%s;\n" typ n;
8652   pr " PPCODE:\n";
8653   pr "      %s = guestfs_%s " n name;
8654   generate_c_call_args ~handle:"g" style;
8655   pr ";\n";
8656   do_cleanups ();
8657   pr "      if (%s == NULL)\n" n;
8658   pr "        croak (\"%%s\", guestfs_last_error (g));\n";
8659   pr "      EXTEND (SP, 2 * %d);\n" (List.length cols);
8660   List.iter (
8661     fun ((name, _) as col) ->
8662       pr "      PUSHs (sv_2mortal (newSVpv (\"%s\", 0)));\n" name;
8663
8664       match col with
8665       | name, FString ->
8666           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 0)));\n"
8667             n name
8668       | name, FBuffer ->
8669           pr "      PUSHs (sv_2mortal (newSVpvn (%s->%s, %s->%s_len)));\n"
8670             n name n name
8671       | name, FUUID ->
8672           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 32)));\n"
8673             n name
8674       | name, (FBytes|FUInt64) ->
8675           pr "      PUSHs (sv_2mortal (my_newSVull (%s->%s)));\n"
8676             n name
8677       | name, FInt64 ->
8678           pr "      PUSHs (sv_2mortal (my_newSVll (%s->%s)));\n"
8679             n name
8680       | name, (FInt32|FUInt32) ->
8681           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
8682             n name
8683       | name, FChar ->
8684           pr "      PUSHs (sv_2mortal (newSVpv (&%s->%s, 1)));\n"
8685             n name
8686       | name, FOptPercent ->
8687           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
8688             n name
8689   ) cols;
8690   pr "      free (%s);\n" n
8691
8692 (* Generate Sys/Guestfs.pm. *)
8693 and generate_perl_pm () =
8694   generate_header HashStyle LGPLv2plus;
8695
8696   pr "\
8697 =pod
8698
8699 =head1 NAME
8700
8701 Sys::Guestfs - Perl bindings for libguestfs
8702
8703 =head1 SYNOPSIS
8704
8705  use Sys::Guestfs;
8706
8707  my $h = Sys::Guestfs->new ();
8708  $h->add_drive ('guest.img');
8709  $h->launch ();
8710  $h->mount ('/dev/sda1', '/');
8711  $h->touch ('/hello');
8712  $h->sync ();
8713
8714 =head1 DESCRIPTION
8715
8716 The C<Sys::Guestfs> module provides a Perl XS binding to the
8717 libguestfs API for examining and modifying virtual machine
8718 disk images.
8719
8720 Amongst the things this is good for: making batch configuration
8721 changes to guests, getting disk used/free statistics (see also:
8722 virt-df), migrating between virtualization systems (see also:
8723 virt-p2v), performing partial backups, performing partial guest
8724 clones, cloning guests and changing registry/UUID/hostname info, and
8725 much else besides.
8726
8727 Libguestfs uses Linux kernel and qemu code, and can access any type of
8728 guest filesystem that Linux and qemu can, including but not limited
8729 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
8730 schemes, qcow, qcow2, vmdk.
8731
8732 Libguestfs provides ways to enumerate guest storage (eg. partitions,
8733 LVs, what filesystem is in each LV, etc.).  It can also run commands
8734 in the context of the guest.  Also you can access filesystems over
8735 FUSE.
8736
8737 See also L<Sys::Guestfs::Lib(3)> for a set of useful library
8738 functions for using libguestfs from Perl, including integration
8739 with libvirt.
8740
8741 =head1 ERRORS
8742
8743 All errors turn into calls to C<croak> (see L<Carp(3)>).
8744
8745 =head1 METHODS
8746
8747 =over 4
8748
8749 =cut
8750
8751 package Sys::Guestfs;
8752
8753 use strict;
8754 use warnings;
8755
8756 require XSLoader;
8757 XSLoader::load ('Sys::Guestfs');
8758
8759 =item $h = Sys::Guestfs->new ();
8760
8761 Create a new guestfs handle.
8762
8763 =cut
8764
8765 sub new {
8766   my $proto = shift;
8767   my $class = ref ($proto) || $proto;
8768
8769   my $self = Sys::Guestfs::_create ();
8770   bless $self, $class;
8771   return $self;
8772 }
8773
8774 ";
8775
8776   (* Actions.  We only need to print documentation for these as
8777    * they are pulled in from the XS code automatically.
8778    *)
8779   List.iter (
8780     fun (name, style, _, flags, _, _, longdesc) ->
8781       if not (List.mem NotInDocs flags) then (
8782         let longdesc = replace_str longdesc "C<guestfs_" "C<$h-E<gt>" in
8783         pr "=item ";
8784         generate_perl_prototype name style;
8785         pr "\n\n";
8786         pr "%s\n\n" longdesc;
8787         if List.mem ProtocolLimitWarning flags then
8788           pr "%s\n\n" protocol_limit_warning;
8789         if List.mem DangerWillRobinson flags then
8790           pr "%s\n\n" danger_will_robinson;
8791         match deprecation_notice flags with
8792         | None -> ()
8793         | Some txt -> pr "%s\n\n" txt
8794       )
8795   ) all_functions_sorted;
8796
8797   (* End of file. *)
8798   pr "\
8799 =cut
8800
8801 1;
8802
8803 =back
8804
8805 =head1 COPYRIGHT
8806
8807 Copyright (C) %s Red Hat Inc.
8808
8809 =head1 LICENSE
8810
8811 Please see the file COPYING.LIB for the full license.
8812
8813 =head1 SEE ALSO
8814
8815 L<guestfs(3)>,
8816 L<guestfish(1)>,
8817 L<http://libguestfs.org>,
8818 L<Sys::Guestfs::Lib(3)>.
8819
8820 =cut
8821 " copyright_years
8822
8823 and generate_perl_prototype name style =
8824   (match fst style with
8825    | RErr -> ()
8826    | RBool n
8827    | RInt n
8828    | RInt64 n
8829    | RConstString n
8830    | RConstOptString n
8831    | RString n
8832    | RBufferOut n -> pr "$%s = " n
8833    | RStruct (n,_)
8834    | RHashtable n -> pr "%%%s = " n
8835    | RStringList n
8836    | RStructList (n,_) -> pr "@%s = " n
8837   );
8838   pr "$h->%s (" name;
8839   let comma = ref false in
8840   List.iter (
8841     fun arg ->
8842       if !comma then pr ", ";
8843       comma := true;
8844       match arg with
8845       | Pathname n | Device n | Dev_or_Path n | String n
8846       | OptString n | Bool n | Int n | Int64 n | FileIn n | FileOut n ->
8847           pr "$%s" n
8848       | StringList n | DeviceList n ->
8849           pr "\\@%s" n
8850   ) (snd style);
8851   pr ");"
8852
8853 (* Generate Python C module. *)
8854 and generate_python_c () =
8855   generate_header CStyle LGPLv2plus;
8856
8857   pr "\
8858 #include <Python.h>
8859
8860 #include <stdio.h>
8861 #include <stdlib.h>
8862 #include <assert.h>
8863
8864 #include \"guestfs.h\"
8865
8866 typedef struct {
8867   PyObject_HEAD
8868   guestfs_h *g;
8869 } Pyguestfs_Object;
8870
8871 static guestfs_h *
8872 get_handle (PyObject *obj)
8873 {
8874   assert (obj);
8875   assert (obj != Py_None);
8876   return ((Pyguestfs_Object *) obj)->g;
8877 }
8878
8879 static PyObject *
8880 put_handle (guestfs_h *g)
8881 {
8882   assert (g);
8883   return
8884     PyCObject_FromVoidPtrAndDesc ((void *) g, (char *) \"guestfs_h\", NULL);
8885 }
8886
8887 /* This list should be freed (but not the strings) after use. */
8888 static char **
8889 get_string_list (PyObject *obj)
8890 {
8891   int i, len;
8892   char **r;
8893
8894   assert (obj);
8895
8896   if (!PyList_Check (obj)) {
8897     PyErr_SetString (PyExc_RuntimeError, \"expecting a list parameter\");
8898     return NULL;
8899   }
8900
8901   len = PyList_Size (obj);
8902   r = malloc (sizeof (char *) * (len+1));
8903   if (r == NULL) {
8904     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: out of memory\");
8905     return NULL;
8906   }
8907
8908   for (i = 0; i < len; ++i)
8909     r[i] = PyString_AsString (PyList_GetItem (obj, i));
8910   r[len] = NULL;
8911
8912   return r;
8913 }
8914
8915 static PyObject *
8916 put_string_list (char * const * const argv)
8917 {
8918   PyObject *list;
8919   int argc, i;
8920
8921   for (argc = 0; argv[argc] != NULL; ++argc)
8922     ;
8923
8924   list = PyList_New (argc);
8925   for (i = 0; i < argc; ++i)
8926     PyList_SetItem (list, i, PyString_FromString (argv[i]));
8927
8928   return list;
8929 }
8930
8931 static PyObject *
8932 put_table (char * const * const argv)
8933 {
8934   PyObject *list, *item;
8935   int argc, i;
8936
8937   for (argc = 0; argv[argc] != NULL; ++argc)
8938     ;
8939
8940   list = PyList_New (argc >> 1);
8941   for (i = 0; i < argc; i += 2) {
8942     item = PyTuple_New (2);
8943     PyTuple_SetItem (item, 0, PyString_FromString (argv[i]));
8944     PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1]));
8945     PyList_SetItem (list, i >> 1, item);
8946   }
8947
8948   return list;
8949 }
8950
8951 static void
8952 free_strings (char **argv)
8953 {
8954   int argc;
8955
8956   for (argc = 0; argv[argc] != NULL; ++argc)
8957     free (argv[argc]);
8958   free (argv);
8959 }
8960
8961 static PyObject *
8962 py_guestfs_create (PyObject *self, PyObject *args)
8963 {
8964   guestfs_h *g;
8965
8966   g = guestfs_create ();
8967   if (g == NULL) {
8968     PyErr_SetString (PyExc_RuntimeError,
8969                      \"guestfs.create: failed to allocate handle\");
8970     return NULL;
8971   }
8972   guestfs_set_error_handler (g, NULL, NULL);
8973   return put_handle (g);
8974 }
8975
8976 static PyObject *
8977 py_guestfs_close (PyObject *self, PyObject *args)
8978 {
8979   PyObject *py_g;
8980   guestfs_h *g;
8981
8982   if (!PyArg_ParseTuple (args, (char *) \"O:guestfs_close\", &py_g))
8983     return NULL;
8984   g = get_handle (py_g);
8985
8986   guestfs_close (g);
8987
8988   Py_INCREF (Py_None);
8989   return Py_None;
8990 }
8991
8992 ";
8993
8994   let emit_put_list_function typ =
8995     pr "static PyObject *\n";
8996     pr "put_%s_list (struct guestfs_%s_list *%ss)\n" typ typ typ;
8997     pr "{\n";
8998     pr "  PyObject *list;\n";
8999     pr "  int i;\n";
9000     pr "\n";
9001     pr "  list = PyList_New (%ss->len);\n" typ;
9002     pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
9003     pr "    PyList_SetItem (list, i, put_%s (&%ss->val[i]));\n" typ typ;
9004     pr "  return list;\n";
9005     pr "};\n";
9006     pr "\n"
9007   in
9008
9009   (* Structures, turned into Python dictionaries. *)
9010   List.iter (
9011     fun (typ, cols) ->
9012       pr "static PyObject *\n";
9013       pr "put_%s (struct guestfs_%s *%s)\n" typ typ typ;
9014       pr "{\n";
9015       pr "  PyObject *dict;\n";
9016       pr "\n";
9017       pr "  dict = PyDict_New ();\n";
9018       List.iter (
9019         function
9020         | name, FString ->
9021             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9022             pr "                        PyString_FromString (%s->%s));\n"
9023               typ name
9024         | name, FBuffer ->
9025             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9026             pr "                        PyString_FromStringAndSize (%s->%s, %s->%s_len));\n"
9027               typ name typ name
9028         | name, FUUID ->
9029             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9030             pr "                        PyString_FromStringAndSize (%s->%s, 32));\n"
9031               typ name
9032         | name, (FBytes|FUInt64) ->
9033             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9034             pr "                        PyLong_FromUnsignedLongLong (%s->%s));\n"
9035               typ name
9036         | name, FInt64 ->
9037             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9038             pr "                        PyLong_FromLongLong (%s->%s));\n"
9039               typ name
9040         | name, FUInt32 ->
9041             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9042             pr "                        PyLong_FromUnsignedLong (%s->%s));\n"
9043               typ name
9044         | name, FInt32 ->
9045             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9046             pr "                        PyLong_FromLong (%s->%s));\n"
9047               typ name
9048         | name, FOptPercent ->
9049             pr "  if (%s->%s >= 0)\n" typ name;
9050             pr "    PyDict_SetItemString (dict, \"%s\",\n" name;
9051             pr "                          PyFloat_FromDouble ((double) %s->%s));\n"
9052               typ name;
9053             pr "  else {\n";
9054             pr "    Py_INCREF (Py_None);\n";
9055             pr "    PyDict_SetItemString (dict, \"%s\", Py_None);\n" name;
9056             pr "  }\n"
9057         | name, FChar ->
9058             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
9059             pr "                        PyString_FromStringAndSize (&dirent->%s, 1));\n" name
9060       ) cols;
9061       pr "  return dict;\n";
9062       pr "};\n";
9063       pr "\n";
9064
9065   ) structs;
9066
9067   (* Emit a put_TYPE_list function definition only if that function is used. *)
9068   List.iter (
9069     function
9070     | typ, (RStructListOnly | RStructAndList) ->
9071         (* generate the function for typ *)
9072         emit_put_list_function typ
9073     | typ, _ -> () (* empty *)
9074   ) (rstructs_used_by all_functions);
9075
9076   (* Python wrapper functions. *)
9077   List.iter (
9078     fun (name, style, _, _, _, _, _) ->
9079       pr "static PyObject *\n";
9080       pr "py_guestfs_%s (PyObject *self, PyObject *args)\n" name;
9081       pr "{\n";
9082
9083       pr "  PyObject *py_g;\n";
9084       pr "  guestfs_h *g;\n";
9085       pr "  PyObject *py_r;\n";
9086
9087       let error_code =
9088         match fst style with
9089         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
9090         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
9091         | RConstString _ | RConstOptString _ ->
9092             pr "  const char *r;\n"; "NULL"
9093         | RString _ -> pr "  char *r;\n"; "NULL"
9094         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
9095         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
9096         | RStructList (_, typ) ->
9097             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
9098         | RBufferOut _ ->
9099             pr "  char *r;\n";
9100             pr "  size_t size;\n";
9101             "NULL" in
9102
9103       List.iter (
9104         function
9105         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n ->
9106             pr "  const char *%s;\n" n
9107         | OptString n -> pr "  const char *%s;\n" n
9108         | StringList n | DeviceList n ->
9109             pr "  PyObject *py_%s;\n" n;
9110             pr "  char **%s;\n" n
9111         | Bool n -> pr "  int %s;\n" n
9112         | Int n -> pr "  int %s;\n" n
9113         | Int64 n -> pr "  long long %s;\n" n
9114       ) (snd style);
9115
9116       pr "\n";
9117
9118       (* Convert the parameters. *)
9119       pr "  if (!PyArg_ParseTuple (args, (char *) \"O";
9120       List.iter (
9121         function
9122         | Pathname _ | Device _ | Dev_or_Path _ | String _ | FileIn _ | FileOut _ -> pr "s"
9123         | OptString _ -> pr "z"
9124         | StringList _ | DeviceList _ -> pr "O"
9125         | Bool _ -> pr "i" (* XXX Python has booleans? *)
9126         | Int _ -> pr "i"
9127         | Int64 _ -> pr "L" (* XXX Whoever thought it was a good idea to
9128                              * emulate C's int/long/long long in Python?
9129                              *)
9130       ) (snd style);
9131       pr ":guestfs_%s\",\n" name;
9132       pr "                         &py_g";
9133       List.iter (
9134         function
9135         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n -> pr ", &%s" n
9136         | OptString n -> pr ", &%s" n
9137         | StringList n | DeviceList n -> pr ", &py_%s" n
9138         | Bool n -> pr ", &%s" n
9139         | Int n -> pr ", &%s" n
9140         | Int64 n -> pr ", &%s" n
9141       ) (snd style);
9142
9143       pr "))\n";
9144       pr "    return NULL;\n";
9145
9146       pr "  g = get_handle (py_g);\n";
9147       List.iter (
9148         function
9149         | Pathname _ | Device _ | Dev_or_Path _ | String _
9150         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _ -> ()
9151         | StringList n | DeviceList n ->
9152             pr "  %s = get_string_list (py_%s);\n" n n;
9153             pr "  if (!%s) return NULL;\n" n
9154       ) (snd style);
9155
9156       pr "\n";
9157
9158       pr "  r = guestfs_%s " name;
9159       generate_c_call_args ~handle:"g" style;
9160       pr ";\n";
9161
9162       List.iter (
9163         function
9164         | Pathname _ | Device _ | Dev_or_Path _ | String _
9165         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _ -> ()
9166         | StringList n | DeviceList n ->
9167             pr "  free (%s);\n" n
9168       ) (snd style);
9169
9170       pr "  if (r == %s) {\n" error_code;
9171       pr "    PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g));\n";
9172       pr "    return NULL;\n";
9173       pr "  }\n";
9174       pr "\n";
9175
9176       (match fst style with
9177        | RErr ->
9178            pr "  Py_INCREF (Py_None);\n";
9179            pr "  py_r = Py_None;\n"
9180        | RInt _
9181        | RBool _ -> pr "  py_r = PyInt_FromLong ((long) r);\n"
9182        | RInt64 _ -> pr "  py_r = PyLong_FromLongLong (r);\n"
9183        | RConstString _ -> pr "  py_r = PyString_FromString (r);\n"
9184        | RConstOptString _ ->
9185            pr "  if (r)\n";
9186            pr "    py_r = PyString_FromString (r);\n";
9187            pr "  else {\n";
9188            pr "    Py_INCREF (Py_None);\n";
9189            pr "    py_r = Py_None;\n";
9190            pr "  }\n"
9191        | RString _ ->
9192            pr "  py_r = PyString_FromString (r);\n";
9193            pr "  free (r);\n"
9194        | RStringList _ ->
9195            pr "  py_r = put_string_list (r);\n";
9196            pr "  free_strings (r);\n"
9197        | RStruct (_, typ) ->
9198            pr "  py_r = put_%s (r);\n" typ;
9199            pr "  guestfs_free_%s (r);\n" typ
9200        | RStructList (_, typ) ->
9201            pr "  py_r = put_%s_list (r);\n" typ;
9202            pr "  guestfs_free_%s_list (r);\n" typ
9203        | RHashtable n ->
9204            pr "  py_r = put_table (r);\n";
9205            pr "  free_strings (r);\n"
9206        | RBufferOut _ ->
9207            pr "  py_r = PyString_FromStringAndSize (r, size);\n";
9208            pr "  free (r);\n"
9209       );
9210
9211       pr "  return py_r;\n";
9212       pr "}\n";
9213       pr "\n"
9214   ) all_functions;
9215
9216   (* Table of functions. *)
9217   pr "static PyMethodDef methods[] = {\n";
9218   pr "  { (char *) \"create\", py_guestfs_create, METH_VARARGS, NULL },\n";
9219   pr "  { (char *) \"close\", py_guestfs_close, METH_VARARGS, NULL },\n";
9220   List.iter (
9221     fun (name, _, _, _, _, _, _) ->
9222       pr "  { (char *) \"%s\", py_guestfs_%s, METH_VARARGS, NULL },\n"
9223         name name
9224   ) all_functions;
9225   pr "  { NULL, NULL, 0, NULL }\n";
9226   pr "};\n";
9227   pr "\n";
9228
9229   (* Init function. *)
9230   pr "\
9231 void
9232 initlibguestfsmod (void)
9233 {
9234   static int initialized = 0;
9235
9236   if (initialized) return;
9237   Py_InitModule ((char *) \"libguestfsmod\", methods);
9238   initialized = 1;
9239 }
9240 "
9241
9242 (* Generate Python module. *)
9243 and generate_python_py () =
9244   generate_header HashStyle LGPLv2plus;
9245
9246   pr "\
9247 u\"\"\"Python bindings for libguestfs
9248
9249 import guestfs
9250 g = guestfs.GuestFS ()
9251 g.add_drive (\"guest.img\")
9252 g.launch ()
9253 parts = g.list_partitions ()
9254
9255 The guestfs module provides a Python binding to the libguestfs API
9256 for examining and modifying virtual machine disk images.
9257
9258 Amongst the things this is good for: making batch configuration
9259 changes to guests, getting disk used/free statistics (see also:
9260 virt-df), migrating between virtualization systems (see also:
9261 virt-p2v), performing partial backups, performing partial guest
9262 clones, cloning guests and changing registry/UUID/hostname info, and
9263 much else besides.
9264
9265 Libguestfs uses Linux kernel and qemu code, and can access any type of
9266 guest filesystem that Linux and qemu can, including but not limited
9267 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
9268 schemes, qcow, qcow2, vmdk.
9269
9270 Libguestfs provides ways to enumerate guest storage (eg. partitions,
9271 LVs, what filesystem is in each LV, etc.).  It can also run commands
9272 in the context of the guest.  Also you can access filesystems over
9273 FUSE.
9274
9275 Errors which happen while using the API are turned into Python
9276 RuntimeError exceptions.
9277
9278 To create a guestfs handle you usually have to perform the following
9279 sequence of calls:
9280
9281 # Create the handle, call add_drive at least once, and possibly
9282 # several times if the guest has multiple block devices:
9283 g = guestfs.GuestFS ()
9284 g.add_drive (\"guest.img\")
9285
9286 # Launch the qemu subprocess and wait for it to become ready:
9287 g.launch ()
9288
9289 # Now you can issue commands, for example:
9290 logvols = g.lvs ()
9291
9292 \"\"\"
9293
9294 import libguestfsmod
9295
9296 class GuestFS:
9297     \"\"\"Instances of this class are libguestfs API handles.\"\"\"
9298
9299     def __init__ (self):
9300         \"\"\"Create a new libguestfs handle.\"\"\"
9301         self._o = libguestfsmod.create ()
9302
9303     def __del__ (self):
9304         libguestfsmod.close (self._o)
9305
9306 ";
9307
9308   List.iter (
9309     fun (name, style, _, flags, _, _, longdesc) ->
9310       pr "    def %s " name;
9311       generate_py_call_args ~handle:"self" (snd style);
9312       pr ":\n";
9313
9314       if not (List.mem NotInDocs flags) then (
9315         let doc = replace_str longdesc "C<guestfs_" "C<g." in
9316         let doc =
9317           match fst style with
9318           | RErr | RInt _ | RInt64 _ | RBool _
9319           | RConstOptString _ | RConstString _
9320           | RString _ | RBufferOut _ -> doc
9321           | RStringList _ ->
9322               doc ^ "\n\nThis function returns a list of strings."
9323           | RStruct (_, typ) ->
9324               doc ^ sprintf "\n\nThis function returns a dictionary, with keys matching the various fields in the guestfs_%s structure." typ
9325           | RStructList (_, typ) ->
9326               doc ^ sprintf "\n\nThis function returns a list of %ss.  Each %s is represented as a dictionary." typ typ
9327           | RHashtable _ ->
9328               doc ^ "\n\nThis function returns a dictionary." in
9329         let doc =
9330           if List.mem ProtocolLimitWarning flags then
9331             doc ^ "\n\n" ^ protocol_limit_warning
9332           else doc in
9333         let doc =
9334           if List.mem DangerWillRobinson flags then
9335             doc ^ "\n\n" ^ danger_will_robinson
9336           else doc in
9337         let doc =
9338           match deprecation_notice flags with
9339           | None -> doc
9340           | Some txt -> doc ^ "\n\n" ^ txt in
9341         let doc = pod2text ~width:60 name doc in
9342         let doc = List.map (fun line -> replace_str line "\\" "\\\\") doc in
9343         let doc = String.concat "\n        " doc in
9344         pr "        u\"\"\"%s\"\"\"\n" doc;
9345       );
9346       pr "        return libguestfsmod.%s " name;
9347       generate_py_call_args ~handle:"self._o" (snd style);
9348       pr "\n";
9349       pr "\n";
9350   ) all_functions
9351
9352 (* Generate Python call arguments, eg "(handle, foo, bar)" *)
9353 and generate_py_call_args ~handle args =
9354   pr "(%s" handle;
9355   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
9356   pr ")"
9357
9358 (* Useful if you need the longdesc POD text as plain text.  Returns a
9359  * list of lines.
9360  *
9361  * Because this is very slow (the slowest part of autogeneration),
9362  * we memoize the results.
9363  *)
9364 and pod2text ~width name longdesc =
9365   let key = width, name, longdesc in
9366   try Hashtbl.find pod2text_memo key
9367   with Not_found ->
9368     let filename, chan = Filename.open_temp_file "gen" ".tmp" in
9369     fprintf chan "=head1 %s\n\n%s\n" name longdesc;
9370     close_out chan;
9371     let cmd = sprintf "pod2text -w %d %s" width (Filename.quote filename) in
9372     let chan = open_process_in cmd in
9373     let lines = ref [] in
9374     let rec loop i =
9375       let line = input_line chan in
9376       if i = 1 then             (* discard the first line of output *)
9377         loop (i+1)
9378       else (
9379         let line = triml line in
9380         lines := line :: !lines;
9381         loop (i+1)
9382       ) in
9383     let lines = try loop 1 with End_of_file -> List.rev !lines in
9384     unlink filename;
9385     (match close_process_in chan with
9386      | WEXITED 0 -> ()
9387      | WEXITED i ->
9388          failwithf "pod2text: process exited with non-zero status (%d)" i
9389      | WSIGNALED i | WSTOPPED i ->
9390          failwithf "pod2text: process signalled or stopped by signal %d" i
9391     );
9392     Hashtbl.add pod2text_memo key lines;
9393     pod2text_memo_updated ();
9394     lines
9395
9396 (* Generate ruby bindings. *)
9397 and generate_ruby_c () =
9398   generate_header CStyle LGPLv2plus;
9399
9400   pr "\
9401 #include <stdio.h>
9402 #include <stdlib.h>
9403
9404 #include <ruby.h>
9405
9406 #include \"guestfs.h\"
9407
9408 #include \"extconf.h\"
9409
9410 /* For Ruby < 1.9 */
9411 #ifndef RARRAY_LEN
9412 #define RARRAY_LEN(r) (RARRAY((r))->len)
9413 #endif
9414
9415 static VALUE m_guestfs;                 /* guestfs module */
9416 static VALUE c_guestfs;                 /* guestfs_h handle */
9417 static VALUE e_Error;                   /* used for all errors */
9418
9419 static void ruby_guestfs_free (void *p)
9420 {
9421   if (!p) return;
9422   guestfs_close ((guestfs_h *) p);
9423 }
9424
9425 static VALUE ruby_guestfs_create (VALUE m)
9426 {
9427   guestfs_h *g;
9428
9429   g = guestfs_create ();
9430   if (!g)
9431     rb_raise (e_Error, \"failed to create guestfs handle\");
9432
9433   /* Don't print error messages to stderr by default. */
9434   guestfs_set_error_handler (g, NULL, NULL);
9435
9436   /* Wrap it, and make sure the close function is called when the
9437    * handle goes away.
9438    */
9439   return Data_Wrap_Struct (c_guestfs, NULL, ruby_guestfs_free, g);
9440 }
9441
9442 static VALUE ruby_guestfs_close (VALUE gv)
9443 {
9444   guestfs_h *g;
9445   Data_Get_Struct (gv, guestfs_h, g);
9446
9447   ruby_guestfs_free (g);
9448   DATA_PTR (gv) = NULL;
9449
9450   return Qnil;
9451 }
9452
9453 ";
9454
9455   List.iter (
9456     fun (name, style, _, _, _, _, _) ->
9457       pr "static VALUE ruby_guestfs_%s (VALUE gv" name;
9458       List.iter (fun arg -> pr ", VALUE %sv" (name_of_argt arg)) (snd style);
9459       pr ")\n";
9460       pr "{\n";
9461       pr "  guestfs_h *g;\n";
9462       pr "  Data_Get_Struct (gv, guestfs_h, g);\n";
9463       pr "  if (!g)\n";
9464       pr "    rb_raise (rb_eArgError, \"%%s: used handle after closing it\", \"%s\");\n"
9465         name;
9466       pr "\n";
9467
9468       List.iter (
9469         function
9470         | Pathname n | Device n | Dev_or_Path n | String n | FileIn n | FileOut n ->
9471             pr "  Check_Type (%sv, T_STRING);\n" n;
9472             pr "  const char *%s = StringValueCStr (%sv);\n" n n;
9473             pr "  if (!%s)\n" n;
9474             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
9475             pr "              \"%s\", \"%s\");\n" n name
9476         | OptString n ->
9477             pr "  const char *%s = !NIL_P (%sv) ? StringValueCStr (%sv) : NULL;\n" n n n
9478         | StringList n | DeviceList n ->
9479             pr "  char **%s;\n" n;
9480             pr "  Check_Type (%sv, T_ARRAY);\n" n;
9481             pr "  {\n";
9482             pr "    int i, len;\n";
9483             pr "    len = RARRAY_LEN (%sv);\n" n;
9484             pr "    %s = guestfs_safe_malloc (g, sizeof (char *) * (len+1));\n"
9485               n;
9486             pr "    for (i = 0; i < len; ++i) {\n";
9487             pr "      VALUE v = rb_ary_entry (%sv, i);\n" n;
9488             pr "      %s[i] = StringValueCStr (v);\n" n;
9489             pr "    }\n";
9490             pr "    %s[len] = NULL;\n" n;
9491             pr "  }\n";
9492         | Bool n ->
9493             pr "  int %s = RTEST (%sv);\n" n n
9494         | Int n ->
9495             pr "  int %s = NUM2INT (%sv);\n" n n
9496         | Int64 n ->
9497             pr "  long long %s = NUM2LL (%sv);\n" n n
9498       ) (snd style);
9499       pr "\n";
9500
9501       let error_code =
9502         match fst style with
9503         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
9504         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
9505         | RConstString _ | RConstOptString _ ->
9506             pr "  const char *r;\n"; "NULL"
9507         | RString _ -> pr "  char *r;\n"; "NULL"
9508         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
9509         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
9510         | RStructList (_, typ) ->
9511             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
9512         | RBufferOut _ ->
9513             pr "  char *r;\n";
9514             pr "  size_t size;\n";
9515             "NULL" in
9516       pr "\n";
9517
9518       pr "  r = guestfs_%s " name;
9519       generate_c_call_args ~handle:"g" style;
9520       pr ";\n";
9521
9522       List.iter (
9523         function
9524         | Pathname _ | Device _ | Dev_or_Path _ | String _
9525         | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ | Int64 _ -> ()
9526         | StringList n | DeviceList n ->
9527             pr "  free (%s);\n" n
9528       ) (snd style);
9529
9530       pr "  if (r == %s)\n" error_code;
9531       pr "    rb_raise (e_Error, \"%%s\", guestfs_last_error (g));\n";
9532       pr "\n";
9533
9534       (match fst style with
9535        | RErr ->
9536            pr "  return Qnil;\n"
9537        | RInt _ | RBool _ ->
9538            pr "  return INT2NUM (r);\n"
9539        | RInt64 _ ->
9540            pr "  return ULL2NUM (r);\n"
9541        | RConstString _ ->
9542            pr "  return rb_str_new2 (r);\n";
9543        | RConstOptString _ ->
9544            pr "  if (r)\n";
9545            pr "    return rb_str_new2 (r);\n";
9546            pr "  else\n";
9547            pr "    return Qnil;\n";
9548        | RString _ ->
9549            pr "  VALUE rv = rb_str_new2 (r);\n";
9550            pr "  free (r);\n";
9551            pr "  return rv;\n";
9552        | RStringList _ ->
9553            pr "  int i, len = 0;\n";
9554            pr "  for (i = 0; r[i] != NULL; ++i) len++;\n";
9555            pr "  VALUE rv = rb_ary_new2 (len);\n";
9556            pr "  for (i = 0; r[i] != NULL; ++i) {\n";
9557            pr "    rb_ary_push (rv, rb_str_new2 (r[i]));\n";
9558            pr "    free (r[i]);\n";
9559            pr "  }\n";
9560            pr "  free (r);\n";
9561            pr "  return rv;\n"
9562        | RStruct (_, typ) ->
9563            let cols = cols_of_struct typ in
9564            generate_ruby_struct_code typ cols
9565        | RStructList (_, typ) ->
9566            let cols = cols_of_struct typ in
9567            generate_ruby_struct_list_code typ cols
9568        | RHashtable _ ->
9569            pr "  VALUE rv = rb_hash_new ();\n";
9570            pr "  int i;\n";
9571            pr "  for (i = 0; r[i] != NULL; i+=2) {\n";
9572            pr "    rb_hash_aset (rv, rb_str_new2 (r[i]), rb_str_new2 (r[i+1]));\n";
9573            pr "    free (r[i]);\n";
9574            pr "    free (r[i+1]);\n";
9575            pr "  }\n";
9576            pr "  free (r);\n";
9577            pr "  return rv;\n"
9578        | RBufferOut _ ->
9579            pr "  VALUE rv = rb_str_new (r, size);\n";
9580            pr "  free (r);\n";
9581            pr "  return rv;\n";
9582       );
9583
9584       pr "}\n";
9585       pr "\n"
9586   ) all_functions;
9587
9588   pr "\
9589 /* Initialize the module. */
9590 void Init__guestfs ()
9591 {
9592   m_guestfs = rb_define_module (\"Guestfs\");
9593   c_guestfs = rb_define_class_under (m_guestfs, \"Guestfs\", rb_cObject);
9594   e_Error = rb_define_class_under (m_guestfs, \"Error\", rb_eStandardError);
9595
9596   rb_define_module_function (m_guestfs, \"create\", ruby_guestfs_create, 0);
9597   rb_define_method (c_guestfs, \"close\", ruby_guestfs_close, 0);
9598
9599 ";
9600   (* Define the rest of the methods. *)
9601   List.iter (
9602     fun (name, style, _, _, _, _, _) ->
9603       pr "  rb_define_method (c_guestfs, \"%s\",\n" name;
9604       pr "        ruby_guestfs_%s, %d);\n" name (List.length (snd style))
9605   ) all_functions;
9606
9607   pr "}\n"
9608
9609 (* Ruby code to return a struct. *)
9610 and generate_ruby_struct_code typ cols =
9611   pr "  VALUE rv = rb_hash_new ();\n";
9612   List.iter (
9613     function
9614     | name, FString ->
9615         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new2 (r->%s));\n" name name
9616     | name, FBuffer ->
9617         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, r->%s_len));\n" name name name
9618     | name, FUUID ->
9619         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, 32));\n" name name
9620     | name, (FBytes|FUInt64) ->
9621         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
9622     | name, FInt64 ->
9623         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), LL2NUM (r->%s));\n" name name
9624     | name, FUInt32 ->
9625         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), UINT2NUM (r->%s));\n" name name
9626     | name, FInt32 ->
9627         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), INT2NUM (r->%s));\n" name name
9628     | name, FOptPercent ->
9629         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_dbl2big (r->%s));\n" name name
9630     | name, FChar -> (* XXX wrong? *)
9631         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
9632   ) cols;
9633   pr "  guestfs_free_%s (r);\n" typ;
9634   pr "  return rv;\n"
9635
9636 (* Ruby code to return a struct list. *)
9637 and generate_ruby_struct_list_code typ cols =
9638   pr "  VALUE rv = rb_ary_new2 (r->len);\n";
9639   pr "  int i;\n";
9640   pr "  for (i = 0; i < r->len; ++i) {\n";
9641   pr "    VALUE hv = rb_hash_new ();\n";
9642   List.iter (
9643     function
9644     | name, FString ->
9645         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new2 (r->val[i].%s));\n" name name
9646     | name, FBuffer ->
9647         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
9648     | name, FUUID ->
9649         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, 32));\n" name name
9650     | name, (FBytes|FUInt64) ->
9651         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
9652     | name, FInt64 ->
9653         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), LL2NUM (r->val[i].%s));\n" name name
9654     | name, FUInt32 ->
9655         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), UINT2NUM (r->val[i].%s));\n" name name
9656     | name, FInt32 ->
9657         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), INT2NUM (r->val[i].%s));\n" name name
9658     | name, FOptPercent ->
9659         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_dbl2big (r->val[i].%s));\n" name name
9660     | name, FChar -> (* XXX wrong? *)
9661         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
9662   ) cols;
9663   pr "    rb_ary_push (rv, hv);\n";
9664   pr "  }\n";
9665   pr "  guestfs_free_%s_list (r);\n" typ;
9666   pr "  return rv;\n"
9667
9668 (* Generate Java bindings GuestFS.java file. *)
9669 and generate_java_java () =
9670   generate_header CStyle LGPLv2plus;
9671
9672   pr "\
9673 package com.redhat.et.libguestfs;
9674
9675 import java.util.HashMap;
9676 import com.redhat.et.libguestfs.LibGuestFSException;
9677 import com.redhat.et.libguestfs.PV;
9678 import com.redhat.et.libguestfs.VG;
9679 import com.redhat.et.libguestfs.LV;
9680 import com.redhat.et.libguestfs.Stat;
9681 import com.redhat.et.libguestfs.StatVFS;
9682 import com.redhat.et.libguestfs.IntBool;
9683 import com.redhat.et.libguestfs.Dirent;
9684
9685 /**
9686  * The GuestFS object is a libguestfs handle.
9687  *
9688  * @author rjones
9689  */
9690 public class GuestFS {
9691   // Load the native code.
9692   static {
9693     System.loadLibrary (\"guestfs_jni\");
9694   }
9695
9696   /**
9697    * The native guestfs_h pointer.
9698    */
9699   long g;
9700
9701   /**
9702    * Create a libguestfs handle.
9703    *
9704    * @throws LibGuestFSException
9705    */
9706   public GuestFS () throws LibGuestFSException
9707   {
9708     g = _create ();
9709   }
9710   private native long _create () throws LibGuestFSException;
9711
9712   /**
9713    * Close a libguestfs handle.
9714    *
9715    * You can also leave handles to be collected by the garbage
9716    * collector, but this method ensures that the resources used
9717    * by the handle are freed up immediately.  If you call any
9718    * other methods after closing the handle, you will get an
9719    * exception.
9720    *
9721    * @throws LibGuestFSException
9722    */
9723   public void close () throws LibGuestFSException
9724   {
9725     if (g != 0)
9726       _close (g);
9727     g = 0;
9728   }
9729   private native void _close (long g) throws LibGuestFSException;
9730
9731   public void finalize () throws LibGuestFSException
9732   {
9733     close ();
9734   }
9735
9736 ";
9737
9738   List.iter (
9739     fun (name, style, _, flags, _, shortdesc, longdesc) ->
9740       if not (List.mem NotInDocs flags); then (
9741         let doc = replace_str longdesc "C<guestfs_" "C<g." in
9742         let doc =
9743           if List.mem ProtocolLimitWarning flags then
9744             doc ^ "\n\n" ^ protocol_limit_warning
9745           else doc in
9746         let doc =
9747           if List.mem DangerWillRobinson flags then
9748             doc ^ "\n\n" ^ danger_will_robinson
9749           else doc in
9750         let doc =
9751           match deprecation_notice flags with
9752           | None -> doc
9753           | Some txt -> doc ^ "\n\n" ^ txt in
9754         let doc = pod2text ~width:60 name doc in
9755         let doc = List.map (            (* RHBZ#501883 *)
9756           function
9757           | "" -> "<p>"
9758           | nonempty -> nonempty
9759         ) doc in
9760         let doc = String.concat "\n   * " doc in
9761
9762         pr "  /**\n";
9763         pr "   * %s\n" shortdesc;
9764         pr "   * <p>\n";
9765         pr "   * %s\n" doc;
9766         pr "   * @throws LibGuestFSException\n";
9767         pr "   */\n";
9768         pr "  ";
9769       );
9770       generate_java_prototype ~public:true ~semicolon:false name style;
9771       pr "\n";
9772       pr "  {\n";
9773       pr "    if (g == 0)\n";
9774       pr "      throw new LibGuestFSException (\"%s: handle is closed\");\n"
9775         name;
9776       pr "    ";
9777       if fst style <> RErr then pr "return ";
9778       pr "_%s " name;
9779       generate_java_call_args ~handle:"g" (snd style);
9780       pr ";\n";
9781       pr "  }\n";
9782       pr "  ";
9783       generate_java_prototype ~privat:true ~native:true name style;
9784       pr "\n";
9785       pr "\n";
9786   ) all_functions;
9787
9788   pr "}\n"
9789
9790 (* Generate Java call arguments, eg "(handle, foo, bar)" *)
9791 and generate_java_call_args ~handle args =
9792   pr "(%s" handle;
9793   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
9794   pr ")"
9795
9796 and generate_java_prototype ?(public=false) ?(privat=false) ?(native=false)
9797     ?(semicolon=true) name style =
9798   if privat then pr "private ";
9799   if public then pr "public ";
9800   if native then pr "native ";
9801
9802   (* return type *)
9803   (match fst style with
9804    | RErr -> pr "void ";
9805    | RInt _ -> pr "int ";
9806    | RInt64 _ -> pr "long ";
9807    | RBool _ -> pr "boolean ";
9808    | RConstString _ | RConstOptString _ | RString _
9809    | RBufferOut _ -> pr "String ";
9810    | RStringList _ -> pr "String[] ";
9811    | RStruct (_, typ) ->
9812        let name = java_name_of_struct typ in
9813        pr "%s " name;
9814    | RStructList (_, typ) ->
9815        let name = java_name_of_struct typ in
9816        pr "%s[] " name;
9817    | RHashtable _ -> pr "HashMap<String,String> ";
9818   );
9819
9820   if native then pr "_%s " name else pr "%s " name;
9821   pr "(";
9822   let needs_comma = ref false in
9823   if native then (
9824     pr "long g";
9825     needs_comma := true
9826   );
9827
9828   (* args *)
9829   List.iter (
9830     fun arg ->
9831       if !needs_comma then pr ", ";
9832       needs_comma := true;
9833
9834       match arg with
9835       | Pathname n
9836       | Device n | Dev_or_Path n
9837       | String n
9838       | OptString n
9839       | FileIn n
9840       | FileOut n ->
9841           pr "String %s" n
9842       | StringList n | DeviceList n ->
9843           pr "String[] %s" n
9844       | Bool n ->
9845           pr "boolean %s" n
9846       | Int n ->
9847           pr "int %s" n
9848       | Int64 n ->
9849           pr "long %s" n
9850   ) (snd style);
9851
9852   pr ")\n";
9853   pr "    throws LibGuestFSException";
9854   if semicolon then pr ";"
9855
9856 and generate_java_struct jtyp cols () =
9857   generate_header CStyle LGPLv2plus;
9858
9859   pr "\
9860 package com.redhat.et.libguestfs;
9861
9862 /**
9863  * Libguestfs %s structure.
9864  *
9865  * @author rjones
9866  * @see GuestFS
9867  */
9868 public class %s {
9869 " jtyp jtyp;
9870
9871   List.iter (
9872     function
9873     | name, FString
9874     | name, FUUID
9875     | name, FBuffer -> pr "  public String %s;\n" name
9876     | name, (FBytes|FUInt64|FInt64) -> pr "  public long %s;\n" name
9877     | name, (FUInt32|FInt32) -> pr "  public int %s;\n" name
9878     | name, FChar -> pr "  public char %s;\n" name
9879     | name, FOptPercent ->
9880         pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
9881         pr "  public float %s;\n" name
9882   ) cols;
9883
9884   pr "}\n"
9885
9886 and generate_java_c () =
9887   generate_header CStyle LGPLv2plus;
9888
9889   pr "\
9890 #include <stdio.h>
9891 #include <stdlib.h>
9892 #include <string.h>
9893
9894 #include \"com_redhat_et_libguestfs_GuestFS.h\"
9895 #include \"guestfs.h\"
9896
9897 /* Note that this function returns.  The exception is not thrown
9898  * until after the wrapper function returns.
9899  */
9900 static void
9901 throw_exception (JNIEnv *env, const char *msg)
9902 {
9903   jclass cl;
9904   cl = (*env)->FindClass (env,
9905                           \"com/redhat/et/libguestfs/LibGuestFSException\");
9906   (*env)->ThrowNew (env, cl, msg);
9907 }
9908
9909 JNIEXPORT jlong JNICALL
9910 Java_com_redhat_et_libguestfs_GuestFS__1create
9911   (JNIEnv *env, jobject obj)
9912 {
9913   guestfs_h *g;
9914
9915   g = guestfs_create ();
9916   if (g == NULL) {
9917     throw_exception (env, \"GuestFS.create: failed to allocate handle\");
9918     return 0;
9919   }
9920   guestfs_set_error_handler (g, NULL, NULL);
9921   return (jlong) (long) g;
9922 }
9923
9924 JNIEXPORT void JNICALL
9925 Java_com_redhat_et_libguestfs_GuestFS__1close
9926   (JNIEnv *env, jobject obj, jlong jg)
9927 {
9928   guestfs_h *g = (guestfs_h *) (long) jg;
9929   guestfs_close (g);
9930 }
9931
9932 ";
9933
9934   List.iter (
9935     fun (name, style, _, _, _, _, _) ->
9936       pr "JNIEXPORT ";
9937       (match fst style with
9938        | RErr -> pr "void ";
9939        | RInt _ -> pr "jint ";
9940        | RInt64 _ -> pr "jlong ";
9941        | RBool _ -> pr "jboolean ";
9942        | RConstString _ | RConstOptString _ | RString _
9943        | RBufferOut _ -> pr "jstring ";
9944        | RStruct _ | RHashtable _ ->
9945            pr "jobject ";
9946        | RStringList _ | RStructList _ ->
9947            pr "jobjectArray ";
9948       );
9949       pr "JNICALL\n";
9950       pr "Java_com_redhat_et_libguestfs_GuestFS_";
9951       pr "%s" (replace_str ("_" ^ name) "_" "_1");
9952       pr "\n";
9953       pr "  (JNIEnv *env, jobject obj, jlong jg";
9954       List.iter (
9955         function
9956         | Pathname n
9957         | Device n | Dev_or_Path n
9958         | String n
9959         | OptString n
9960         | FileIn n
9961         | FileOut n ->
9962             pr ", jstring j%s" n
9963         | StringList n | DeviceList n ->
9964             pr ", jobjectArray j%s" n
9965         | Bool n ->
9966             pr ", jboolean j%s" n
9967         | Int n ->
9968             pr ", jint j%s" n
9969         | Int64 n ->
9970             pr ", jlong j%s" n
9971       ) (snd style);
9972       pr ")\n";
9973       pr "{\n";
9974       pr "  guestfs_h *g = (guestfs_h *) (long) jg;\n";
9975       let error_code, no_ret =
9976         match fst style with
9977         | RErr -> pr "  int r;\n"; "-1", ""
9978         | RBool _
9979         | RInt _ -> pr "  int r;\n"; "-1", "0"
9980         | RInt64 _ -> pr "  int64_t r;\n"; "-1", "0"
9981         | RConstString _ -> pr "  const char *r;\n"; "NULL", "NULL"
9982         | RConstOptString _ -> pr "  const char *r;\n"; "NULL", "NULL"
9983         | RString _ ->
9984             pr "  jstring jr;\n";
9985             pr "  char *r;\n"; "NULL", "NULL"
9986         | RStringList _ ->
9987             pr "  jobjectArray jr;\n";
9988             pr "  int r_len;\n";
9989             pr "  jclass cl;\n";
9990             pr "  jstring jstr;\n";
9991             pr "  char **r;\n"; "NULL", "NULL"
9992         | RStruct (_, typ) ->
9993             pr "  jobject jr;\n";
9994             pr "  jclass cl;\n";
9995             pr "  jfieldID fl;\n";
9996             pr "  struct guestfs_%s *r;\n" typ; "NULL", "NULL"
9997         | RStructList (_, typ) ->
9998             pr "  jobjectArray jr;\n";
9999             pr "  jclass cl;\n";
10000             pr "  jfieldID fl;\n";
10001             pr "  jobject jfl;\n";
10002             pr "  struct guestfs_%s_list *r;\n" typ; "NULL", "NULL"
10003         | RHashtable _ -> pr "  char **r;\n"; "NULL", "NULL"
10004         | RBufferOut _ ->
10005             pr "  jstring jr;\n";
10006             pr "  char *r;\n";
10007             pr "  size_t size;\n";
10008             "NULL", "NULL" in
10009       List.iter (
10010         function
10011         | Pathname n
10012         | Device n | Dev_or_Path n
10013         | String n
10014         | OptString n
10015         | FileIn n
10016         | FileOut n ->
10017             pr "  const char *%s;\n" n
10018         | StringList n | DeviceList n ->
10019             pr "  int %s_len;\n" n;
10020             pr "  const char **%s;\n" n
10021         | Bool n
10022         | Int n ->
10023             pr "  int %s;\n" n
10024         | Int64 n ->
10025             pr "  int64_t %s;\n" n
10026       ) (snd style);
10027
10028       let needs_i =
10029         (match fst style with
10030          | RStringList _ | RStructList _ -> true
10031          | RErr | RBool _ | RInt _ | RInt64 _ | RConstString _
10032          | RConstOptString _
10033          | RString _ | RBufferOut _ | RStruct _ | RHashtable _ -> false) ||
10034           List.exists (function
10035                        | StringList _ -> true
10036                        | DeviceList _ -> true
10037                        | _ -> false) (snd style) in
10038       if needs_i then
10039         pr "  int i;\n";
10040
10041       pr "\n";
10042
10043       (* Get the parameters. *)
10044       List.iter (
10045         function
10046         | Pathname n
10047         | Device n | Dev_or_Path n
10048         | String n
10049         | FileIn n
10050         | FileOut n ->
10051             pr "  %s = (*env)->GetStringUTFChars (env, j%s, NULL);\n" n n
10052         | OptString n ->
10053             (* This is completely undocumented, but Java null becomes
10054              * a NULL parameter.
10055              *)
10056             pr "  %s = j%s ? (*env)->GetStringUTFChars (env, j%s, NULL) : NULL;\n" n n n
10057         | StringList n | DeviceList n ->
10058             pr "  %s_len = (*env)->GetArrayLength (env, j%s);\n" n n;
10059             pr "  %s = guestfs_safe_malloc (g, sizeof (char *) * (%s_len+1));\n" n n;
10060             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
10061             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
10062               n;
10063             pr "    %s[i] = (*env)->GetStringUTFChars (env, o, NULL);\n" n;
10064             pr "  }\n";
10065             pr "  %s[%s_len] = NULL;\n" n n;
10066         | Bool n
10067         | Int n
10068         | Int64 n ->
10069             pr "  %s = j%s;\n" n n
10070       ) (snd style);
10071
10072       (* Make the call. *)
10073       pr "  r = guestfs_%s " name;
10074       generate_c_call_args ~handle:"g" style;
10075       pr ";\n";
10076
10077       (* Release the parameters. *)
10078       List.iter (
10079         function
10080         | Pathname n
10081         | Device n | Dev_or_Path n
10082         | String n
10083         | FileIn n
10084         | FileOut n ->
10085             pr "  (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
10086         | OptString n ->
10087             pr "  if (j%s)\n" n;
10088             pr "    (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
10089         | StringList n | DeviceList n ->
10090             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
10091             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
10092               n;
10093             pr "    (*env)->ReleaseStringUTFChars (env, o, %s[i]);\n" n;
10094             pr "  }\n";
10095             pr "  free (%s);\n" n
10096         | Bool n
10097         | Int n
10098         | Int64 n -> ()
10099       ) (snd style);
10100
10101       (* Check for errors. *)
10102       pr "  if (r == %s) {\n" error_code;
10103       pr "    throw_exception (env, guestfs_last_error (g));\n";
10104       pr "    return %s;\n" no_ret;
10105       pr "  }\n";
10106
10107       (* Return value. *)
10108       (match fst style with
10109        | RErr -> ()
10110        | RInt _ -> pr "  return (jint) r;\n"
10111        | RBool _ -> pr "  return (jboolean) r;\n"
10112        | RInt64 _ -> pr "  return (jlong) r;\n"
10113        | RConstString _ -> pr "  return (*env)->NewStringUTF (env, r);\n"
10114        | RConstOptString _ ->
10115            pr "  return (*env)->NewStringUTF (env, r); /* XXX r NULL? */\n"
10116        | RString _ ->
10117            pr "  jr = (*env)->NewStringUTF (env, r);\n";
10118            pr "  free (r);\n";
10119            pr "  return jr;\n"
10120        | RStringList _ ->
10121            pr "  for (r_len = 0; r[r_len] != NULL; ++r_len) ;\n";
10122            pr "  cl = (*env)->FindClass (env, \"java/lang/String\");\n";
10123            pr "  jstr = (*env)->NewStringUTF (env, \"\");\n";
10124            pr "  jr = (*env)->NewObjectArray (env, r_len, cl, jstr);\n";
10125            pr "  for (i = 0; i < r_len; ++i) {\n";
10126            pr "    jstr = (*env)->NewStringUTF (env, r[i]);\n";
10127            pr "    (*env)->SetObjectArrayElement (env, jr, i, jstr);\n";
10128            pr "    free (r[i]);\n";
10129            pr "  }\n";
10130            pr "  free (r);\n";
10131            pr "  return jr;\n"
10132        | RStruct (_, typ) ->
10133            let jtyp = java_name_of_struct typ in
10134            let cols = cols_of_struct typ in
10135            generate_java_struct_return typ jtyp cols
10136        | RStructList (_, typ) ->
10137            let jtyp = java_name_of_struct typ in
10138            let cols = cols_of_struct typ in
10139            generate_java_struct_list_return typ jtyp cols
10140        | RHashtable _ ->
10141            (* XXX *)
10142            pr "  throw_exception (env, \"%s: internal error: please let us know how to make a Java HashMap from JNI bindings!\");\n" name;
10143            pr "  return NULL;\n"
10144        | RBufferOut _ ->
10145            pr "  jr = (*env)->NewStringUTF (env, r); /* XXX size */\n";
10146            pr "  free (r);\n";
10147            pr "  return jr;\n"
10148       );
10149
10150       pr "}\n";
10151       pr "\n"
10152   ) all_functions
10153
10154 and generate_java_struct_return typ jtyp cols =
10155   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
10156   pr "  jr = (*env)->AllocObject (env, cl);\n";
10157   List.iter (
10158     function
10159     | name, FString ->
10160         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10161         pr "  (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, r->%s));\n" name;
10162     | name, FUUID ->
10163         pr "  {\n";
10164         pr "    char s[33];\n";
10165         pr "    memcpy (s, r->%s, 32);\n" name;
10166         pr "    s[32] = 0;\n";
10167         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10168         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
10169         pr "  }\n";
10170     | name, FBuffer ->
10171         pr "  {\n";
10172         pr "    int len = r->%s_len;\n" name;
10173         pr "    char s[len+1];\n";
10174         pr "    memcpy (s, r->%s, len);\n" name;
10175         pr "    s[len] = 0;\n";
10176         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10177         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
10178         pr "  }\n";
10179     | name, (FBytes|FUInt64|FInt64) ->
10180         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
10181         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10182     | name, (FUInt32|FInt32) ->
10183         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
10184         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10185     | name, FOptPercent ->
10186         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
10187         pr "  (*env)->SetFloatField (env, jr, fl, r->%s);\n" name;
10188     | name, FChar ->
10189         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
10190         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
10191   ) cols;
10192   pr "  free (r);\n";
10193   pr "  return jr;\n"
10194
10195 and generate_java_struct_list_return typ jtyp cols =
10196   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
10197   pr "  jr = (*env)->NewObjectArray (env, r->len, cl, NULL);\n";
10198   pr "  for (i = 0; i < r->len; ++i) {\n";
10199   pr "    jfl = (*env)->AllocObject (env, cl);\n";
10200   List.iter (
10201     function
10202     | name, FString ->
10203         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10204         pr "    (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, r->val[i].%s));\n" name;
10205     | name, FUUID ->
10206         pr "    {\n";
10207         pr "      char s[33];\n";
10208         pr "      memcpy (s, r->val[i].%s, 32);\n" name;
10209         pr "      s[32] = 0;\n";
10210         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10211         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
10212         pr "    }\n";
10213     | name, FBuffer ->
10214         pr "    {\n";
10215         pr "      int len = r->val[i].%s_len;\n" name;
10216         pr "      char s[len+1];\n";
10217         pr "      memcpy (s, r->val[i].%s, len);\n" name;
10218         pr "      s[len] = 0;\n";
10219         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
10220         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
10221         pr "    }\n";
10222     | name, (FBytes|FUInt64|FInt64) ->
10223         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
10224         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10225     | name, (FUInt32|FInt32) ->
10226         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
10227         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10228     | name, FOptPercent ->
10229         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
10230         pr "    (*env)->SetFloatField (env, jfl, fl, r->val[i].%s);\n" name;
10231     | name, FChar ->
10232         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
10233         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
10234   ) cols;
10235   pr "    (*env)->SetObjectArrayElement (env, jfl, i, jfl);\n";
10236   pr "  }\n";
10237   pr "  guestfs_free_%s_list (r);\n" typ;
10238   pr "  return jr;\n"
10239
10240 and generate_java_makefile_inc () =
10241   generate_header HashStyle GPLv2plus;
10242
10243   pr "java_built_sources = \\\n";
10244   List.iter (
10245     fun (typ, jtyp) ->
10246         pr "\tcom/redhat/et/libguestfs/%s.java \\\n" jtyp;
10247   ) java_structs;
10248   pr "\tcom/redhat/et/libguestfs/GuestFS.java\n"
10249
10250 and generate_haskell_hs () =
10251   generate_header HaskellStyle LGPLv2plus;
10252
10253   (* XXX We only know how to generate partial FFI for Haskell
10254    * at the moment.  Please help out!
10255    *)
10256   let can_generate style =
10257     match style with
10258     | RErr, _
10259     | RInt _, _
10260     | RInt64 _, _ -> true
10261     | RBool _, _
10262     | RConstString _, _
10263     | RConstOptString _, _
10264     | RString _, _
10265     | RStringList _, _
10266     | RStruct _, _
10267     | RStructList _, _
10268     | RHashtable _, _
10269     | RBufferOut _, _ -> false in
10270
10271   pr "\
10272 {-# INCLUDE <guestfs.h> #-}
10273 {-# LANGUAGE ForeignFunctionInterface #-}
10274
10275 module Guestfs (
10276   create";
10277
10278   (* List out the names of the actions we want to export. *)
10279   List.iter (
10280     fun (name, style, _, _, _, _, _) ->
10281       if can_generate style then pr ",\n  %s" name
10282   ) all_functions;
10283
10284   pr "
10285   ) where
10286
10287 -- Unfortunately some symbols duplicate ones already present
10288 -- in Prelude.  We don't know which, so we hard-code a list
10289 -- here.
10290 import Prelude hiding (truncate)
10291
10292 import Foreign
10293 import Foreign.C
10294 import Foreign.C.Types
10295 import IO
10296 import Control.Exception
10297 import Data.Typeable
10298
10299 data GuestfsS = GuestfsS            -- represents the opaque C struct
10300 type GuestfsP = Ptr GuestfsS        -- guestfs_h *
10301 type GuestfsH = ForeignPtr GuestfsS -- guestfs_h * with attached finalizer
10302
10303 -- XXX define properly later XXX
10304 data PV = PV
10305 data VG = VG
10306 data LV = LV
10307 data IntBool = IntBool
10308 data Stat = Stat
10309 data StatVFS = StatVFS
10310 data Hashtable = Hashtable
10311
10312 foreign import ccall unsafe \"guestfs_create\" c_create
10313   :: IO GuestfsP
10314 foreign import ccall unsafe \"&guestfs_close\" c_close
10315   :: FunPtr (GuestfsP -> IO ())
10316 foreign import ccall unsafe \"guestfs_set_error_handler\" c_set_error_handler
10317   :: GuestfsP -> Ptr CInt -> Ptr CInt -> IO ()
10318
10319 create :: IO GuestfsH
10320 create = do
10321   p <- c_create
10322   c_set_error_handler p nullPtr nullPtr
10323   h <- newForeignPtr c_close p
10324   return h
10325
10326 foreign import ccall unsafe \"guestfs_last_error\" c_last_error
10327   :: GuestfsP -> IO CString
10328
10329 -- last_error :: GuestfsH -> IO (Maybe String)
10330 -- last_error h = do
10331 --   str <- withForeignPtr h (\\p -> c_last_error p)
10332 --   maybePeek peekCString str
10333
10334 last_error :: GuestfsH -> IO (String)
10335 last_error h = do
10336   str <- withForeignPtr h (\\p -> c_last_error p)
10337   if (str == nullPtr)
10338     then return \"no error\"
10339     else peekCString str
10340
10341 ";
10342
10343   (* Generate wrappers for each foreign function. *)
10344   List.iter (
10345     fun (name, style, _, _, _, _, _) ->
10346       if can_generate style then (
10347         pr "foreign import ccall unsafe \"guestfs_%s\" c_%s\n" name name;
10348         pr "  :: ";
10349         generate_haskell_prototype ~handle:"GuestfsP" style;
10350         pr "\n";
10351         pr "\n";
10352         pr "%s :: " name;
10353         generate_haskell_prototype ~handle:"GuestfsH" ~hs:true style;
10354         pr "\n";
10355         pr "%s %s = do\n" name
10356           (String.concat " " ("h" :: List.map name_of_argt (snd style)));
10357         pr "  r <- ";
10358         (* Convert pointer arguments using with* functions. *)
10359         List.iter (
10360           function
10361           | FileIn n
10362           | FileOut n
10363           | Pathname n | Device n | Dev_or_Path n | String n -> pr "withCString %s $ \\%s -> " n n
10364           | OptString n -> pr "maybeWith withCString %s $ \\%s -> " n n
10365           | StringList n | DeviceList n -> pr "withMany withCString %s $ \\%s -> withArray0 nullPtr %s $ \\%s -> " n n n n
10366           | Bool _ | Int _ | Int64 _ -> ()
10367         ) (snd style);
10368         (* Convert integer arguments. *)
10369         let args =
10370           List.map (
10371             function
10372             | Bool n -> sprintf "(fromBool %s)" n
10373             | Int n -> sprintf "(fromIntegral %s)" n
10374             | Int64 n -> sprintf "(fromIntegral %s)" n
10375             | FileIn n | FileOut n
10376             | Pathname n | Device n | Dev_or_Path n | String n | OptString n | StringList n | DeviceList n -> n
10377           ) (snd style) in
10378         pr "withForeignPtr h (\\p -> c_%s %s)\n" name
10379           (String.concat " " ("p" :: args));
10380         (match fst style with
10381          | RErr | RInt _ | RInt64 _ | RBool _ ->
10382              pr "  if (r == -1)\n";
10383              pr "    then do\n";
10384              pr "      err <- last_error h\n";
10385              pr "      fail err\n";
10386          | RConstString _ | RConstOptString _ | RString _
10387          | RStringList _ | RStruct _
10388          | RStructList _ | RHashtable _ | RBufferOut _ ->
10389              pr "  if (r == nullPtr)\n";
10390              pr "    then do\n";
10391              pr "      err <- last_error h\n";
10392              pr "      fail err\n";
10393         );
10394         (match fst style with
10395          | RErr ->
10396              pr "    else return ()\n"
10397          | RInt _ ->
10398              pr "    else return (fromIntegral r)\n"
10399          | RInt64 _ ->
10400              pr "    else return (fromIntegral r)\n"
10401          | RBool _ ->
10402              pr "    else return (toBool r)\n"
10403          | RConstString _
10404          | RConstOptString _
10405          | RString _
10406          | RStringList _
10407          | RStruct _
10408          | RStructList _
10409          | RHashtable _
10410          | RBufferOut _ ->
10411              pr "    else return ()\n" (* XXXXXXXXXXXXXXXXXXXX *)
10412         );
10413         pr "\n";
10414       )
10415   ) all_functions
10416
10417 and generate_haskell_prototype ~handle ?(hs = false) style =
10418   pr "%s -> " handle;
10419   let string = if hs then "String" else "CString" in
10420   let int = if hs then "Int" else "CInt" in
10421   let bool = if hs then "Bool" else "CInt" in
10422   let int64 = if hs then "Integer" else "Int64" in
10423   List.iter (
10424     fun arg ->
10425       (match arg with
10426        | Pathname _ | Device _ | Dev_or_Path _ | String _ -> pr "%s" string
10427        | OptString _ -> if hs then pr "Maybe String" else pr "CString"
10428        | StringList _ | DeviceList _ -> if hs then pr "[String]" else pr "Ptr CString"
10429        | Bool _ -> pr "%s" bool
10430        | Int _ -> pr "%s" int
10431        | Int64 _ -> pr "%s" int
10432        | FileIn _ -> pr "%s" string
10433        | FileOut _ -> pr "%s" string
10434       );
10435       pr " -> ";
10436   ) (snd style);
10437   pr "IO (";
10438   (match fst style with
10439    | RErr -> if not hs then pr "CInt"
10440    | RInt _ -> pr "%s" int
10441    | RInt64 _ -> pr "%s" int64
10442    | RBool _ -> pr "%s" bool
10443    | RConstString _ -> pr "%s" string
10444    | RConstOptString _ -> pr "Maybe %s" string
10445    | RString _ -> pr "%s" string
10446    | RStringList _ -> pr "[%s]" string
10447    | RStruct (_, typ) ->
10448        let name = java_name_of_struct typ in
10449        pr "%s" name
10450    | RStructList (_, typ) ->
10451        let name = java_name_of_struct typ in
10452        pr "[%s]" name
10453    | RHashtable _ -> pr "Hashtable"
10454    | RBufferOut _ -> pr "%s" string
10455   );
10456   pr ")"
10457
10458 and generate_csharp () =
10459   generate_header CPlusPlusStyle LGPLv2plus;
10460
10461   (* XXX Make this configurable by the C# assembly users. *)
10462   let library = "libguestfs.so.0" in
10463
10464   pr "\
10465 // These C# bindings are highly experimental at present.
10466 //
10467 // Firstly they only work on Linux (ie. Mono).  In order to get them
10468 // to work on Windows (ie. .Net) you would need to port the library
10469 // itself to Windows first.
10470 //
10471 // The second issue is that some calls are known to be incorrect and
10472 // can cause Mono to segfault.  Particularly: calls which pass or
10473 // return string[], or return any structure value.  This is because
10474 // we haven't worked out the correct way to do this from C#.
10475 //
10476 // The third issue is that when compiling you get a lot of warnings.
10477 // We are not sure whether the warnings are important or not.
10478 //
10479 // Fourthly we do not routinely build or test these bindings as part
10480 // of the make && make check cycle, which means that regressions might
10481 // go unnoticed.
10482 //
10483 // Suggestions and patches are welcome.
10484
10485 // To compile:
10486 //
10487 // gmcs Libguestfs.cs
10488 // mono Libguestfs.exe
10489 //
10490 // (You'll probably want to add a Test class / static main function
10491 // otherwise this won't do anything useful).
10492
10493 using System;
10494 using System.IO;
10495 using System.Runtime.InteropServices;
10496 using System.Runtime.Serialization;
10497 using System.Collections;
10498
10499 namespace Guestfs
10500 {
10501   class Error : System.ApplicationException
10502   {
10503     public Error (string message) : base (message) {}
10504     protected Error (SerializationInfo info, StreamingContext context) {}
10505   }
10506
10507   class Guestfs
10508   {
10509     IntPtr _handle;
10510
10511     [DllImport (\"%s\")]
10512     static extern IntPtr guestfs_create ();
10513
10514     public Guestfs ()
10515     {
10516       _handle = guestfs_create ();
10517       if (_handle == IntPtr.Zero)
10518         throw new Error (\"could not create guestfs handle\");
10519     }
10520
10521     [DllImport (\"%s\")]
10522     static extern void guestfs_close (IntPtr h);
10523
10524     ~Guestfs ()
10525     {
10526       guestfs_close (_handle);
10527     }
10528
10529     [DllImport (\"%s\")]
10530     static extern string guestfs_last_error (IntPtr h);
10531
10532 " library library library;
10533
10534   (* Generate C# structure bindings.  We prefix struct names with
10535    * underscore because C# cannot have conflicting struct names and
10536    * method names (eg. "class stat" and "stat").
10537    *)
10538   List.iter (
10539     fun (typ, cols) ->
10540       pr "    [StructLayout (LayoutKind.Sequential)]\n";
10541       pr "    public class _%s {\n" typ;
10542       List.iter (
10543         function
10544         | name, FChar -> pr "      char %s;\n" name
10545         | name, FString -> pr "      string %s;\n" name
10546         | name, FBuffer ->
10547             pr "      uint %s_len;\n" name;
10548             pr "      string %s;\n" name
10549         | name, FUUID ->
10550             pr "      [MarshalAs (UnmanagedType.ByValTStr, SizeConst=16)]\n";
10551             pr "      string %s;\n" name
10552         | name, FUInt32 -> pr "      uint %s;\n" name
10553         | name, FInt32 -> pr "      int %s;\n" name
10554         | name, (FUInt64|FBytes) -> pr "      ulong %s;\n" name
10555         | name, FInt64 -> pr "      long %s;\n" name
10556         | name, FOptPercent -> pr "      float %s; /* [0..100] or -1 */\n" name
10557       ) cols;
10558       pr "    }\n";
10559       pr "\n"
10560   ) structs;
10561
10562   (* Generate C# function bindings. *)
10563   List.iter (
10564     fun (name, style, _, _, _, shortdesc, _) ->
10565       let rec csharp_return_type () =
10566         match fst style with
10567         | RErr -> "void"
10568         | RBool n -> "bool"
10569         | RInt n -> "int"
10570         | RInt64 n -> "long"
10571         | RConstString n
10572         | RConstOptString n
10573         | RString n
10574         | RBufferOut n -> "string"
10575         | RStruct (_,n) -> "_" ^ n
10576         | RHashtable n -> "Hashtable"
10577         | RStringList n -> "string[]"
10578         | RStructList (_,n) -> sprintf "_%s[]" n
10579
10580       and c_return_type () =
10581         match fst style with
10582         | RErr
10583         | RBool _
10584         | RInt _ -> "int"
10585         | RInt64 _ -> "long"
10586         | RConstString _
10587         | RConstOptString _
10588         | RString _
10589         | RBufferOut _ -> "string"
10590         | RStruct (_,n) -> "_" ^ n
10591         | RHashtable _
10592         | RStringList _ -> "string[]"
10593         | RStructList (_,n) -> sprintf "_%s[]" n
10594
10595       and c_error_comparison () =
10596         match fst style with
10597         | RErr
10598         | RBool _
10599         | RInt _
10600         | RInt64 _ -> "== -1"
10601         | RConstString _
10602         | RConstOptString _
10603         | RString _
10604         | RBufferOut _
10605         | RStruct (_,_)
10606         | RHashtable _
10607         | RStringList _
10608         | RStructList (_,_) -> "== null"
10609
10610       and generate_extern_prototype () =
10611         pr "    static extern %s guestfs_%s (IntPtr h"
10612           (c_return_type ()) name;
10613         List.iter (
10614           function
10615           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
10616           | FileIn n | FileOut n ->
10617               pr ", [In] string %s" n
10618           | StringList n | DeviceList n ->
10619               pr ", [In] string[] %s" n
10620           | Bool n ->
10621               pr ", bool %s" n
10622           | Int n ->
10623               pr ", int %s" n
10624           | Int64 n ->
10625               pr ", long %s" n
10626         ) (snd style);
10627         pr ");\n"
10628
10629       and generate_public_prototype () =
10630         pr "    public %s %s (" (csharp_return_type ()) name;
10631         let comma = ref false in
10632         let next () =
10633           if !comma then pr ", ";
10634           comma := true
10635         in
10636         List.iter (
10637           function
10638           | Pathname n | Device n | Dev_or_Path n | String n | OptString n
10639           | FileIn n | FileOut n ->
10640               next (); pr "string %s" n
10641           | StringList n | DeviceList n ->
10642               next (); pr "string[] %s" n
10643           | Bool n ->
10644               next (); pr "bool %s" n
10645           | Int n ->
10646               next (); pr "int %s" n
10647           | Int64 n ->
10648               next (); pr "long %s" n
10649         ) (snd style);
10650         pr ")\n"
10651
10652       and generate_call () =
10653         pr "guestfs_%s (_handle" name;
10654         List.iter (fun arg -> pr ", %s" (name_of_argt arg)) (snd style);
10655         pr ");\n";
10656       in
10657
10658       pr "    [DllImport (\"%s\")]\n" library;
10659       generate_extern_prototype ();
10660       pr "\n";
10661       pr "    /// <summary>\n";
10662       pr "    /// %s\n" shortdesc;
10663       pr "    /// </summary>\n";
10664       generate_public_prototype ();
10665       pr "    {\n";
10666       pr "      %s r;\n" (c_return_type ());
10667       pr "      r = ";
10668       generate_call ();
10669       pr "      if (r %s)\n" (c_error_comparison ());
10670       pr "        throw new Error (guestfs_last_error (_handle));\n";
10671       (match fst style with
10672        | RErr -> ()
10673        | RBool _ ->
10674            pr "      return r != 0 ? true : false;\n"
10675        | RHashtable _ ->
10676            pr "      Hashtable rr = new Hashtable ();\n";
10677            pr "      for (int i = 0; i < r.Length; i += 2)\n";
10678            pr "        rr.Add (r[i], r[i+1]);\n";
10679            pr "      return rr;\n"
10680        | RInt _ | RInt64 _ | RConstString _ | RConstOptString _
10681        | RString _ | RBufferOut _ | RStruct _ | RStringList _
10682        | RStructList _ ->
10683            pr "      return r;\n"
10684       );
10685       pr "    }\n";
10686       pr "\n";
10687   ) all_functions_sorted;
10688
10689   pr "  }
10690 }
10691 "
10692
10693 and generate_bindtests () =
10694   generate_header CStyle LGPLv2plus;
10695
10696   pr "\
10697 #include <stdio.h>
10698 #include <stdlib.h>
10699 #include <inttypes.h>
10700 #include <string.h>
10701
10702 #include \"guestfs.h\"
10703 #include \"guestfs-internal.h\"
10704 #include \"guestfs-internal-actions.h\"
10705 #include \"guestfs_protocol.h\"
10706
10707 #define error guestfs_error
10708 #define safe_calloc guestfs_safe_calloc
10709 #define safe_malloc guestfs_safe_malloc
10710
10711 static void
10712 print_strings (char *const *argv)
10713 {
10714   int argc;
10715
10716   printf (\"[\");
10717   for (argc = 0; argv[argc] != NULL; ++argc) {
10718     if (argc > 0) printf (\", \");
10719     printf (\"\\\"%%s\\\"\", argv[argc]);
10720   }
10721   printf (\"]\\n\");
10722 }
10723
10724 /* The test0 function prints its parameters to stdout. */
10725 ";
10726
10727   let test0, tests =
10728     match test_functions with
10729     | [] -> assert false
10730     | test0 :: tests -> test0, tests in
10731
10732   let () =
10733     let (name, style, _, _, _, _, _) = test0 in
10734     generate_prototype ~extern:false ~semicolon:false ~newline:true
10735       ~handle:"g" ~prefix:"guestfs__" name style;
10736     pr "{\n";
10737     List.iter (
10738       function
10739       | Pathname n
10740       | Device n | Dev_or_Path n
10741       | String n
10742       | FileIn n
10743       | FileOut n -> pr "  printf (\"%%s\\n\", %s);\n" n
10744       | OptString n -> pr "  printf (\"%%s\\n\", %s ? %s : \"null\");\n" n n
10745       | StringList n | DeviceList n -> pr "  print_strings (%s);\n" n
10746       | Bool n -> pr "  printf (\"%%s\\n\", %s ? \"true\" : \"false\");\n" n
10747       | Int n -> pr "  printf (\"%%d\\n\", %s);\n" n
10748       | Int64 n -> pr "  printf (\"%%\" PRIi64 \"\\n\", %s);\n" n
10749     ) (snd style);
10750     pr "  /* Java changes stdout line buffering so we need this: */\n";
10751     pr "  fflush (stdout);\n";
10752     pr "  return 0;\n";
10753     pr "}\n";
10754     pr "\n" in
10755
10756   List.iter (
10757     fun (name, style, _, _, _, _, _) ->
10758       if String.sub name (String.length name - 3) 3 <> "err" then (
10759         pr "/* Test normal return. */\n";
10760         generate_prototype ~extern:false ~semicolon:false ~newline:true
10761           ~handle:"g" ~prefix:"guestfs__" name style;
10762         pr "{\n";
10763         (match fst style with
10764          | RErr ->
10765              pr "  return 0;\n"
10766          | RInt _ ->
10767              pr "  int r;\n";
10768              pr "  sscanf (val, \"%%d\", &r);\n";
10769              pr "  return r;\n"
10770          | RInt64 _ ->
10771              pr "  int64_t r;\n";
10772              pr "  sscanf (val, \"%%\" SCNi64, &r);\n";
10773              pr "  return r;\n"
10774          | RBool _ ->
10775              pr "  return STREQ (val, \"true\");\n"
10776          | RConstString _
10777          | RConstOptString _ ->
10778              (* Can't return the input string here.  Return a static
10779               * string so we ensure we get a segfault if the caller
10780               * tries to free it.
10781               *)
10782              pr "  return \"static string\";\n"
10783          | RString _ ->
10784              pr "  return strdup (val);\n"
10785          | RStringList _ ->
10786              pr "  char **strs;\n";
10787              pr "  int n, i;\n";
10788              pr "  sscanf (val, \"%%d\", &n);\n";
10789              pr "  strs = safe_malloc (g, (n+1) * sizeof (char *));\n";
10790              pr "  for (i = 0; i < n; ++i) {\n";
10791              pr "    strs[i] = safe_malloc (g, 16);\n";
10792              pr "    snprintf (strs[i], 16, \"%%d\", i);\n";
10793              pr "  }\n";
10794              pr "  strs[n] = NULL;\n";
10795              pr "  return strs;\n"
10796          | RStruct (_, typ) ->
10797              pr "  struct guestfs_%s *r;\n" typ;
10798              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
10799              pr "  return r;\n"
10800          | RStructList (_, typ) ->
10801              pr "  struct guestfs_%s_list *r;\n" typ;
10802              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
10803              pr "  sscanf (val, \"%%d\", &r->len);\n";
10804              pr "  r->val = safe_calloc (g, r->len, sizeof *r->val);\n";
10805              pr "  return r;\n"
10806          | RHashtable _ ->
10807              pr "  char **strs;\n";
10808              pr "  int n, i;\n";
10809              pr "  sscanf (val, \"%%d\", &n);\n";
10810              pr "  strs = safe_malloc (g, (n*2+1) * sizeof (*strs));\n";
10811              pr "  for (i = 0; i < n; ++i) {\n";
10812              pr "    strs[i*2] = safe_malloc (g, 16);\n";
10813              pr "    strs[i*2+1] = safe_malloc (g, 16);\n";
10814              pr "    snprintf (strs[i*2], 16, \"%%d\", i);\n";
10815              pr "    snprintf (strs[i*2+1], 16, \"%%d\", i);\n";
10816              pr "  }\n";
10817              pr "  strs[n*2] = NULL;\n";
10818              pr "  return strs;\n"
10819          | RBufferOut _ ->
10820              pr "  return strdup (val);\n"
10821         );
10822         pr "}\n";
10823         pr "\n"
10824       ) else (
10825         pr "/* Test error return. */\n";
10826         generate_prototype ~extern:false ~semicolon:false ~newline:true
10827           ~handle:"g" ~prefix:"guestfs__" name style;
10828         pr "{\n";
10829         pr "  error (g, \"error\");\n";
10830         (match fst style with
10831          | RErr | RInt _ | RInt64 _ | RBool _ ->
10832              pr "  return -1;\n"
10833          | RConstString _ | RConstOptString _
10834          | RString _ | RStringList _ | RStruct _
10835          | RStructList _
10836          | RHashtable _
10837          | RBufferOut _ ->
10838              pr "  return NULL;\n"
10839         );
10840         pr "}\n";
10841         pr "\n"
10842       )
10843   ) tests
10844
10845 and generate_ocaml_bindtests () =
10846   generate_header OCamlStyle GPLv2plus;
10847
10848   pr "\
10849 let () =
10850   let g = Guestfs.create () in
10851 ";
10852
10853   let mkargs args =
10854     String.concat " " (
10855       List.map (
10856         function
10857         | CallString s -> "\"" ^ s ^ "\""
10858         | CallOptString None -> "None"
10859         | CallOptString (Some s) -> sprintf "(Some \"%s\")" s
10860         | CallStringList xs ->
10861             "[|" ^ String.concat ";" (List.map (sprintf "\"%s\"") xs) ^ "|]"
10862         | CallInt i when i >= 0 -> string_of_int i
10863         | CallInt i (* when i < 0 *) -> "(" ^ string_of_int i ^ ")"
10864         | CallInt64 i when i >= 0L -> Int64.to_string i ^ "L"
10865         | CallInt64 i (* when i < 0L *) -> "(" ^ Int64.to_string i ^ "L)"
10866         | CallBool b -> string_of_bool b
10867       ) args
10868     )
10869   in
10870
10871   generate_lang_bindtests (
10872     fun f args -> pr "  Guestfs.%s g %s;\n" f (mkargs args)
10873   );
10874
10875   pr "print_endline \"EOF\"\n"
10876
10877 and generate_perl_bindtests () =
10878   pr "#!/usr/bin/perl -w\n";
10879   generate_header HashStyle GPLv2plus;
10880
10881   pr "\
10882 use strict;
10883
10884 use Sys::Guestfs;
10885
10886 my $g = Sys::Guestfs->new ();
10887 ";
10888
10889   let mkargs args =
10890     String.concat ", " (
10891       List.map (
10892         function
10893         | CallString s -> "\"" ^ s ^ "\""
10894         | CallOptString None -> "undef"
10895         | CallOptString (Some s) -> sprintf "\"%s\"" s
10896         | CallStringList xs ->
10897             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
10898         | CallInt i -> string_of_int i
10899         | CallInt64 i -> Int64.to_string i
10900         | CallBool b -> if b then "1" else "0"
10901       ) args
10902     )
10903   in
10904
10905   generate_lang_bindtests (
10906     fun f args -> pr "$g->%s (%s);\n" f (mkargs args)
10907   );
10908
10909   pr "print \"EOF\\n\"\n"
10910
10911 and generate_python_bindtests () =
10912   generate_header HashStyle GPLv2plus;
10913
10914   pr "\
10915 import guestfs
10916
10917 g = guestfs.GuestFS ()
10918 ";
10919
10920   let mkargs args =
10921     String.concat ", " (
10922       List.map (
10923         function
10924         | CallString s -> "\"" ^ s ^ "\""
10925         | CallOptString None -> "None"
10926         | CallOptString (Some s) -> sprintf "\"%s\"" s
10927         | CallStringList xs ->
10928             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
10929         | CallInt i -> string_of_int i
10930         | CallInt64 i -> Int64.to_string i
10931         | CallBool b -> if b then "1" else "0"
10932       ) args
10933     )
10934   in
10935
10936   generate_lang_bindtests (
10937     fun f args -> pr "g.%s (%s)\n" f (mkargs args)
10938   );
10939
10940   pr "print \"EOF\"\n"
10941
10942 and generate_ruby_bindtests () =
10943   generate_header HashStyle GPLv2plus;
10944
10945   pr "\
10946 require 'guestfs'
10947
10948 g = Guestfs::create()
10949 ";
10950
10951   let mkargs args =
10952     String.concat ", " (
10953       List.map (
10954         function
10955         | CallString s -> "\"" ^ s ^ "\""
10956         | CallOptString None -> "nil"
10957         | CallOptString (Some s) -> sprintf "\"%s\"" s
10958         | CallStringList xs ->
10959             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
10960         | CallInt i -> string_of_int i
10961         | CallInt64 i -> Int64.to_string i
10962         | CallBool b -> string_of_bool b
10963       ) args
10964     )
10965   in
10966
10967   generate_lang_bindtests (
10968     fun f args -> pr "g.%s(%s)\n" f (mkargs args)
10969   );
10970
10971   pr "print \"EOF\\n\"\n"
10972
10973 and generate_java_bindtests () =
10974   generate_header CStyle GPLv2plus;
10975
10976   pr "\
10977 import com.redhat.et.libguestfs.*;
10978
10979 public class Bindtests {
10980     public static void main (String[] argv)
10981     {
10982         try {
10983             GuestFS g = new GuestFS ();
10984 ";
10985
10986   let mkargs args =
10987     String.concat ", " (
10988       List.map (
10989         function
10990         | CallString s -> "\"" ^ s ^ "\""
10991         | CallOptString None -> "null"
10992         | CallOptString (Some s) -> sprintf "\"%s\"" s
10993         | CallStringList xs ->
10994             "new String[]{" ^
10995               String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "}"
10996         | CallInt i -> string_of_int i
10997         | CallInt64 i -> Int64.to_string i
10998         | CallBool b -> string_of_bool b
10999       ) args
11000     )
11001   in
11002
11003   generate_lang_bindtests (
11004     fun f args -> pr "            g.%s (%s);\n" f (mkargs args)
11005   );
11006
11007   pr "
11008             System.out.println (\"EOF\");
11009         }
11010         catch (Exception exn) {
11011             System.err.println (exn);
11012             System.exit (1);
11013         }
11014     }
11015 }
11016 "
11017
11018 and generate_haskell_bindtests () =
11019   generate_header HaskellStyle GPLv2plus;
11020
11021   pr "\
11022 module Bindtests where
11023 import qualified Guestfs
11024
11025 main = do
11026   g <- Guestfs.create
11027 ";
11028
11029   let mkargs args =
11030     String.concat " " (
11031       List.map (
11032         function
11033         | CallString s -> "\"" ^ s ^ "\""
11034         | CallOptString None -> "Nothing"
11035         | CallOptString (Some s) -> sprintf "(Just \"%s\")" s
11036         | CallStringList xs ->
11037             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
11038         | CallInt i when i < 0 -> "(" ^ string_of_int i ^ ")"
11039         | CallInt i -> string_of_int i
11040         | CallInt64 i when i < 0L -> "(" ^ Int64.to_string i ^ ")"
11041         | CallInt64 i -> Int64.to_string i
11042         | CallBool true -> "True"
11043         | CallBool false -> "False"
11044       ) args
11045     )
11046   in
11047
11048   generate_lang_bindtests (
11049     fun f args -> pr "  Guestfs.%s g %s\n" f (mkargs args)
11050   );
11051
11052   pr "  putStrLn \"EOF\"\n"
11053
11054 (* Language-independent bindings tests - we do it this way to
11055  * ensure there is parity in testing bindings across all languages.
11056  *)
11057 and generate_lang_bindtests call =
11058   call "test0" [CallString "abc"; CallOptString (Some "def");
11059                 CallStringList []; CallBool false;
11060                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
11061   call "test0" [CallString "abc"; CallOptString None;
11062                 CallStringList []; CallBool false;
11063                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
11064   call "test0" [CallString ""; CallOptString (Some "def");
11065                 CallStringList []; CallBool false;
11066                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
11067   call "test0" [CallString ""; CallOptString (Some "");
11068                 CallStringList []; CallBool false;
11069                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
11070   call "test0" [CallString "abc"; CallOptString (Some "def");
11071                 CallStringList ["1"]; CallBool false;
11072                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
11073   call "test0" [CallString "abc"; CallOptString (Some "def");
11074                 CallStringList ["1"; "2"]; CallBool false;
11075                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
11076   call "test0" [CallString "abc"; CallOptString (Some "def");
11077                 CallStringList ["1"]; CallBool true;
11078                 CallInt 0; CallInt64 0L; CallString "123"; CallString "456"];
11079   call "test0" [CallString "abc"; CallOptString (Some "def");
11080                 CallStringList ["1"]; CallBool false;
11081                 CallInt (-1); CallInt64 (-1L); CallString "123"; CallString "456"];
11082   call "test0" [CallString "abc"; CallOptString (Some "def");
11083                 CallStringList ["1"]; CallBool false;
11084                 CallInt (-2); CallInt64 (-2L); CallString "123"; CallString "456"];
11085   call "test0" [CallString "abc"; CallOptString (Some "def");
11086                 CallStringList ["1"]; CallBool false;
11087                 CallInt 1; CallInt64 1L; CallString "123"; CallString "456"];
11088   call "test0" [CallString "abc"; CallOptString (Some "def");
11089                 CallStringList ["1"]; CallBool false;
11090                 CallInt 2; CallInt64 2L; CallString "123"; CallString "456"];
11091   call "test0" [CallString "abc"; CallOptString (Some "def");
11092                 CallStringList ["1"]; CallBool false;
11093                 CallInt 4095; CallInt64 4095L; CallString "123"; CallString "456"];
11094   call "test0" [CallString "abc"; CallOptString (Some "def");
11095                 CallStringList ["1"]; CallBool false;
11096                 CallInt 0; CallInt64 0L; CallString ""; CallString ""]
11097
11098 (* XXX Add here tests of the return and error functions. *)
11099
11100 (* Code to generator bindings for virt-inspector.  Currently only
11101  * implemented for OCaml code (for virt-p2v 2.0).
11102  *)
11103 let rng_input = "inspector/virt-inspector.rng"
11104
11105 (* Read the input file and parse it into internal structures.  This is
11106  * by no means a complete RELAX NG parser, but is just enough to be
11107  * able to parse the specific input file.
11108  *)
11109 type rng =
11110   | Element of string * rng list        (* <element name=name/> *)
11111   | Attribute of string * rng list        (* <attribute name=name/> *)
11112   | Interleave of rng list                (* <interleave/> *)
11113   | ZeroOrMore of rng                        (* <zeroOrMore/> *)
11114   | OneOrMore of rng                        (* <oneOrMore/> *)
11115   | Optional of rng                        (* <optional/> *)
11116   | Choice of string list                (* <choice><value/>*</choice> *)
11117   | Value of string                        (* <value>str</value> *)
11118   | Text                                (* <text/> *)
11119
11120 let rec string_of_rng = function
11121   | Element (name, xs) ->
11122       "Element (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
11123   | Attribute (name, xs) ->
11124       "Attribute (\"" ^ name ^ "\", (" ^ string_of_rng_list xs ^ "))"
11125   | Interleave xs -> "Interleave (" ^ string_of_rng_list xs ^ ")"
11126   | ZeroOrMore rng -> "ZeroOrMore (" ^ string_of_rng rng ^ ")"
11127   | OneOrMore rng -> "OneOrMore (" ^ string_of_rng rng ^ ")"
11128   | Optional rng -> "Optional (" ^ string_of_rng rng ^ ")"
11129   | Choice values -> "Choice [" ^ String.concat ", " values ^ "]"
11130   | Value value -> "Value \"" ^ value ^ "\""
11131   | Text -> "Text"
11132
11133 and string_of_rng_list xs =
11134   String.concat ", " (List.map string_of_rng xs)
11135
11136 let rec parse_rng ?defines context = function
11137   | [] -> []
11138   | Xml.Element ("element", ["name", name], children) :: rest ->
11139       Element (name, parse_rng ?defines context children)
11140       :: parse_rng ?defines context rest
11141   | Xml.Element ("attribute", ["name", name], children) :: rest ->
11142       Attribute (name, parse_rng ?defines context children)
11143       :: parse_rng ?defines context rest
11144   | Xml.Element ("interleave", [], children) :: rest ->
11145       Interleave (parse_rng ?defines context children)
11146       :: parse_rng ?defines context rest
11147   | Xml.Element ("zeroOrMore", [], [child]) :: rest ->
11148       let rng = parse_rng ?defines context [child] in
11149       (match rng with
11150        | [child] -> ZeroOrMore child :: parse_rng ?defines context rest
11151        | _ ->
11152            failwithf "%s: <zeroOrMore> contains more than one child element"
11153              context
11154       )
11155   | Xml.Element ("oneOrMore", [], [child]) :: rest ->
11156       let rng = parse_rng ?defines context [child] in
11157       (match rng with
11158        | [child] -> OneOrMore child :: parse_rng ?defines context rest
11159        | _ ->
11160            failwithf "%s: <oneOrMore> contains more than one child element"
11161              context
11162       )
11163   | Xml.Element ("optional", [], [child]) :: rest ->
11164       let rng = parse_rng ?defines context [child] in
11165       (match rng with
11166        | [child] -> Optional child :: parse_rng ?defines context rest
11167        | _ ->
11168            failwithf "%s: <optional> contains more than one child element"
11169              context
11170       )
11171   | Xml.Element ("choice", [], children) :: rest ->
11172       let values = List.map (
11173         function Xml.Element ("value", [], [Xml.PCData value]) -> value
11174         | _ ->
11175             failwithf "%s: can't handle anything except <value> in <choice>"
11176               context
11177       ) children in
11178       Choice values
11179       :: parse_rng ?defines context rest
11180   | Xml.Element ("value", [], [Xml.PCData value]) :: rest ->
11181       Value value :: parse_rng ?defines context rest
11182   | Xml.Element ("text", [], []) :: rest ->
11183       Text :: parse_rng ?defines context rest
11184   | Xml.Element ("ref", ["name", name], []) :: rest ->
11185       (* Look up the reference.  Because of limitations in this parser,
11186        * we can't handle arbitrarily nested <ref> yet.  You can only
11187        * use <ref> from inside <start>.
11188        *)
11189       (match defines with
11190        | None ->
11191            failwithf "%s: contains <ref>, but no refs are defined yet" context
11192        | Some map ->
11193            let rng = StringMap.find name map in
11194            rng @ parse_rng ?defines context rest
11195       )
11196   | x :: _ ->
11197       failwithf "%s: can't handle '%s' in schema" context (Xml.to_string x)
11198
11199 let grammar =
11200   let xml = Xml.parse_file rng_input in
11201   match xml with
11202   | Xml.Element ("grammar", _,
11203                  Xml.Element ("start", _, gram) :: defines) ->
11204       (* The <define/> elements are referenced in the <start> section,
11205        * so build a map of those first.
11206        *)
11207       let defines = List.fold_left (
11208         fun map ->
11209           function Xml.Element ("define", ["name", name], defn) ->
11210             StringMap.add name defn map
11211           | _ ->
11212               failwithf "%s: expected <define name=name/>" rng_input
11213       ) StringMap.empty defines in
11214       let defines = StringMap.mapi parse_rng defines in
11215
11216       (* Parse the <start> clause, passing the defines. *)
11217       parse_rng ~defines "<start>" gram
11218   | _ ->
11219       failwithf "%s: input is not <grammar><start/><define>*</grammar>"
11220         rng_input
11221
11222 let name_of_field = function
11223   | Element (name, _) | Attribute (name, _)
11224   | ZeroOrMore (Element (name, _))
11225   | OneOrMore (Element (name, _))
11226   | Optional (Element (name, _)) -> name
11227   | Optional (Attribute (name, _)) -> name
11228   | Text -> (* an unnamed field in an element *)
11229       "data"
11230   | rng ->
11231       failwithf "name_of_field failed at: %s" (string_of_rng rng)
11232
11233 (* At the moment this function only generates OCaml types.  However we
11234  * should parameterize it later so it can generate types/structs in a
11235  * variety of languages.
11236  *)
11237 let generate_types xs =
11238   (* A simple type is one that can be printed out directly, eg.
11239    * "string option".  A complex type is one which has a name and has
11240    * to be defined via another toplevel definition, eg. a struct.
11241    *
11242    * generate_type generates code for either simple or complex types.
11243    * In the simple case, it returns the string ("string option").  In
11244    * the complex case, it returns the name ("mountpoint").  In the
11245    * complex case it has to print out the definition before returning,
11246    * so it should only be called when we are at the beginning of a
11247    * new line (BOL context).
11248    *)
11249   let rec generate_type = function
11250     | Text ->                                (* string *)
11251         "string", true
11252     | Choice values ->                        (* [`val1|`val2|...] *)
11253         "[" ^ String.concat "|" (List.map ((^)"`") values) ^ "]", true
11254     | ZeroOrMore rng ->                        (* <rng> list *)
11255         let t, is_simple = generate_type rng in
11256         t ^ " list (* 0 or more *)", is_simple
11257     | OneOrMore rng ->                        (* <rng> list *)
11258         let t, is_simple = generate_type rng in
11259         t ^ " list (* 1 or more *)", is_simple
11260                                         (* virt-inspector hack: bool *)
11261     | Optional (Attribute (name, [Value "1"])) ->
11262         "bool", true
11263     | Optional rng ->                        (* <rng> list *)
11264         let t, is_simple = generate_type rng in
11265         t ^ " option", is_simple
11266                                         (* type name = { fields ... } *)
11267     | Element (name, fields) when is_attrs_interleave fields ->
11268         generate_type_struct name (get_attrs_interleave fields)
11269     | Element (name, [field])                (* type name = field *)
11270     | Attribute (name, [field]) ->
11271         let t, is_simple = generate_type field in
11272         if is_simple then (t, true)
11273         else (
11274           pr "type %s = %s\n" name t;
11275           name, false
11276         )
11277     | Element (name, fields) ->              (* type name = { fields ... } *)
11278         generate_type_struct name fields
11279     | rng ->
11280         failwithf "generate_type failed at: %s" (string_of_rng rng)
11281
11282   and is_attrs_interleave = function
11283     | [Interleave _] -> true
11284     | Attribute _ :: fields -> is_attrs_interleave fields
11285     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
11286     | _ -> false
11287
11288   and get_attrs_interleave = function
11289     | [Interleave fields] -> fields
11290     | ((Attribute _) as field) :: fields
11291     | ((Optional (Attribute _)) as field) :: fields ->
11292         field :: get_attrs_interleave fields
11293     | _ -> assert false
11294
11295   and generate_types xs =
11296     List.iter (fun x -> ignore (generate_type x)) xs
11297
11298   and generate_type_struct name fields =
11299     (* Calculate the types of the fields first.  We have to do this
11300      * before printing anything so we are still in BOL context.
11301      *)
11302     let types = List.map fst (List.map generate_type fields) in
11303
11304     (* Special case of a struct containing just a string and another
11305      * field.  Turn it into an assoc list.
11306      *)
11307     match types with
11308     | ["string"; other] ->
11309         let fname1, fname2 =
11310           match fields with
11311           | [f1; f2] -> name_of_field f1, name_of_field f2
11312           | _ -> assert false in
11313         pr "type %s = string * %s (* %s -> %s *)\n" name other fname1 fname2;
11314         name, false
11315
11316     | types ->
11317         pr "type %s = {\n" name;
11318         List.iter (
11319           fun (field, ftype) ->
11320             let fname = name_of_field field in
11321             pr "  %s_%s : %s;\n" name fname ftype
11322         ) (List.combine fields types);
11323         pr "}\n";
11324         (* Return the name of this type, and
11325          * false because it's not a simple type.
11326          *)
11327         name, false
11328   in
11329
11330   generate_types xs
11331
11332 let generate_parsers xs =
11333   (* As for generate_type above, generate_parser makes a parser for
11334    * some type, and returns the name of the parser it has generated.
11335    * Because it (may) need to print something, it should always be
11336    * called in BOL context.
11337    *)
11338   let rec generate_parser = function
11339     | Text ->                                (* string *)
11340         "string_child_or_empty"
11341     | Choice values ->                        (* [`val1|`val2|...] *)
11342         sprintf "(fun x -> match Xml.pcdata (first_child x) with %s | str -> failwith (\"unexpected field value: \" ^ str))"
11343           (String.concat "|"
11344              (List.map (fun v -> sprintf "%S -> `%s" v v) values))
11345     | ZeroOrMore rng ->                        (* <rng> list *)
11346         let pa = generate_parser rng in
11347         sprintf "(fun x -> List.map %s (Xml.children x))" pa
11348     | OneOrMore rng ->                        (* <rng> list *)
11349         let pa = generate_parser rng in
11350         sprintf "(fun x -> List.map %s (Xml.children x))" pa
11351                                         (* virt-inspector hack: bool *)
11352     | Optional (Attribute (name, [Value "1"])) ->
11353         sprintf "(fun x -> try ignore (Xml.attrib x %S); true with Xml.No_attribute _ -> false)" name
11354     | Optional rng ->                        (* <rng> list *)
11355         let pa = generate_parser rng in
11356         sprintf "(function None -> None | Some x -> Some (%s x))" pa
11357                                         (* type name = { fields ... } *)
11358     | Element (name, fields) when is_attrs_interleave fields ->
11359         generate_parser_struct name (get_attrs_interleave fields)
11360     | Element (name, [field]) ->        (* type name = field *)
11361         let pa = generate_parser field in
11362         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
11363         pr "let %s =\n" parser_name;
11364         pr "  %s\n" pa;
11365         pr "let parse_%s = %s\n" name parser_name;
11366         parser_name
11367     | Attribute (name, [field]) ->
11368         let pa = generate_parser field in
11369         let parser_name = sprintf "parse_%s_%d" name (unique ()) in
11370         pr "let %s =\n" parser_name;
11371         pr "  %s\n" pa;
11372         pr "let parse_%s = %s\n" name parser_name;
11373         parser_name
11374     | Element (name, fields) ->              (* type name = { fields ... } *)
11375         generate_parser_struct name ([], fields)
11376     | rng ->
11377         failwithf "generate_parser failed at: %s" (string_of_rng rng)
11378
11379   and is_attrs_interleave = function
11380     | [Interleave _] -> true
11381     | Attribute _ :: fields -> is_attrs_interleave fields
11382     | Optional (Attribute _) :: fields -> is_attrs_interleave fields
11383     | _ -> false
11384
11385   and get_attrs_interleave = function
11386     | [Interleave fields] -> [], fields
11387     | ((Attribute _) as field) :: fields
11388     | ((Optional (Attribute _)) as field) :: fields ->
11389         let attrs, interleaves = get_attrs_interleave fields in
11390         (field :: attrs), interleaves
11391     | _ -> assert false
11392
11393   and generate_parsers xs =
11394     List.iter (fun x -> ignore (generate_parser x)) xs
11395
11396   and generate_parser_struct name (attrs, interleaves) =
11397     (* Generate parsers for the fields first.  We have to do this
11398      * before printing anything so we are still in BOL context.
11399      *)
11400     let fields = attrs @ interleaves in
11401     let pas = List.map generate_parser fields in
11402
11403     (* Generate an intermediate tuple from all the fields first.
11404      * If the type is just a string + another field, then we will
11405      * return this directly, otherwise it is turned into a record.
11406      *
11407      * RELAX NG note: This code treats <interleave> and plain lists of
11408      * fields the same.  In other words, it doesn't bother enforcing
11409      * any ordering of fields in the XML.
11410      *)
11411     pr "let parse_%s x =\n" name;
11412     pr "  let t = (\n    ";
11413     let comma = ref false in
11414     List.iter (
11415       fun x ->
11416         if !comma then pr ",\n    ";
11417         comma := true;
11418         match x with
11419         | Optional (Attribute (fname, [field])), pa ->
11420             pr "%s x" pa
11421         | Optional (Element (fname, [field])), pa ->
11422             pr "%s (optional_child %S x)" pa fname
11423         | Attribute (fname, [Text]), _ ->
11424             pr "attribute %S x" fname
11425         | (ZeroOrMore _ | OneOrMore _), pa ->
11426             pr "%s x" pa
11427         | Text, pa ->
11428             pr "%s x" pa
11429         | (field, pa) ->
11430             let fname = name_of_field field in
11431             pr "%s (child %S x)" pa fname
11432     ) (List.combine fields pas);
11433     pr "\n  ) in\n";
11434
11435     (match fields with
11436      | [Element (_, [Text]) | Attribute (_, [Text]); _] ->
11437          pr "  t\n"
11438
11439      | _ ->
11440          pr "  (Obj.magic t : %s)\n" name
11441 (*
11442          List.iter (
11443            function
11444            | (Optional (Attribute (fname, [field])), pa) ->
11445                pr "  %s_%s =\n" name fname;
11446                pr "    %s x;\n" pa
11447            | (Optional (Element (fname, [field])), pa) ->
11448                pr "  %s_%s =\n" name fname;
11449                pr "    (let x = optional_child %S x in\n" fname;
11450                pr "     %s x);\n" pa
11451            | (field, pa) ->
11452                let fname = name_of_field field in
11453                pr "  %s_%s =\n" name fname;
11454                pr "    (let x = child %S x in\n" fname;
11455                pr "     %s x);\n" pa
11456          ) (List.combine fields pas);
11457          pr "}\n"
11458 *)
11459     );
11460     sprintf "parse_%s" name
11461   in
11462
11463   generate_parsers xs
11464
11465 (* Generate ocaml/guestfs_inspector.mli. *)
11466 let generate_ocaml_inspector_mli () =
11467   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
11468
11469   pr "\
11470 (** This is an OCaml language binding to the external [virt-inspector]
11471     program.
11472
11473     For more information, please read the man page [virt-inspector(1)].
11474 *)
11475
11476 ";
11477
11478   generate_types grammar;
11479   pr "(** The nested information returned from the {!inspect} function. *)\n";
11480   pr "\n";
11481
11482   pr "\
11483 val inspect : ?connect:string -> ?xml:string -> string list -> operatingsystems
11484 (** To inspect a libvirt domain called [name], pass a singleton
11485     list: [inspect [name]].  When using libvirt only, you may
11486     optionally pass a libvirt URI using [inspect ~connect:uri ...].
11487
11488     To inspect a disk image or images, pass a list of the filenames
11489     of the disk images: [inspect filenames]
11490
11491     This function inspects the given guest or disk images and
11492     returns a list of operating system(s) found and a large amount
11493     of information about them.  In the vast majority of cases,
11494     a virtual machine only contains a single operating system.
11495
11496     If the optional [~xml] parameter is given, then this function
11497     skips running the external virt-inspector program and just
11498     parses the given XML directly (which is expected to be XML
11499     produced from a previous run of virt-inspector).  The list of
11500     names and connect URI are ignored in this case.
11501
11502     This function can throw a wide variety of exceptions, for example
11503     if the external virt-inspector program cannot be found, or if
11504     it doesn't generate valid XML.
11505 *)
11506 "
11507
11508 (* Generate ocaml/guestfs_inspector.ml. *)
11509 let generate_ocaml_inspector_ml () =
11510   generate_header ~extra_inputs:[rng_input] OCamlStyle LGPLv2plus;
11511
11512   pr "open Unix\n";
11513   pr "\n";
11514
11515   generate_types grammar;
11516   pr "\n";
11517
11518   pr "\
11519 (* Misc functions which are used by the parser code below. *)
11520 let first_child = function
11521   | Xml.Element (_, _, c::_) -> c
11522   | Xml.Element (name, _, []) ->
11523       failwith (\"expected <\" ^ name ^ \"/> to have a child node\")
11524   | Xml.PCData str ->
11525       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
11526
11527 let string_child_or_empty = function
11528   | Xml.Element (_, _, [Xml.PCData s]) -> s
11529   | Xml.Element (_, _, []) -> \"\"
11530   | Xml.Element (x, _, _) ->
11531       failwith (\"expected XML tag with a single PCDATA child, but got \" ^
11532                 x ^ \" instead\")
11533   | Xml.PCData str ->
11534       failwith (\"expected XML tag, but read PCDATA '\" ^ str ^ \"' instead\")
11535
11536 let optional_child name xml =
11537   let children = Xml.children xml in
11538   try
11539     Some (List.find (function
11540                      | Xml.Element (n, _, _) when n = name -> true
11541                      | _ -> false) children)
11542   with
11543     Not_found -> None
11544
11545 let child name xml =
11546   match optional_child name xml with
11547   | Some c -> c
11548   | None ->
11549       failwith (\"mandatory field <\" ^ name ^ \"/> missing in XML output\")
11550
11551 let attribute name xml =
11552   try Xml.attrib xml name
11553   with Xml.No_attribute _ ->
11554     failwith (\"mandatory attribute \" ^ name ^ \" missing in XML output\")
11555
11556 ";
11557
11558   generate_parsers grammar;
11559   pr "\n";
11560
11561   pr "\
11562 (* Run external virt-inspector, then use parser to parse the XML. *)
11563 let inspect ?connect ?xml names =
11564   let xml =
11565     match xml with
11566     | None ->
11567         if names = [] then invalid_arg \"inspect: no names given\";
11568         let cmd = [ \"virt-inspector\"; \"--xml\" ] @
11569           (match connect with None -> [] | Some uri -> [ \"--connect\"; uri ]) @
11570           names in
11571         let cmd = List.map Filename.quote cmd in
11572         let cmd = String.concat \" \" cmd in
11573         let chan = open_process_in cmd in
11574         let xml = Xml.parse_in chan in
11575         (match close_process_in chan with
11576          | WEXITED 0 -> ()
11577          | WEXITED _ -> failwith \"external virt-inspector command failed\"
11578          | WSIGNALED i | WSTOPPED i ->
11579              failwith (\"external virt-inspector command died or stopped on sig \" ^
11580                        string_of_int i)
11581         );
11582         xml
11583     | Some doc ->
11584         Xml.parse_string doc in
11585   parse_operatingsystems xml
11586 "
11587
11588 (* This is used to generate the src/MAX_PROC_NR file which
11589  * contains the maximum procedure number, a surrogate for the
11590  * ABI version number.  See src/Makefile.am for the details.
11591  *)
11592 and generate_max_proc_nr () =
11593   let proc_nrs = List.map (
11594     fun (_, _, proc_nr, _, _, _, _) -> proc_nr
11595   ) daemon_functions in
11596
11597   let max_proc_nr = List.fold_left max 0 proc_nrs in
11598
11599   pr "%d\n" max_proc_nr
11600
11601 let output_to filename k =
11602   let filename_new = filename ^ ".new" in
11603   chan := open_out filename_new;
11604   k ();
11605   close_out !chan;
11606   chan := Pervasives.stdout;
11607
11608   (* Is the new file different from the current file? *)
11609   if Sys.file_exists filename && files_equal filename filename_new then
11610     unlink filename_new                 (* same, so skip it *)
11611   else (
11612     (* different, overwrite old one *)
11613     (try chmod filename 0o644 with Unix_error _ -> ());
11614     rename filename_new filename;
11615     chmod filename 0o444;
11616     printf "written %s\n%!" filename;
11617   )
11618
11619 let perror msg = function
11620   | Unix_error (err, _, _) ->
11621       eprintf "%s: %s\n" msg (error_message err)
11622   | exn ->
11623       eprintf "%s: %s\n" msg (Printexc.to_string exn)
11624
11625 (* Main program. *)
11626 let () =
11627   let lock_fd =
11628     try openfile "HACKING" [O_RDWR] 0
11629     with
11630     | Unix_error (ENOENT, _, _) ->
11631         eprintf "\
11632 You are probably running this from the wrong directory.
11633 Run it from the top source directory using the command
11634   src/generator.ml
11635 ";
11636         exit 1
11637     | exn ->
11638         perror "open: HACKING" exn;
11639         exit 1 in
11640
11641   (* Acquire a lock so parallel builds won't try to run the generator
11642    * twice at the same time.  Subsequent builds will wait for the first
11643    * one to finish.  Note the lock is released implicitly when the
11644    * program exits.
11645    *)
11646   (try lockf lock_fd F_LOCK 1
11647    with exn ->
11648      perror "lock: HACKING" exn;
11649      exit 1);
11650
11651   check_functions ();
11652
11653   output_to "src/guestfs_protocol.x" generate_xdr;
11654   output_to "src/guestfs-structs.h" generate_structs_h;
11655   output_to "src/guestfs-actions.h" generate_actions_h;
11656   output_to "src/guestfs-internal-actions.h" generate_internal_actions_h;
11657   output_to "src/guestfs-actions.c" generate_client_actions;
11658   output_to "src/guestfs-bindtests.c" generate_bindtests;
11659   output_to "src/guestfs-structs.pod" generate_structs_pod;
11660   output_to "src/guestfs-actions.pod" generate_actions_pod;
11661   output_to "src/guestfs-availability.pod" generate_availability_pod;
11662   output_to "src/MAX_PROC_NR" generate_max_proc_nr;
11663   output_to "src/libguestfs.syms" generate_linker_script;
11664   output_to "daemon/actions.h" generate_daemon_actions_h;
11665   output_to "daemon/stubs.c" generate_daemon_actions;
11666   output_to "daemon/names.c" generate_daemon_names;
11667   output_to "daemon/optgroups.c" generate_daemon_optgroups_c;
11668   output_to "daemon/optgroups.h" generate_daemon_optgroups_h;
11669   output_to "capitests/tests.c" generate_tests;
11670   output_to "fish/cmds.c" generate_fish_cmds;
11671   output_to "fish/completion.c" generate_fish_completion;
11672   output_to "fish/guestfish-actions.pod" generate_fish_actions_pod;
11673   output_to "ocaml/guestfs.mli" generate_ocaml_mli;
11674   output_to "ocaml/guestfs.ml" generate_ocaml_ml;
11675   output_to "ocaml/guestfs_c_actions.c" generate_ocaml_c;
11676   output_to "ocaml/bindtests.ml" generate_ocaml_bindtests;
11677   output_to "ocaml/guestfs_inspector.mli" generate_ocaml_inspector_mli;
11678   output_to "ocaml/guestfs_inspector.ml" generate_ocaml_inspector_ml;
11679   output_to "perl/Guestfs.xs" generate_perl_xs;
11680   output_to "perl/lib/Sys/Guestfs.pm" generate_perl_pm;
11681   output_to "perl/bindtests.pl" generate_perl_bindtests;
11682   output_to "python/guestfs-py.c" generate_python_c;
11683   output_to "python/guestfs.py" generate_python_py;
11684   output_to "python/bindtests.py" generate_python_bindtests;
11685   output_to "ruby/ext/guestfs/_guestfs.c" generate_ruby_c;
11686   output_to "ruby/bindtests.rb" generate_ruby_bindtests;
11687   output_to "java/com/redhat/et/libguestfs/GuestFS.java" generate_java_java;
11688
11689   List.iter (
11690     fun (typ, jtyp) ->
11691       let cols = cols_of_struct typ in
11692       let filename = sprintf "java/com/redhat/et/libguestfs/%s.java" jtyp in
11693       output_to filename (generate_java_struct jtyp cols);
11694   ) java_structs;
11695
11696   output_to "java/Makefile.inc" generate_java_makefile_inc;
11697   output_to "java/com_redhat_et_libguestfs_GuestFS.c" generate_java_c;
11698   output_to "java/Bindtests.java" generate_java_bindtests;
11699   output_to "haskell/Guestfs.hs" generate_haskell_hs;
11700   output_to "haskell/Bindtests.hs" generate_haskell_bindtests;
11701   output_to "csharp/Libguestfs.cs" generate_csharp;
11702
11703   (* Always generate this file last, and unconditionally.  It's used
11704    * by the Makefile to know when we must re-run the generator.
11705    *)
11706   let chan = open_out "src/stamp-generator" in
11707   fprintf chan "1\n";
11708   close_out chan;
11709
11710   printf "generated %d lines of code\n" !lines