94dc268e6588ed1abec0cb40a629586c6e93cc8c
[libguestfs.git] / src / generator.ml
1 #!/usr/bin/env ocaml
2 (* libguestfs
3  * Copyright (C) 2009 Red Hat Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  *)
19
20 (* This script generates a large amount of code and documentation for
21  * all the daemon actions.
22  *
23  * To add a new action there are only two files you need to change,
24  * this one to describe the interface (see the big table below), and
25  * daemon/<somefile>.c to write the implementation.
26  *
27  * After editing this file, run it (./src/generator.ml) to regenerate all the
28  * output files.  Note that if you are using a separate build directory you
29  * must run generator.ml from the _source_ directory.
30  *
31  * IMPORTANT: This script should NOT print any warnings.  If it prints
32  * warnings, you should treat them as errors.
33  *)
34
35 #load "unix.cma";;
36 #load "str.cma";;
37
38 open Printf
39
40 type style = ret * args
41 and ret =
42     (* "RErr" as a return value means an int used as a simple error
43      * indication, ie. 0 or -1.
44      *)
45   | RErr
46
47     (* "RInt" as a return value means an int which is -1 for error
48      * or any value >= 0 on success.  Only use this for smallish
49      * positive ints (0 <= i < 2^30).
50      *)
51   | RInt of string
52
53     (* "RInt64" is the same as RInt, but is guaranteed to be able
54      * to return a full 64 bit value, _except_ that -1 means error
55      * (so -1 cannot be a valid, non-error return value).
56      *)
57   | RInt64 of string
58
59     (* "RBool" is a bool return value which can be true/false or
60      * -1 for error.
61      *)
62   | RBool of string
63
64     (* "RConstString" is a string that refers to a constant value.
65      * The return value must NOT be NULL (since NULL indicates
66      * an error).
67      *
68      * Try to avoid using this.  In particular you cannot use this
69      * for values returned from the daemon, because there is no
70      * thread-safe way to return them in the C API.
71      *)
72   | RConstString of string
73
74     (* "RConstOptString" is an even more broken version of
75      * "RConstString".  The returned string may be NULL and there
76      * is no way to return an error indication.  Avoid using this!
77      *)
78   | RConstOptString of string
79
80     (* "RString" is a returned string.  It must NOT be NULL, since
81      * a NULL return indicates an error.  The caller frees this.
82      *)
83   | RString of string
84
85     (* "RStringList" is a list of strings.  No string in the list
86      * can be NULL.  The caller frees the strings and the array.
87      *)
88   | RStringList of string
89
90     (* "RStruct" is a function which returns a single named structure
91      * or an error indication (in C, a struct, and in other languages
92      * with varying representations, but usually very efficient).  See
93      * after the function list below for the structures.
94      *)
95   | RStruct of string * string          (* name of retval, name of struct *)
96
97     (* "RStructList" is a function which returns either a list/array
98      * of structures (could be zero-length), or an error indication.
99      *)
100   | RStructList of string * string      (* name of retval, name of struct *)
101
102     (* Key-value pairs of untyped strings.  Turns into a hashtable or
103      * dictionary in languages which support it.  DON'T use this as a
104      * general "bucket" for results.  Prefer a stronger typed return
105      * value if one is available, or write a custom struct.  Don't use
106      * this if the list could potentially be very long, since it is
107      * inefficient.  Keys should be unique.  NULLs are not permitted.
108      *)
109   | RHashtable of string
110
111     (* "RBufferOut" is handled almost exactly like RString, but
112      * it allows the string to contain arbitrary 8 bit data including
113      * ASCII NUL.  In the C API this causes an implicit extra parameter
114      * to be added of type <size_t *size_r>.  The extra parameter
115      * returns the actual size of the return buffer in bytes.
116      *
117      * Other programming languages support strings with arbitrary 8 bit
118      * data.
119      *
120      * At the RPC layer we have to use the opaque<> type instead of
121      * string<>.  Returned data is still limited to the max message
122      * size (ie. ~ 2 MB).
123      *)
124   | RBufferOut of string
125
126 and args = argt list    (* Function parameters, guestfs handle is implicit. *)
127
128     (* Note in future we should allow a "variable args" parameter as
129      * the final parameter, to allow commands like
130      *   chmod mode file [file(s)...]
131      * This is not implemented yet, but many commands (such as chmod)
132      * are currently defined with the argument order keeping this future
133      * possibility in mind.
134      *)
135 and argt =
136   | String of string    (* const char *name, cannot be NULL *)
137   | OptString of string (* const char *name, may be NULL *)
138   | StringList of string(* list of strings (each string cannot be NULL) *)
139   | Bool of string      (* boolean *)
140   | Int of string       (* int (smallish ints, signed, <= 31 bits) *)
141     (* These are treated as filenames (simple string parameters) in
142      * the C API and bindings.  But in the RPC protocol, we transfer
143      * the actual file content up to or down from the daemon.
144      * FileIn: local machine -> daemon (in request)
145      * FileOut: daemon -> local machine (in reply)
146      * In guestfish (only), the special name "-" means read from
147      * stdin or write to stdout.
148      *)
149   | FileIn of string
150   | FileOut of string
151 (* Not implemented:
152     (* Opaque buffer which can contain arbitrary 8 bit data.
153      * In the C API, this is expressed as <char *, int> pair.
154      * Most other languages have a string type which can contain
155      * ASCII NUL.  We use whatever type is appropriate for each
156      * language.
157      * Buffers are limited by the total message size.  To transfer
158      * large blocks of data, use FileIn/FileOut parameters instead.
159      * To return an arbitrary buffer, use RBufferOut.
160      *)
161   | BufferIn of string
162 *)
163
164 type flags =
165   | ProtocolLimitWarning  (* display warning about protocol size limits *)
166   | DangerWillRobinson    (* flags particularly dangerous commands *)
167   | FishAlias of string   (* provide an alias for this cmd in guestfish *)
168   | FishAction of string  (* call this function in guestfish *)
169   | NotInFish             (* do not export via guestfish *)
170   | NotInDocs             (* do not add this function to documentation *)
171   | DeprecatedBy of string (* function is deprecated, use .. instead *)
172
173 (* You can supply zero or as many tests as you want per API call.
174  *
175  * Note that the test environment has 3 block devices, of size 500MB,
176  * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc), and
177  * a fourth squashfs block device with some known files on it (/dev/sdd).
178  *
179  * Note for partitioning purposes, the 500MB device has 1015 cylinders.
180  * Number of cylinders was 63 for IDE emulated disks with precisely
181  * the same size.  How exactly this is calculated is a mystery.
182  *
183  * The squashfs block device (/dev/sdd) comes from images/test.sqsh.
184  *
185  * To be able to run the tests in a reasonable amount of time,
186  * the virtual machine and block devices are reused between tests.
187  * So don't try testing kill_subprocess :-x
188  *
189  * Between each test we blockdev-setrw, umount-all, lvm-remove-all.
190  *
191  * Don't assume anything about the previous contents of the block
192  * devices.  Use 'Init*' to create some initial scenarios.
193  *
194  * You can add a prerequisite clause to any individual test.  This
195  * is a run-time check, which, if it fails, causes the test to be
196  * skipped.  Useful if testing a command which might not work on
197  * all variations of libguestfs builds.  A test that has prerequisite
198  * of 'Always' is run unconditionally.
199  *
200  * In addition, packagers can skip individual tests by setting the
201  * environment variables:     eg:
202  *   SKIP_TEST_<CMD>_<NUM>=1  SKIP_TEST_COMMAND_3=1  (skips test #3 of command)
203  *   SKIP_TEST_<CMD>=1        SKIP_TEST_ZEROFREE=1   (skips all zerofree tests)
204  *)
205 type tests = (test_init * test_prereq * test) list
206 and test =
207     (* Run the command sequence and just expect nothing to fail. *)
208   | TestRun of seq
209
210     (* Run the command sequence and expect the output of the final
211      * command to be the string.
212      *)
213   | TestOutput of seq * string
214
215     (* Run the command sequence and expect the output of the final
216      * command to be the list of strings.
217      *)
218   | TestOutputList of seq * string list
219
220     (* Run the command sequence and expect the output of the final
221      * command to be the list of block devices (could be either
222      * "/dev/sd.." or "/dev/hd.." form - we don't check the 5th
223      * character of each string).
224      *)
225   | TestOutputListOfDevices of seq * string list
226
227     (* Run the command sequence and expect the output of the final
228      * command to be the integer.
229      *)
230   | TestOutputInt of seq * int
231
232     (* Run the command sequence and expect the output of the final
233      * command to be <op> <int>, eg. ">=", "1".
234      *)
235   | TestOutputIntOp of seq * string * int
236
237     (* Run the command sequence and expect the output of the final
238      * command to be a true value (!= 0 or != NULL).
239      *)
240   | TestOutputTrue of seq
241
242     (* Run the command sequence and expect the output of the final
243      * command to be a false value (== 0 or == NULL, but not an error).
244      *)
245   | TestOutputFalse of seq
246
247     (* Run the command sequence and expect the output of the final
248      * command to be a list of the given length (but don't care about
249      * content).
250      *)
251   | TestOutputLength of seq * int
252
253     (* Run the command sequence and expect the output of the final
254      * command to be a buffer (RBufferOut), ie. string + size.
255      *)
256   | TestOutputBuffer of seq * string
257
258     (* Run the command sequence and expect the output of the final
259      * command to be a structure.
260      *)
261   | TestOutputStruct of seq * test_field_compare list
262
263     (* Run the command sequence and expect the final command (only)
264      * to fail.
265      *)
266   | TestLastFail of seq
267
268 and test_field_compare =
269   | CompareWithInt of string * int
270   | CompareWithIntOp of string * string * int
271   | CompareWithString of string * string
272   | CompareFieldsIntEq of string * string
273   | CompareFieldsStrEq of string * string
274
275 (* Test prerequisites. *)
276 and test_prereq =
277     (* Test always runs. *)
278   | Always
279
280     (* Test is currently disabled - eg. it fails, or it tests some
281      * unimplemented feature.
282      *)
283   | Disabled
284
285     (* 'string' is some C code (a function body) that should return
286      * true or false.  The test will run if the code returns true.
287      *)
288   | If of string
289
290     (* As for 'If' but the test runs _unless_ the code returns true. *)
291   | Unless of string
292
293 (* Some initial scenarios for testing. *)
294 and test_init =
295     (* Do nothing, block devices could contain random stuff including
296      * LVM PVs, and some filesystems might be mounted.  This is usually
297      * a bad idea.
298      *)
299   | InitNone
300
301     (* Block devices are empty and no filesystems are mounted. *)
302   | InitEmpty
303
304     (* /dev/sda contains a single partition /dev/sda1, which is formatted
305      * as ext2, empty [except for lost+found] and mounted on /.
306      * /dev/sdb and /dev/sdc may have random content.
307      * No LVM.
308      *)
309   | InitBasicFS
310
311     (* /dev/sda:
312      *   /dev/sda1 (is a PV):
313      *     /dev/VG/LV (size 8MB):
314      *       formatted as ext2, empty [except for lost+found], mounted on /
315      * /dev/sdb and /dev/sdc may have random content.
316      *)
317   | InitBasicFSonLVM
318
319     (* /dev/sdd (the squashfs, see images/ directory in source)
320      * is mounted on /
321      *)
322   | InitSquashFS
323
324 (* Sequence of commands for testing. *)
325 and seq = cmd list
326 and cmd = string list
327
328 (* Note about long descriptions: When referring to another
329  * action, use the format C<guestfs_other> (ie. the full name of
330  * the C function).  This will be replaced as appropriate in other
331  * language bindings.
332  *
333  * Apart from that, long descriptions are just perldoc paragraphs.
334  *)
335
336 (* These test functions are used in the language binding tests. *)
337
338 let test_all_args = [
339   String "str";
340   OptString "optstr";
341   StringList "strlist";
342   Bool "b";
343   Int "integer";
344   FileIn "filein";
345   FileOut "fileout";
346 ]
347
348 let test_all_rets = [
349   (* except for RErr, which is tested thoroughly elsewhere *)
350   "test0rint",         RInt "valout";
351   "test0rint64",       RInt64 "valout";
352   "test0rbool",        RBool "valout";
353   "test0rconststring", RConstString "valout";
354   "test0rconstoptstring", RConstOptString "valout";
355   "test0rstring",      RString "valout";
356   "test0rstringlist",  RStringList "valout";
357   "test0rstruct",      RStruct ("valout", "lvm_pv");
358   "test0rstructlist",  RStructList ("valout", "lvm_pv");
359   "test0rhashtable",   RHashtable "valout";
360 ]
361
362 let test_functions = [
363   ("test0", (RErr, test_all_args), -1, [NotInFish; NotInDocs],
364    [],
365    "internal test function - do not use",
366    "\
367 This is an internal test function which is used to test whether
368 the automatically generated bindings can handle every possible
369 parameter type correctly.
370
371 It echos the contents of each parameter to stdout.
372
373 You probably don't want to call this function.");
374 ] @ List.flatten (
375   List.map (
376     fun (name, ret) ->
377       [(name, (ret, [String "val"]), -1, [NotInFish; NotInDocs],
378         [],
379         "internal test function - do not use",
380         "\
381 This is an internal test function which is used to test whether
382 the automatically generated bindings can handle every possible
383 return type correctly.
384
385 It converts string C<val> to the return type.
386
387 You probably don't want to call this function.");
388        (name ^ "err", (ret, []), -1, [NotInFish; NotInDocs],
389         [],
390         "internal test function - do not use",
391         "\
392 This is an internal test function which is used to test whether
393 the automatically generated bindings can handle every possible
394 return type correctly.
395
396 This function always returns an error.
397
398 You probably don't want to call this function.")]
399   ) test_all_rets
400 )
401
402 (* non_daemon_functions are any functions which don't get processed
403  * in the daemon, eg. functions for setting and getting local
404  * configuration values.
405  *)
406
407 let non_daemon_functions = test_functions @ [
408   ("launch", (RErr, []), -1, [FishAlias "run"; FishAction "launch"],
409    [],
410    "launch the qemu subprocess",
411    "\
412 Internally libguestfs is implemented by running a virtual machine
413 using L<qemu(1)>.
414
415 You should call this after configuring the handle
416 (eg. adding drives) but before performing any actions.");
417
418   ("wait_ready", (RErr, []), -1, [NotInFish],
419    [],
420    "wait until the qemu subprocess launches",
421    "\
422 Internally libguestfs is implemented by running a virtual machine
423 using L<qemu(1)>.
424
425 You should call this after C<guestfs_launch> to wait for the launch
426 to complete.");
427
428   ("kill_subprocess", (RErr, []), -1, [],
429    [],
430    "kill the qemu subprocess",
431    "\
432 This kills the qemu subprocess.  You should never need to call this.");
433
434   ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
435    [],
436    "add an image to examine or modify",
437    "\
438 This function adds a virtual machine disk image C<filename> to the
439 guest.  The first time you call this function, the disk appears as IDE
440 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
441 so on.
442
443 You don't necessarily need to be root when using libguestfs.  However
444 you obviously do need sufficient permissions to access the filename
445 for whatever operations you want to perform (ie. read access if you
446 just want to read the image or write access if you want to modify the
447 image).
448
449 This is equivalent to the qemu parameter
450 C<-drive file=filename,cache=off,if=...>.
451
452 Note that this call checks for the existence of C<filename>.  This
453 stops you from specifying other types of drive which are supported
454 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
455 the general C<guestfs_config> call instead.");
456
457   ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
458    [],
459    "add a CD-ROM disk image to examine",
460    "\
461 This function adds a virtual CD-ROM disk image to the guest.
462
463 This is equivalent to the qemu parameter C<-cdrom filename>.
464
465 Note that this call checks for the existence of C<filename>.  This
466 stops you from specifying other types of drive which are supported
467 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
468 the general C<guestfs_config> call instead.");
469
470   ("add_drive_ro", (RErr, [String "filename"]), -1, [FishAlias "add-ro"],
471    [],
472    "add a drive in snapshot mode (read-only)",
473    "\
474 This adds a drive in snapshot mode, making it effectively
475 read-only.
476
477 Note that writes to the device are allowed, and will be seen for
478 the duration of the guestfs handle, but they are written
479 to a temporary file which is discarded as soon as the guestfs
480 handle is closed.  We don't currently have any method to enable
481 changes to be committed, although qemu can support this.
482
483 This is equivalent to the qemu parameter
484 C<-drive file=filename,snapshot=on,if=...>.
485
486 Note that this call checks for the existence of C<filename>.  This
487 stops you from specifying other types of drive which are supported
488 by qemu such as C<nbd:> and C<http:> URLs.  To specify those, use
489 the general C<guestfs_config> call instead.");
490
491   ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
492    [],
493    "add qemu parameters",
494    "\
495 This can be used to add arbitrary qemu command line parameters
496 of the form C<-param value>.  Actually it's not quite arbitrary - we
497 prevent you from setting some parameters which would interfere with
498 parameters that we use.
499
500 The first character of C<param> string must be a C<-> (dash).
501
502 C<value> can be NULL.");
503
504   ("set_qemu", (RErr, [String "qemu"]), -1, [FishAlias "qemu"],
505    [],
506    "set the qemu binary",
507    "\
508 Set the qemu binary that we will use.
509
510 The default is chosen when the library was compiled by the
511 configure script.
512
513 You can also override this by setting the C<LIBGUESTFS_QEMU>
514 environment variable.
515
516 Setting C<qemu> to C<NULL> restores the default qemu binary.");
517
518   ("get_qemu", (RConstString "qemu", []), -1, [],
519    [InitNone, Always, TestRun (
520       [["get_qemu"]])],
521    "get the qemu binary",
522    "\
523 Return the current qemu binary.
524
525 This is always non-NULL.  If it wasn't set already, then this will
526 return the default qemu binary name.");
527
528   ("set_path", (RErr, [String "path"]), -1, [FishAlias "path"],
529    [],
530    "set the search path",
531    "\
532 Set the path that libguestfs searches for kernel and initrd.img.
533
534 The default is C<$libdir/guestfs> unless overridden by setting
535 C<LIBGUESTFS_PATH> environment variable.
536
537 Setting C<path> to C<NULL> restores the default path.");
538
539   ("get_path", (RConstString "path", []), -1, [],
540    [InitNone, Always, TestRun (
541       [["get_path"]])],
542    "get the search path",
543    "\
544 Return the current search path.
545
546 This is always non-NULL.  If it wasn't set already, then this will
547 return the default path.");
548
549   ("set_append", (RErr, [OptString "append"]), -1, [FishAlias "append"],
550    [],
551    "add options to kernel command line",
552    "\
553 This function is used to add additional options to the
554 guest kernel command line.
555
556 The default is C<NULL> unless overridden by setting
557 C<LIBGUESTFS_APPEND> environment variable.
558
559 Setting C<append> to C<NULL> means I<no> additional options
560 are passed (libguestfs always adds a few of its own).");
561
562   ("get_append", (RConstOptString "append", []), -1, [],
563    (* This cannot be tested with the current framework.  The
564     * function can return NULL in normal operations, which the
565     * test framework interprets as an error.
566     *)
567    [],
568    "get the additional kernel options",
569    "\
570 Return the additional kernel options which are added to the
571 guest kernel command line.
572
573 If C<NULL> then no options are added.");
574
575   ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
576    [],
577    "set autosync mode",
578    "\
579 If C<autosync> is true, this enables autosync.  Libguestfs will make a
580 best effort attempt to run C<guestfs_umount_all> followed by
581 C<guestfs_sync> when the handle is closed
582 (also if the program exits without closing handles).
583
584 This is disabled by default (except in guestfish where it is
585 enabled by default).");
586
587   ("get_autosync", (RBool "autosync", []), -1, [],
588    [InitNone, Always, TestRun (
589       [["get_autosync"]])],
590    "get autosync mode",
591    "\
592 Get the autosync flag.");
593
594   ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
595    [],
596    "set verbose mode",
597    "\
598 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
599
600 Verbose messages are disabled unless the environment variable
601 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
602
603   ("get_verbose", (RBool "verbose", []), -1, [],
604    [],
605    "get verbose mode",
606    "\
607 This returns the verbose messages flag.");
608
609   ("is_ready", (RBool "ready", []), -1, [],
610    [InitNone, Always, TestOutputTrue (
611       [["is_ready"]])],
612    "is ready to accept commands",
613    "\
614 This returns true iff this handle is ready to accept commands
615 (in the C<READY> state).
616
617 For more information on states, see L<guestfs(3)>.");
618
619   ("is_config", (RBool "config", []), -1, [],
620    [InitNone, Always, TestOutputFalse (
621       [["is_config"]])],
622    "is in configuration state",
623    "\
624 This returns true iff this handle is being configured
625 (in the C<CONFIG> state).
626
627 For more information on states, see L<guestfs(3)>.");
628
629   ("is_launching", (RBool "launching", []), -1, [],
630    [InitNone, Always, TestOutputFalse (
631       [["is_launching"]])],
632    "is launching subprocess",
633    "\
634 This returns true iff this handle is launching the subprocess
635 (in the C<LAUNCHING> state).
636
637 For more information on states, see L<guestfs(3)>.");
638
639   ("is_busy", (RBool "busy", []), -1, [],
640    [InitNone, Always, TestOutputFalse (
641       [["is_busy"]])],
642    "is busy processing a command",
643    "\
644 This returns true iff this handle is busy processing a command
645 (in the C<BUSY> state).
646
647 For more information on states, see L<guestfs(3)>.");
648
649   ("get_state", (RInt "state", []), -1, [],
650    [],
651    "get the current state",
652    "\
653 This returns the current state as an opaque integer.  This is
654 only useful for printing debug and internal error messages.
655
656 For more information on states, see L<guestfs(3)>.");
657
658   ("set_busy", (RErr, []), -1, [NotInFish],
659    [],
660    "set state to busy",
661    "\
662 This sets the state to C<BUSY>.  This is only used when implementing
663 actions using the low-level API.
664
665 For more information on states, see L<guestfs(3)>.");
666
667   ("set_ready", (RErr, []), -1, [NotInFish],
668    [],
669    "set state to ready",
670    "\
671 This sets the state to C<READY>.  This is only used when implementing
672 actions using the low-level API.
673
674 For more information on states, see L<guestfs(3)>.");
675
676   ("end_busy", (RErr, []), -1, [NotInFish],
677    [],
678    "leave the busy state",
679    "\
680 This sets the state to C<READY>, or if in C<CONFIG> then it leaves the
681 state as is.  This is only used when implementing
682 actions using the low-level API.
683
684 For more information on states, see L<guestfs(3)>.");
685
686   ("set_memsize", (RErr, [Int "memsize"]), -1, [FishAlias "memsize"],
687    [InitNone, Always, TestOutputInt (
688       [["set_memsize"; "500"];
689        ["get_memsize"]], 500)],
690    "set memory allocated to the qemu subprocess",
691    "\
692 This sets the memory size in megabytes allocated to the
693 qemu subprocess.  This only has any effect if called before
694 C<guestfs_launch>.
695
696 You can also change this by setting the environment
697 variable C<LIBGUESTFS_MEMSIZE> before the handle is
698 created.
699
700 For more information on the architecture of libguestfs,
701 see L<guestfs(3)>.");
702
703   ("get_memsize", (RInt "memsize", []), -1, [],
704    [InitNone, Always, TestOutputIntOp (
705       [["get_memsize"]], ">=", 256)],
706    "get memory allocated to the qemu subprocess",
707    "\
708 This gets the memory size in megabytes allocated to the
709 qemu subprocess.
710
711 If C<guestfs_set_memsize> was not called
712 on this handle, and if C<LIBGUESTFS_MEMSIZE> was not set,
713 then this returns the compiled-in default value for memsize.
714
715 For more information on the architecture of libguestfs,
716 see L<guestfs(3)>.");
717
718   ("get_pid", (RInt "pid", []), -1, [FishAlias "pid"],
719    [InitNone, Always, TestOutputIntOp (
720       [["get_pid"]], ">=", 1)],
721    "get PID of qemu subprocess",
722    "\
723 Return the process ID of the qemu subprocess.  If there is no
724 qemu subprocess, then this will return an error.
725
726 This is an internal call used for debugging and testing.");
727
728   ("version", (RStruct ("version", "version"), []), -1, [],
729    [InitNone, Always, TestOutputStruct (
730       [["version"]], [CompareWithInt ("major", 1)])],
731    "get the library version number",
732    "\
733 Return the libguestfs version number that the program is linked
734 against.
735
736 Note that because of dynamic linking this is not necessarily
737 the version of libguestfs that you compiled against.  You can
738 compile the program, and then at runtime dynamically link
739 against a completely different C<libguestfs.so> library.
740
741 This call was added in version C<1.0.58>.  In previous
742 versions of libguestfs there was no way to get the version
743 number.  From C code you can use ELF weak linking tricks to find out if
744 this symbol exists (if it doesn't, then it's an earlier version).
745
746 The call returns a structure with four elements.  The first
747 three (C<major>, C<minor> and C<release>) are numbers and
748 correspond to the usual version triplet.  The fourth element
749 (C<extra>) is a string and is normally empty, but may be
750 used for distro-specific information.
751
752 To construct the original version string:
753 C<$major.$minor.$release$extra>
754
755 I<Note:> Don't use this call to test for availability
756 of features.  Distro backports makes this unreliable.");
757
758 ]
759
760 (* daemon_functions are any functions which cause some action
761  * to take place in the daemon.
762  *)
763
764 let daemon_functions = [
765   ("mount", (RErr, [String "device"; String "mountpoint"]), 1, [],
766    [InitEmpty, Always, TestOutput (
767       [["sfdiskM"; "/dev/sda"; ","];
768        ["mkfs"; "ext2"; "/dev/sda1"];
769        ["mount"; "/dev/sda1"; "/"];
770        ["write_file"; "/new"; "new file contents"; "0"];
771        ["cat"; "/new"]], "new file contents")],
772    "mount a guest disk at a position in the filesystem",
773    "\
774 Mount a guest disk at a position in the filesystem.  Block devices
775 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
776 the guest.  If those block devices contain partitions, they will have
777 the usual names (eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style
778 names can be used.
779
780 The rules are the same as for L<mount(2)>:  A filesystem must
781 first be mounted on C</> before others can be mounted.  Other
782 filesystems can only be mounted on directories which already
783 exist.
784
785 The mounted filesystem is writable, if we have sufficient permissions
786 on the underlying device.
787
788 The filesystem options C<sync> and C<noatime> are set with this
789 call, in order to improve reliability.");
790
791   ("sync", (RErr, []), 2, [],
792    [ InitEmpty, Always, TestRun [["sync"]]],
793    "sync disks, writes are flushed through to the disk image",
794    "\
795 This syncs the disk, so that any writes are flushed through to the
796 underlying disk image.
797
798 You should always call this if you have modified a disk image, before
799 closing the handle.");
800
801   ("touch", (RErr, [String "path"]), 3, [],
802    [InitBasicFS, Always, TestOutputTrue (
803       [["touch"; "/new"];
804        ["exists"; "/new"]])],
805    "update file timestamps or create a new file",
806    "\
807 Touch acts like the L<touch(1)> command.  It can be used to
808 update the timestamps on a file, or, if the file does not exist,
809 to create a new zero-length file.");
810
811   ("cat", (RString "content", [String "path"]), 4, [ProtocolLimitWarning],
812    [InitSquashFS, Always, TestOutput (
813       [["cat"; "/known-2"]], "abcdef\n")],
814    "list the contents of a file",
815    "\
816 Return the contents of the file named C<path>.
817
818 Note that this function cannot correctly handle binary files
819 (specifically, files containing C<\\0> character which is treated
820 as end of string).  For those you need to use the C<guestfs_read_file>
821 or C<guestfs_download> functions which have a more complex interface.");
822
823   ("ll", (RString "listing", [String "directory"]), 5, [],
824    [], (* XXX Tricky to test because it depends on the exact format
825         * of the 'ls -l' command, which changes between F10 and F11.
826         *)
827    "list the files in a directory (long format)",
828    "\
829 List the files in C<directory> (relative to the root directory,
830 there is no cwd) in the format of 'ls -la'.
831
832 This command is mostly useful for interactive sessions.  It
833 is I<not> intended that you try to parse the output string.");
834
835   ("ls", (RStringList "listing", [String "directory"]), 6, [],
836    [InitBasicFS, Always, TestOutputList (
837       [["touch"; "/new"];
838        ["touch"; "/newer"];
839        ["touch"; "/newest"];
840        ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
841    "list the files in a directory",
842    "\
843 List the files in C<directory> (relative to the root directory,
844 there is no cwd).  The '.' and '..' entries are not returned, but
845 hidden files are shown.
846
847 This command is mostly useful for interactive sessions.  Programs
848 should probably use C<guestfs_readdir> instead.");
849
850   ("list_devices", (RStringList "devices", []), 7, [],
851    [InitEmpty, Always, TestOutputListOfDevices (
852       [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"; "/dev/sdd"])],
853    "list the block devices",
854    "\
855 List all the block devices.
856
857 The full block device names are returned, eg. C</dev/sda>");
858
859   ("list_partitions", (RStringList "partitions", []), 8, [],
860    [InitBasicFS, Always, TestOutputListOfDevices (
861       [["list_partitions"]], ["/dev/sda1"]);
862     InitEmpty, Always, TestOutputListOfDevices (
863       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
864        ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
865    "list the partitions",
866    "\
867 List all the partitions detected on all block devices.
868
869 The full partition device names are returned, eg. C</dev/sda1>
870
871 This does not return logical volumes.  For that you will need to
872 call C<guestfs_lvs>.");
873
874   ("pvs", (RStringList "physvols", []), 9, [],
875    [InitBasicFSonLVM, Always, TestOutputListOfDevices (
876       [["pvs"]], ["/dev/sda1"]);
877     InitEmpty, Always, TestOutputListOfDevices (
878       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
879        ["pvcreate"; "/dev/sda1"];
880        ["pvcreate"; "/dev/sda2"];
881        ["pvcreate"; "/dev/sda3"];
882        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
883    "list the LVM physical volumes (PVs)",
884    "\
885 List all the physical volumes detected.  This is the equivalent
886 of the L<pvs(8)> command.
887
888 This returns a list of just the device names that contain
889 PVs (eg. C</dev/sda2>).
890
891 See also C<guestfs_pvs_full>.");
892
893   ("vgs", (RStringList "volgroups", []), 10, [],
894    [InitBasicFSonLVM, Always, TestOutputList (
895       [["vgs"]], ["VG"]);
896     InitEmpty, Always, TestOutputList (
897       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
898        ["pvcreate"; "/dev/sda1"];
899        ["pvcreate"; "/dev/sda2"];
900        ["pvcreate"; "/dev/sda3"];
901        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
902        ["vgcreate"; "VG2"; "/dev/sda3"];
903        ["vgs"]], ["VG1"; "VG2"])],
904    "list the LVM volume groups (VGs)",
905    "\
906 List all the volumes groups detected.  This is the equivalent
907 of the L<vgs(8)> command.
908
909 This returns a list of just the volume group names that were
910 detected (eg. C<VolGroup00>).
911
912 See also C<guestfs_vgs_full>.");
913
914   ("lvs", (RStringList "logvols", []), 11, [],
915    [InitBasicFSonLVM, Always, TestOutputList (
916       [["lvs"]], ["/dev/VG/LV"]);
917     InitEmpty, Always, TestOutputList (
918       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
919        ["pvcreate"; "/dev/sda1"];
920        ["pvcreate"; "/dev/sda2"];
921        ["pvcreate"; "/dev/sda3"];
922        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
923        ["vgcreate"; "VG2"; "/dev/sda3"];
924        ["lvcreate"; "LV1"; "VG1"; "50"];
925        ["lvcreate"; "LV2"; "VG1"; "50"];
926        ["lvcreate"; "LV3"; "VG2"; "50"];
927        ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
928    "list the LVM logical volumes (LVs)",
929    "\
930 List all the logical volumes detected.  This is the equivalent
931 of the L<lvs(8)> command.
932
933 This returns a list of the logical volume device names
934 (eg. C</dev/VolGroup00/LogVol00>).
935
936 See also C<guestfs_lvs_full>.");
937
938   ("pvs_full", (RStructList ("physvols", "lvm_pv"), []), 12, [],
939    [], (* XXX how to test? *)
940    "list the LVM physical volumes (PVs)",
941    "\
942 List all the physical volumes detected.  This is the equivalent
943 of the L<pvs(8)> command.  The \"full\" version includes all fields.");
944
945   ("vgs_full", (RStructList ("volgroups", "lvm_vg"), []), 13, [],
946    [], (* XXX how to test? *)
947    "list the LVM volume groups (VGs)",
948    "\
949 List all the volumes groups detected.  This is the equivalent
950 of the L<vgs(8)> command.  The \"full\" version includes all fields.");
951
952   ("lvs_full", (RStructList ("logvols", "lvm_lv"), []), 14, [],
953    [], (* XXX how to test? *)
954    "list the LVM logical volumes (LVs)",
955    "\
956 List all the logical volumes detected.  This is the equivalent
957 of the L<lvs(8)> command.  The \"full\" version includes all fields.");
958
959   ("read_lines", (RStringList "lines", [String "path"]), 15, [],
960    [InitSquashFS, Always, TestOutputList (
961       [["read_lines"; "/known-4"]], ["abc"; "def"; "ghi"]);
962     InitSquashFS, Always, TestOutputList (
963       [["read_lines"; "/empty"]], [])],
964    "read file as lines",
965    "\
966 Return the contents of the file named C<path>.
967
968 The file contents are returned as a list of lines.  Trailing
969 C<LF> and C<CRLF> character sequences are I<not> returned.
970
971 Note that this function cannot correctly handle binary files
972 (specifically, files containing C<\\0> character which is treated
973 as end of line).  For those you need to use the C<guestfs_read_file>
974 function which has a more complex interface.");
975
976   ("aug_init", (RErr, [String "root"; Int "flags"]), 16, [],
977    [], (* XXX Augeas code needs tests. *)
978    "create a new Augeas handle",
979    "\
980 Create a new Augeas handle for editing configuration files.
981 If there was any previous Augeas handle associated with this
982 guestfs session, then it is closed.
983
984 You must call this before using any other C<guestfs_aug_*>
985 commands.
986
987 C<root> is the filesystem root.  C<root> must not be NULL,
988 use C</> instead.
989
990 The flags are the same as the flags defined in
991 E<lt>augeas.hE<gt>, the logical I<or> of the following
992 integers:
993
994 =over 4
995
996 =item C<AUG_SAVE_BACKUP> = 1
997
998 Keep the original file with a C<.augsave> extension.
999
1000 =item C<AUG_SAVE_NEWFILE> = 2
1001
1002 Save changes into a file with extension C<.augnew>, and
1003 do not overwrite original.  Overrides C<AUG_SAVE_BACKUP>.
1004
1005 =item C<AUG_TYPE_CHECK> = 4
1006
1007 Typecheck lenses (can be expensive).
1008
1009 =item C<AUG_NO_STDINC> = 8
1010
1011 Do not use standard load path for modules.
1012
1013 =item C<AUG_SAVE_NOOP> = 16
1014
1015 Make save a no-op, just record what would have been changed.
1016
1017 =item C<AUG_NO_LOAD> = 32
1018
1019 Do not load the tree in C<guestfs_aug_init>.
1020
1021 =back
1022
1023 To close the handle, you can call C<guestfs_aug_close>.
1024
1025 To find out more about Augeas, see L<http://augeas.net/>.");
1026
1027   ("aug_close", (RErr, []), 26, [],
1028    [], (* XXX Augeas code needs tests. *)
1029    "close the current Augeas handle",
1030    "\
1031 Close the current Augeas handle and free up any resources
1032 used by it.  After calling this, you have to call
1033 C<guestfs_aug_init> again before you can use any other
1034 Augeas functions.");
1035
1036   ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [],
1037    [], (* XXX Augeas code needs tests. *)
1038    "define an Augeas variable",
1039    "\
1040 Defines an Augeas variable C<name> whose value is the result
1041 of evaluating C<expr>.  If C<expr> is NULL, then C<name> is
1042 undefined.
1043
1044 On success this returns the number of nodes in C<expr>, or
1045 C<0> if C<expr> evaluates to something which is not a nodeset.");
1046
1047   ("aug_defnode", (RStruct ("nrnodescreated", "int_bool"), [String "name"; String "expr"; String "val"]), 18, [],
1048    [], (* XXX Augeas code needs tests. *)
1049    "define an Augeas node",
1050    "\
1051 Defines a variable C<name> whose value is the result of
1052 evaluating C<expr>.
1053
1054 If C<expr> evaluates to an empty nodeset, a node is created,
1055 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
1056 C<name> will be the nodeset containing that single node.
1057
1058 On success this returns a pair containing the
1059 number of nodes in the nodeset, and a boolean flag
1060 if a node was created.");
1061
1062   ("aug_get", (RString "val", [String "path"]), 19, [],
1063    [], (* XXX Augeas code needs tests. *)
1064    "look up the value of an Augeas path",
1065    "\
1066 Look up the value associated with C<path>.  If C<path>
1067 matches exactly one node, the C<value> is returned.");
1068
1069   ("aug_set", (RErr, [String "path"; String "val"]), 20, [],
1070    [], (* XXX Augeas code needs tests. *)
1071    "set Augeas path to value",
1072    "\
1073 Set the value associated with C<path> to C<value>.");
1074
1075   ("aug_insert", (RErr, [String "path"; String "label"; Bool "before"]), 21, [],
1076    [], (* XXX Augeas code needs tests. *)
1077    "insert a sibling Augeas node",
1078    "\
1079 Create a new sibling C<label> for C<path>, inserting it into
1080 the tree before or after C<path> (depending on the boolean
1081 flag C<before>).
1082
1083 C<path> must match exactly one existing node in the tree, and
1084 C<label> must be a label, ie. not contain C</>, C<*> or end
1085 with a bracketed index C<[N]>.");
1086
1087   ("aug_rm", (RInt "nrnodes", [String "path"]), 22, [],
1088    [], (* XXX Augeas code needs tests. *)
1089    "remove an Augeas path",
1090    "\
1091 Remove C<path> and all of its children.
1092
1093 On success this returns the number of entries which were removed.");
1094
1095   ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [],
1096    [], (* XXX Augeas code needs tests. *)
1097    "move Augeas node",
1098    "\
1099 Move the node C<src> to C<dest>.  C<src> must match exactly
1100 one node.  C<dest> is overwritten if it exists.");
1101
1102   ("aug_match", (RStringList "matches", [String "path"]), 24, [],
1103    [], (* XXX Augeas code needs tests. *)
1104    "return Augeas nodes which match path",
1105    "\
1106 Returns a list of paths which match the path expression C<path>.
1107 The returned paths are sufficiently qualified so that they match
1108 exactly one node in the current tree.");
1109
1110   ("aug_save", (RErr, []), 25, [],
1111    [], (* XXX Augeas code needs tests. *)
1112    "write all pending Augeas changes to disk",
1113    "\
1114 This writes all pending changes to disk.
1115
1116 The flags which were passed to C<guestfs_aug_init> affect exactly
1117 how files are saved.");
1118
1119   ("aug_load", (RErr, []), 27, [],
1120    [], (* XXX Augeas code needs tests. *)
1121    "load files into the tree",
1122    "\
1123 Load files into the tree.
1124
1125 See C<aug_load> in the Augeas documentation for the full gory
1126 details.");
1127
1128   ("aug_ls", (RStringList "matches", [String "path"]), 28, [],
1129    [], (* XXX Augeas code needs tests. *)
1130    "list Augeas nodes under a path",
1131    "\
1132 This is just a shortcut for listing C<guestfs_aug_match>
1133 C<path/*> and sorting the resulting nodes into alphabetical order.");
1134
1135   ("rm", (RErr, [String "path"]), 29, [],
1136    [InitBasicFS, Always, TestRun
1137       [["touch"; "/new"];
1138        ["rm"; "/new"]];
1139     InitBasicFS, Always, TestLastFail
1140       [["rm"; "/new"]];
1141     InitBasicFS, Always, TestLastFail
1142       [["mkdir"; "/new"];
1143        ["rm"; "/new"]]],
1144    "remove a file",
1145    "\
1146 Remove the single file C<path>.");
1147
1148   ("rmdir", (RErr, [String "path"]), 30, [],
1149    [InitBasicFS, Always, TestRun
1150       [["mkdir"; "/new"];
1151        ["rmdir"; "/new"]];
1152     InitBasicFS, Always, TestLastFail
1153       [["rmdir"; "/new"]];
1154     InitBasicFS, Always, TestLastFail
1155       [["touch"; "/new"];
1156        ["rmdir"; "/new"]]],
1157    "remove a directory",
1158    "\
1159 Remove the single directory C<path>.");
1160
1161   ("rm_rf", (RErr, [String "path"]), 31, [],
1162    [InitBasicFS, Always, TestOutputFalse
1163       [["mkdir"; "/new"];
1164        ["mkdir"; "/new/foo"];
1165        ["touch"; "/new/foo/bar"];
1166        ["rm_rf"; "/new"];
1167        ["exists"; "/new"]]],
1168    "remove a file or directory recursively",
1169    "\
1170 Remove the file or directory C<path>, recursively removing the
1171 contents if its a directory.  This is like the C<rm -rf> shell
1172 command.");
1173
1174   ("mkdir", (RErr, [String "path"]), 32, [],
1175    [InitBasicFS, Always, TestOutputTrue
1176       [["mkdir"; "/new"];
1177        ["is_dir"; "/new"]];
1178     InitBasicFS, Always, TestLastFail
1179       [["mkdir"; "/new/foo/bar"]]],
1180    "create a directory",
1181    "\
1182 Create a directory named C<path>.");
1183
1184   ("mkdir_p", (RErr, [String "path"]), 33, [],
1185    [InitBasicFS, Always, TestOutputTrue
1186       [["mkdir_p"; "/new/foo/bar"];
1187        ["is_dir"; "/new/foo/bar"]];
1188     InitBasicFS, Always, TestOutputTrue
1189       [["mkdir_p"; "/new/foo/bar"];
1190        ["is_dir"; "/new/foo"]];
1191     InitBasicFS, Always, TestOutputTrue
1192       [["mkdir_p"; "/new/foo/bar"];
1193        ["is_dir"; "/new"]];
1194     (* Regression tests for RHBZ#503133: *)
1195     InitBasicFS, Always, TestRun
1196       [["mkdir"; "/new"];
1197        ["mkdir_p"; "/new"]];
1198     InitBasicFS, Always, TestLastFail
1199       [["touch"; "/new"];
1200        ["mkdir_p"; "/new"]]],
1201    "create a directory and parents",
1202    "\
1203 Create a directory named C<path>, creating any parent directories
1204 as necessary.  This is like the C<mkdir -p> shell command.");
1205
1206   ("chmod", (RErr, [Int "mode"; String "path"]), 34, [],
1207    [], (* XXX Need stat command to test *)
1208    "change file mode",
1209    "\
1210 Change the mode (permissions) of C<path> to C<mode>.  Only
1211 numeric modes are supported.");
1212
1213   ("chown", (RErr, [Int "owner"; Int "group"; String "path"]), 35, [],
1214    [], (* XXX Need stat command to test *)
1215    "change file owner and group",
1216    "\
1217 Change the file owner to C<owner> and group to C<group>.
1218
1219 Only numeric uid and gid are supported.  If you want to use
1220 names, you will need to locate and parse the password file
1221 yourself (Augeas support makes this relatively easy).");
1222
1223   ("exists", (RBool "existsflag", [String "path"]), 36, [],
1224    [InitSquashFS, Always, TestOutputTrue (
1225       [["exists"; "/empty"]]);
1226     InitSquashFS, Always, TestOutputTrue (
1227       [["exists"; "/directory"]])],
1228    "test if file or directory exists",
1229    "\
1230 This returns C<true> if and only if there is a file, directory
1231 (or anything) with the given C<path> name.
1232
1233 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
1234
1235   ("is_file", (RBool "fileflag", [String "path"]), 37, [],
1236    [InitSquashFS, Always, TestOutputTrue (
1237       [["is_file"; "/known-1"]]);
1238     InitSquashFS, Always, TestOutputFalse (
1239       [["is_file"; "/directory"]])],
1240    "test if file exists",
1241    "\
1242 This returns C<true> if and only if there is a file
1243 with the given C<path> name.  Note that it returns false for
1244 other objects like directories.
1245
1246 See also C<guestfs_stat>.");
1247
1248   ("is_dir", (RBool "dirflag", [String "path"]), 38, [],
1249    [InitSquashFS, Always, TestOutputFalse (
1250       [["is_dir"; "/known-3"]]);
1251     InitSquashFS, Always, TestOutputTrue (
1252       [["is_dir"; "/directory"]])],
1253    "test if file exists",
1254    "\
1255 This returns C<true> if and only if there is a directory
1256 with the given C<path> name.  Note that it returns false for
1257 other objects like files.
1258
1259 See also C<guestfs_stat>.");
1260
1261   ("pvcreate", (RErr, [String "device"]), 39, [],
1262    [InitEmpty, Always, TestOutputListOfDevices (
1263       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1264        ["pvcreate"; "/dev/sda1"];
1265        ["pvcreate"; "/dev/sda2"];
1266        ["pvcreate"; "/dev/sda3"];
1267        ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
1268    "create an LVM physical volume",
1269    "\
1270 This creates an LVM physical volume on the named C<device>,
1271 where C<device> should usually be a partition name such
1272 as C</dev/sda1>.");
1273
1274   ("vgcreate", (RErr, [String "volgroup"; StringList "physvols"]), 40, [],
1275    [InitEmpty, Always, TestOutputList (
1276       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1277        ["pvcreate"; "/dev/sda1"];
1278        ["pvcreate"; "/dev/sda2"];
1279        ["pvcreate"; "/dev/sda3"];
1280        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1281        ["vgcreate"; "VG2"; "/dev/sda3"];
1282        ["vgs"]], ["VG1"; "VG2"])],
1283    "create an LVM volume group",
1284    "\
1285 This creates an LVM volume group called C<volgroup>
1286 from the non-empty list of physical volumes C<physvols>.");
1287
1288   ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [],
1289    [InitEmpty, Always, TestOutputList (
1290       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1291        ["pvcreate"; "/dev/sda1"];
1292        ["pvcreate"; "/dev/sda2"];
1293        ["pvcreate"; "/dev/sda3"];
1294        ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
1295        ["vgcreate"; "VG2"; "/dev/sda3"];
1296        ["lvcreate"; "LV1"; "VG1"; "50"];
1297        ["lvcreate"; "LV2"; "VG1"; "50"];
1298        ["lvcreate"; "LV3"; "VG2"; "50"];
1299        ["lvcreate"; "LV4"; "VG2"; "50"];
1300        ["lvcreate"; "LV5"; "VG2"; "50"];
1301        ["lvs"]],
1302       ["/dev/VG1/LV1"; "/dev/VG1/LV2";
1303        "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
1304    "create an LVM volume group",
1305    "\
1306 This creates an LVM volume group called C<logvol>
1307 on the volume group C<volgroup>, with C<size> megabytes.");
1308
1309   ("mkfs", (RErr, [String "fstype"; String "device"]), 42, [],
1310    [InitEmpty, Always, TestOutput (
1311       [["sfdiskM"; "/dev/sda"; ","];
1312        ["mkfs"; "ext2"; "/dev/sda1"];
1313        ["mount"; "/dev/sda1"; "/"];
1314        ["write_file"; "/new"; "new file contents"; "0"];
1315        ["cat"; "/new"]], "new file contents")],
1316    "make a filesystem",
1317    "\
1318 This creates a filesystem on C<device> (usually a partition
1319 or LVM logical volume).  The filesystem type is C<fstype>, for
1320 example C<ext3>.");
1321
1322   ("sfdisk", (RErr, [String "device";
1323                      Int "cyls"; Int "heads"; Int "sectors";
1324                      StringList "lines"]), 43, [DangerWillRobinson],
1325    [],
1326    "create partitions on a block device",
1327    "\
1328 This is a direct interface to the L<sfdisk(8)> program for creating
1329 partitions on block devices.
1330
1331 C<device> should be a block device, for example C</dev/sda>.
1332
1333 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1334 and sectors on the device, which are passed directly to sfdisk as
1335 the I<-C>, I<-H> and I<-S> parameters.  If you pass C<0> for any
1336 of these, then the corresponding parameter is omitted.  Usually for
1337 'large' disks, you can just pass C<0> for these, but for small
1338 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1339 out the right geometry and you will need to tell it.
1340
1341 C<lines> is a list of lines that we feed to C<sfdisk>.  For more
1342 information refer to the L<sfdisk(8)> manpage.
1343
1344 To create a single partition occupying the whole disk, you would
1345 pass C<lines> as a single element list, when the single element being
1346 the string C<,> (comma).
1347
1348 See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>");
1349
1350   ("write_file", (RErr, [String "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning],
1351    [InitBasicFS, Always, TestOutput (
1352       [["write_file"; "/new"; "new file contents"; "0"];
1353        ["cat"; "/new"]], "new file contents");
1354     InitBasicFS, Always, TestOutput (
1355       [["write_file"; "/new"; "\nnew file contents\n"; "0"];
1356        ["cat"; "/new"]], "\nnew file contents\n");
1357     InitBasicFS, Always, TestOutput (
1358       [["write_file"; "/new"; "\n\n"; "0"];
1359        ["cat"; "/new"]], "\n\n");
1360     InitBasicFS, Always, TestOutput (
1361       [["write_file"; "/new"; ""; "0"];
1362        ["cat"; "/new"]], "");
1363     InitBasicFS, Always, TestOutput (
1364       [["write_file"; "/new"; "\n\n\n"; "0"];
1365        ["cat"; "/new"]], "\n\n\n");
1366     InitBasicFS, Always, TestOutput (
1367       [["write_file"; "/new"; "\n"; "0"];
1368        ["cat"; "/new"]], "\n")],
1369    "create a file",
1370    "\
1371 This call creates a file called C<path>.  The contents of the
1372 file is the string C<content> (which can contain any 8 bit data),
1373 with length C<size>.
1374
1375 As a special case, if C<size> is C<0>
1376 then the length is calculated using C<strlen> (so in this case
1377 the content cannot contain embedded ASCII NULs).
1378
1379 I<NB.> Owing to a bug, writing content containing ASCII NUL
1380 characters does I<not> work, even if the length is specified.
1381 We hope to resolve this bug in a future version.  In the meantime
1382 use C<guestfs_upload>.");
1383
1384   ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1385    [InitEmpty, Always, TestOutputListOfDevices (
1386       [["sfdiskM"; "/dev/sda"; ","];
1387        ["mkfs"; "ext2"; "/dev/sda1"];
1388        ["mount"; "/dev/sda1"; "/"];
1389        ["mounts"]], ["/dev/sda1"]);
1390     InitEmpty, Always, TestOutputList (
1391       [["sfdiskM"; "/dev/sda"; ","];
1392        ["mkfs"; "ext2"; "/dev/sda1"];
1393        ["mount"; "/dev/sda1"; "/"];
1394        ["umount"; "/"];
1395        ["mounts"]], [])],
1396    "unmount a filesystem",
1397    "\
1398 This unmounts the given filesystem.  The filesystem may be
1399 specified either by its mountpoint (path) or the device which
1400 contains the filesystem.");
1401
1402   ("mounts", (RStringList "devices", []), 46, [],
1403    [InitBasicFS, Always, TestOutputListOfDevices (
1404       [["mounts"]], ["/dev/sda1"])],
1405    "show mounted filesystems",
1406    "\
1407 This returns the list of currently mounted filesystems.  It returns
1408 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1409
1410 Some internal mounts are not shown.
1411
1412 See also: C<guestfs_mountpoints>");
1413
1414   ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1415    [InitBasicFS, Always, TestOutputList (
1416       [["umount_all"];
1417        ["mounts"]], []);
1418     (* check that umount_all can unmount nested mounts correctly: *)
1419     InitEmpty, Always, TestOutputList (
1420       [["sfdiskM"; "/dev/sda"; ",100 ,200 ,"];
1421        ["mkfs"; "ext2"; "/dev/sda1"];
1422        ["mkfs"; "ext2"; "/dev/sda2"];
1423        ["mkfs"; "ext2"; "/dev/sda3"];
1424        ["mount"; "/dev/sda1"; "/"];
1425        ["mkdir"; "/mp1"];
1426        ["mount"; "/dev/sda2"; "/mp1"];
1427        ["mkdir"; "/mp1/mp2"];
1428        ["mount"; "/dev/sda3"; "/mp1/mp2"];
1429        ["mkdir"; "/mp1/mp2/mp3"];
1430        ["umount_all"];
1431        ["mounts"]], [])],
1432    "unmount all filesystems",
1433    "\
1434 This unmounts all mounted filesystems.
1435
1436 Some internal mounts are not unmounted by this call.");
1437
1438   ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson],
1439    [],
1440    "remove all LVM LVs, VGs and PVs",
1441    "\
1442 This command removes all LVM logical volumes, volume groups
1443 and physical volumes.");
1444
1445   ("file", (RString "description", [String "path"]), 49, [],
1446    [InitSquashFS, Always, TestOutput (
1447       [["file"; "/empty"]], "empty");
1448     InitSquashFS, Always, TestOutput (
1449       [["file"; "/known-1"]], "ASCII text");
1450     InitSquashFS, Always, TestLastFail (
1451       [["file"; "/notexists"]])],
1452    "determine file type",
1453    "\
1454 This call uses the standard L<file(1)> command to determine
1455 the type or contents of the file.  This also works on devices,
1456 for example to find out whether a partition contains a filesystem.
1457
1458 This call will also transparently look inside various types
1459 of compressed file.
1460
1461 The exact command which runs is C<file -zbsL path>.  Note in
1462 particular that the filename is not prepended to the output
1463 (the C<-b> option).");
1464
1465   ("command", (RString "output", [StringList "arguments"]), 50, [ProtocolLimitWarning],
1466    [InitBasicFS, Always, TestOutput (
1467       [["upload"; "test-command"; "/test-command"];
1468        ["chmod"; "0o755"; "/test-command"];
1469        ["command"; "/test-command 1"]], "Result1");
1470     InitBasicFS, Always, TestOutput (
1471       [["upload"; "test-command"; "/test-command"];
1472        ["chmod"; "0o755"; "/test-command"];
1473        ["command"; "/test-command 2"]], "Result2\n");
1474     InitBasicFS, Always, TestOutput (
1475       [["upload"; "test-command"; "/test-command"];
1476        ["chmod"; "0o755"; "/test-command"];
1477        ["command"; "/test-command 3"]], "\nResult3");
1478     InitBasicFS, Always, TestOutput (
1479       [["upload"; "test-command"; "/test-command"];
1480        ["chmod"; "0o755"; "/test-command"];
1481        ["command"; "/test-command 4"]], "\nResult4\n");
1482     InitBasicFS, Always, TestOutput (
1483       [["upload"; "test-command"; "/test-command"];
1484        ["chmod"; "0o755"; "/test-command"];
1485        ["command"; "/test-command 5"]], "\nResult5\n\n");
1486     InitBasicFS, Always, TestOutput (
1487       [["upload"; "test-command"; "/test-command"];
1488        ["chmod"; "0o755"; "/test-command"];
1489        ["command"; "/test-command 6"]], "\n\nResult6\n\n");
1490     InitBasicFS, Always, TestOutput (
1491       [["upload"; "test-command"; "/test-command"];
1492        ["chmod"; "0o755"; "/test-command"];
1493        ["command"; "/test-command 7"]], "");
1494     InitBasicFS, Always, TestOutput (
1495       [["upload"; "test-command"; "/test-command"];
1496        ["chmod"; "0o755"; "/test-command"];
1497        ["command"; "/test-command 8"]], "\n");
1498     InitBasicFS, Always, TestOutput (
1499       [["upload"; "test-command"; "/test-command"];
1500        ["chmod"; "0o755"; "/test-command"];
1501        ["command"; "/test-command 9"]], "\n\n");
1502     InitBasicFS, Always, TestOutput (
1503       [["upload"; "test-command"; "/test-command"];
1504        ["chmod"; "0o755"; "/test-command"];
1505        ["command"; "/test-command 10"]], "Result10-1\nResult10-2\n");
1506     InitBasicFS, Always, TestOutput (
1507       [["upload"; "test-command"; "/test-command"];
1508        ["chmod"; "0o755"; "/test-command"];
1509        ["command"; "/test-command 11"]], "Result11-1\nResult11-2");
1510     InitBasicFS, Always, TestLastFail (
1511       [["upload"; "test-command"; "/test-command"];
1512        ["chmod"; "0o755"; "/test-command"];
1513        ["command"; "/test-command"]])],
1514    "run a command from the guest filesystem",
1515    "\
1516 This call runs a command from the guest filesystem.  The
1517 filesystem must be mounted, and must contain a compatible
1518 operating system (ie. something Linux, with the same
1519 or compatible processor architecture).
1520
1521 The single parameter is an argv-style list of arguments.
1522 The first element is the name of the program to run.
1523 Subsequent elements are parameters.  The list must be
1524 non-empty (ie. must contain a program name).  Note that
1525 the command runs directly, and is I<not> invoked via
1526 the shell (see C<guestfs_sh>).
1527
1528 The return value is anything printed to I<stdout> by
1529 the command.
1530
1531 If the command returns a non-zero exit status, then
1532 this function returns an error message.  The error message
1533 string is the content of I<stderr> from the command.
1534
1535 The C<$PATH> environment variable will contain at least
1536 C</usr/bin> and C</bin>.  If you require a program from
1537 another location, you should provide the full path in the
1538 first parameter.
1539
1540 Shared libraries and data files required by the program
1541 must be available on filesystems which are mounted in the
1542 correct places.  It is the caller's responsibility to ensure
1543 all filesystems that are needed are mounted at the right
1544 locations.");
1545
1546   ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [ProtocolLimitWarning],
1547    [InitBasicFS, Always, TestOutputList (
1548       [["upload"; "test-command"; "/test-command"];
1549        ["chmod"; "0o755"; "/test-command"];
1550        ["command_lines"; "/test-command 1"]], ["Result1"]);
1551     InitBasicFS, Always, TestOutputList (
1552       [["upload"; "test-command"; "/test-command"];
1553        ["chmod"; "0o755"; "/test-command"];
1554        ["command_lines"; "/test-command 2"]], ["Result2"]);
1555     InitBasicFS, Always, TestOutputList (
1556       [["upload"; "test-command"; "/test-command"];
1557        ["chmod"; "0o755"; "/test-command"];
1558        ["command_lines"; "/test-command 3"]], ["";"Result3"]);
1559     InitBasicFS, Always, TestOutputList (
1560       [["upload"; "test-command"; "/test-command"];
1561        ["chmod"; "0o755"; "/test-command"];
1562        ["command_lines"; "/test-command 4"]], ["";"Result4"]);
1563     InitBasicFS, Always, TestOutputList (
1564       [["upload"; "test-command"; "/test-command"];
1565        ["chmod"; "0o755"; "/test-command"];
1566        ["command_lines"; "/test-command 5"]], ["";"Result5";""]);
1567     InitBasicFS, Always, TestOutputList (
1568       [["upload"; "test-command"; "/test-command"];
1569        ["chmod"; "0o755"; "/test-command"];
1570        ["command_lines"; "/test-command 6"]], ["";"";"Result6";""]);
1571     InitBasicFS, Always, TestOutputList (
1572       [["upload"; "test-command"; "/test-command"];
1573        ["chmod"; "0o755"; "/test-command"];
1574        ["command_lines"; "/test-command 7"]], []);
1575     InitBasicFS, Always, TestOutputList (
1576       [["upload"; "test-command"; "/test-command"];
1577        ["chmod"; "0o755"; "/test-command"];
1578        ["command_lines"; "/test-command 8"]], [""]);
1579     InitBasicFS, Always, TestOutputList (
1580       [["upload"; "test-command"; "/test-command"];
1581        ["chmod"; "0o755"; "/test-command"];
1582        ["command_lines"; "/test-command 9"]], ["";""]);
1583     InitBasicFS, Always, TestOutputList (
1584       [["upload"; "test-command"; "/test-command"];
1585        ["chmod"; "0o755"; "/test-command"];
1586        ["command_lines"; "/test-command 10"]], ["Result10-1";"Result10-2"]);
1587     InitBasicFS, Always, TestOutputList (
1588       [["upload"; "test-command"; "/test-command"];
1589        ["chmod"; "0o755"; "/test-command"];
1590        ["command_lines"; "/test-command 11"]], ["Result11-1";"Result11-2"])],
1591    "run a command, returning lines",
1592    "\
1593 This is the same as C<guestfs_command>, but splits the
1594 result into a list of lines.
1595
1596 See also: C<guestfs_sh_lines>");
1597
1598   ("stat", (RStruct ("statbuf", "stat"), [String "path"]), 52, [],
1599    [InitSquashFS, Always, TestOutputStruct (
1600       [["stat"; "/empty"]], [CompareWithInt ("size", 0)])],
1601    "get file information",
1602    "\
1603 Returns file information for the given C<path>.
1604
1605 This is the same as the C<stat(2)> system call.");
1606
1607   ("lstat", (RStruct ("statbuf", "stat"), [String "path"]), 53, [],
1608    [InitSquashFS, Always, TestOutputStruct (
1609       [["lstat"; "/empty"]], [CompareWithInt ("size", 0)])],
1610    "get file information for a symbolic link",
1611    "\
1612 Returns file information for the given C<path>.
1613
1614 This is the same as C<guestfs_stat> except that if C<path>
1615 is a symbolic link, then the link is stat-ed, not the file it
1616 refers to.
1617
1618 This is the same as the C<lstat(2)> system call.");
1619
1620   ("statvfs", (RStruct ("statbuf", "statvfs"), [String "path"]), 54, [],
1621    [InitSquashFS, Always, TestOutputStruct (
1622       [["statvfs"; "/"]], [CompareWithInt ("namemax", 256);
1623                            CompareWithInt ("bsize", 131072)])],
1624    "get file system statistics",
1625    "\
1626 Returns file system statistics for any mounted file system.
1627 C<path> should be a file or directory in the mounted file system
1628 (typically it is the mount point itself, but it doesn't need to be).
1629
1630 This is the same as the C<statvfs(2)> system call.");
1631
1632   ("tune2fs_l", (RHashtable "superblock", [String "device"]), 55, [],
1633    [], (* XXX test *)
1634    "get ext2/ext3/ext4 superblock details",
1635    "\
1636 This returns the contents of the ext2, ext3 or ext4 filesystem
1637 superblock on C<device>.
1638
1639 It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)>
1640 manpage for more details.  The list of fields returned isn't
1641 clearly defined, and depends on both the version of C<tune2fs>
1642 that libguestfs was built against, and the filesystem itself.");
1643
1644   ("blockdev_setro", (RErr, [String "device"]), 56, [],
1645    [InitEmpty, Always, TestOutputTrue (
1646       [["blockdev_setro"; "/dev/sda"];
1647        ["blockdev_getro"; "/dev/sda"]])],
1648    "set block device to read-only",
1649    "\
1650 Sets the block device named C<device> to read-only.
1651
1652 This uses the L<blockdev(8)> command.");
1653
1654   ("blockdev_setrw", (RErr, [String "device"]), 57, [],
1655    [InitEmpty, Always, TestOutputFalse (
1656       [["blockdev_setrw"; "/dev/sda"];
1657        ["blockdev_getro"; "/dev/sda"]])],
1658    "set block device to read-write",
1659    "\
1660 Sets the block device named C<device> to read-write.
1661
1662 This uses the L<blockdev(8)> command.");
1663
1664   ("blockdev_getro", (RBool "ro", [String "device"]), 58, [],
1665    [InitEmpty, Always, TestOutputTrue (
1666       [["blockdev_setro"; "/dev/sda"];
1667        ["blockdev_getro"; "/dev/sda"]])],
1668    "is block device set to read-only",
1669    "\
1670 Returns a boolean indicating if the block device is read-only
1671 (true if read-only, false if not).
1672
1673 This uses the L<blockdev(8)> command.");
1674
1675   ("blockdev_getss", (RInt "sectorsize", [String "device"]), 59, [],
1676    [InitEmpty, Always, TestOutputInt (
1677       [["blockdev_getss"; "/dev/sda"]], 512)],
1678    "get sectorsize of block device",
1679    "\
1680 This returns the size of sectors on a block device.
1681 Usually 512, but can be larger for modern devices.
1682
1683 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1684 for that).
1685
1686 This uses the L<blockdev(8)> command.");
1687
1688   ("blockdev_getbsz", (RInt "blocksize", [String "device"]), 60, [],
1689    [InitEmpty, Always, TestOutputInt (
1690       [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1691    "get blocksize of block device",
1692    "\
1693 This returns the block size of a device.
1694
1695 (Note this is different from both I<size in blocks> and
1696 I<filesystem block size>).
1697
1698 This uses the L<blockdev(8)> command.");
1699
1700   ("blockdev_setbsz", (RErr, [String "device"; Int "blocksize"]), 61, [],
1701    [], (* XXX test *)
1702    "set blocksize of block device",
1703    "\
1704 This sets the block size of a device.
1705
1706 (Note this is different from both I<size in blocks> and
1707 I<filesystem block size>).
1708
1709 This uses the L<blockdev(8)> command.");
1710
1711   ("blockdev_getsz", (RInt64 "sizeinsectors", [String "device"]), 62, [],
1712    [InitEmpty, Always, TestOutputInt (
1713       [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1714    "get total size of device in 512-byte sectors",
1715    "\
1716 This returns the size of the device in units of 512-byte sectors
1717 (even if the sectorsize isn't 512 bytes ... weird).
1718
1719 See also C<guestfs_blockdev_getss> for the real sector size of
1720 the device, and C<guestfs_blockdev_getsize64> for the more
1721 useful I<size in bytes>.
1722
1723 This uses the L<blockdev(8)> command.");
1724
1725   ("blockdev_getsize64", (RInt64 "sizeinbytes", [String "device"]), 63, [],
1726    [InitEmpty, Always, TestOutputInt (
1727       [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1728    "get total size of device in bytes",
1729    "\
1730 This returns the size of the device in bytes.
1731
1732 See also C<guestfs_blockdev_getsz>.
1733
1734 This uses the L<blockdev(8)> command.");
1735
1736   ("blockdev_flushbufs", (RErr, [String "device"]), 64, [],
1737    [InitEmpty, Always, TestRun
1738       [["blockdev_flushbufs"; "/dev/sda"]]],
1739    "flush device buffers",
1740    "\
1741 This tells the kernel to flush internal buffers associated
1742 with C<device>.
1743
1744 This uses the L<blockdev(8)> command.");
1745
1746   ("blockdev_rereadpt", (RErr, [String "device"]), 65, [],
1747    [InitEmpty, Always, TestRun
1748       [["blockdev_rereadpt"; "/dev/sda"]]],
1749    "reread partition table",
1750    "\
1751 Reread the partition table on C<device>.
1752
1753 This uses the L<blockdev(8)> command.");
1754
1755   ("upload", (RErr, [FileIn "filename"; String "remotefilename"]), 66, [],
1756    [InitBasicFS, Always, TestOutput (
1757       (* Pick a file from cwd which isn't likely to change. *)
1758       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1759        ["checksum"; "md5"; "/COPYING.LIB"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1760    "upload a file from the local machine",
1761    "\
1762 Upload local file C<filename> to C<remotefilename> on the
1763 filesystem.
1764
1765 C<filename> can also be a named pipe.
1766
1767 See also C<guestfs_download>.");
1768
1769   ("download", (RErr, [String "remotefilename"; FileOut "filename"]), 67, [],
1770    [InitBasicFS, Always, TestOutput (
1771       (* Pick a file from cwd which isn't likely to change. *)
1772       [["upload"; "../COPYING.LIB"; "/COPYING.LIB"];
1773        ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1774        ["upload"; "testdownload.tmp"; "/upload"];
1775        ["checksum"; "md5"; "/upload"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1776    "download a file to the local machine",
1777    "\
1778 Download file C<remotefilename> and save it as C<filename>
1779 on the local machine.
1780
1781 C<filename> can also be a named pipe.
1782
1783 See also C<guestfs_upload>, C<guestfs_cat>.");
1784
1785   ("checksum", (RString "checksum", [String "csumtype"; String "path"]), 68, [],
1786    [InitSquashFS, Always, TestOutput (
1787       [["checksum"; "crc"; "/known-3"]], "2891671662");
1788     InitSquashFS, Always, TestLastFail (
1789       [["checksum"; "crc"; "/notexists"]]);
1790     InitSquashFS, Always, TestOutput (
1791       [["checksum"; "md5"; "/known-3"]], "46d6ca27ee07cdc6fa99c2e138cc522c");
1792     InitSquashFS, Always, TestOutput (
1793       [["checksum"; "sha1"; "/known-3"]], "b7ebccc3ee418311091c3eda0a45b83c0a770f15");
1794     InitSquashFS, Always, TestOutput (
1795       [["checksum"; "sha224"; "/known-3"]], "d2cd1774b28f3659c14116be0a6dc2bb5c4b350ce9cd5defac707741");
1796     InitSquashFS, Always, TestOutput (
1797       [["checksum"; "sha256"; "/known-3"]], "75bb71b90cd20cb13f86d2bea8dad63ac7194e7517c3b52b8d06ff52d3487d30");
1798     InitSquashFS, Always, TestOutput (
1799       [["checksum"; "sha384"; "/known-3"]], "5fa7883430f357b5d7b7271d3a1d2872b51d73cba72731de6863d3dea55f30646af2799bef44d5ea776a5ec7941ac640");
1800     InitSquashFS, Always, TestOutput (
1801       [["checksum"; "sha512"; "/known-3"]], "2794062c328c6b216dca90443b7f7134c5f40e56bd0ed7853123275a09982a6f992e6ca682f9d2fba34a4c5e870d8fe077694ff831e3032a004ee077e00603f6")],
1802    "compute MD5, SHAx or CRC checksum of file",
1803    "\
1804 This call computes the MD5, SHAx or CRC checksum of the
1805 file named C<path>.
1806
1807 The type of checksum to compute is given by the C<csumtype>
1808 parameter which must have one of the following values:
1809
1810 =over 4
1811
1812 =item C<crc>
1813
1814 Compute the cyclic redundancy check (CRC) specified by POSIX
1815 for the C<cksum> command.
1816
1817 =item C<md5>
1818
1819 Compute the MD5 hash (using the C<md5sum> program).
1820
1821 =item C<sha1>
1822
1823 Compute the SHA1 hash (using the C<sha1sum> program).
1824
1825 =item C<sha224>
1826
1827 Compute the SHA224 hash (using the C<sha224sum> program).
1828
1829 =item C<sha256>
1830
1831 Compute the SHA256 hash (using the C<sha256sum> program).
1832
1833 =item C<sha384>
1834
1835 Compute the SHA384 hash (using the C<sha384sum> program).
1836
1837 =item C<sha512>
1838
1839 Compute the SHA512 hash (using the C<sha512sum> program).
1840
1841 =back
1842
1843 The checksum is returned as a printable string.");
1844
1845   ("tar_in", (RErr, [FileIn "tarfile"; String "directory"]), 69, [],
1846    [InitBasicFS, Always, TestOutput (
1847       [["tar_in"; "../images/helloworld.tar"; "/"];
1848        ["cat"; "/hello"]], "hello\n")],
1849    "unpack tarfile to directory",
1850    "\
1851 This command uploads and unpacks local file C<tarfile> (an
1852 I<uncompressed> tar file) into C<directory>.
1853
1854 To upload a compressed tarball, use C<guestfs_tgz_in>.");
1855
1856   ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
1857    [],
1858    "pack directory into tarfile",
1859    "\
1860 This command packs the contents of C<directory> and downloads
1861 it to local file C<tarfile>.
1862
1863 To download a compressed tarball, use C<guestfs_tgz_out>.");
1864
1865   ("tgz_in", (RErr, [FileIn "tarball"; String "directory"]), 71, [],
1866    [InitBasicFS, Always, TestOutput (
1867       [["tgz_in"; "../images/helloworld.tar.gz"; "/"];
1868        ["cat"; "/hello"]], "hello\n")],
1869    "unpack compressed tarball to directory",
1870    "\
1871 This command uploads and unpacks local file C<tarball> (a
1872 I<gzip compressed> tar file) into C<directory>.
1873
1874 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
1875
1876   ("tgz_out", (RErr, [String "directory"; FileOut "tarball"]), 72, [],
1877    [],
1878    "pack directory into compressed tarball",
1879    "\
1880 This command packs the contents of C<directory> and downloads
1881 it to local file C<tarball>.
1882
1883 To download an uncompressed tarball, use C<guestfs_tar_out>.");
1884
1885   ("mount_ro", (RErr, [String "device"; String "mountpoint"]), 73, [],
1886    [InitBasicFS, Always, TestLastFail (
1887       [["umount"; "/"];
1888        ["mount_ro"; "/dev/sda1"; "/"];
1889        ["touch"; "/new"]]);
1890     InitBasicFS, Always, TestOutput (
1891       [["write_file"; "/new"; "data"; "0"];
1892        ["umount"; "/"];
1893        ["mount_ro"; "/dev/sda1"; "/"];
1894        ["cat"; "/new"]], "data")],
1895    "mount a guest disk, read-only",
1896    "\
1897 This is the same as the C<guestfs_mount> command, but it
1898 mounts the filesystem with the read-only (I<-o ro>) flag.");
1899
1900   ("mount_options", (RErr, [String "options"; String "device"; String "mountpoint"]), 74, [],
1901    [],
1902    "mount a guest disk with mount options",
1903    "\
1904 This is the same as the C<guestfs_mount> command, but it
1905 allows you to set the mount options as for the
1906 L<mount(8)> I<-o> flag.");
1907
1908   ("mount_vfs", (RErr, [String "options"; String "vfstype"; String "device"; String "mountpoint"]), 75, [],
1909    [],
1910    "mount a guest disk with mount options and vfstype",
1911    "\
1912 This is the same as the C<guestfs_mount> command, but it
1913 allows you to set both the mount options and the vfstype
1914 as for the L<mount(8)> I<-o> and I<-t> flags.");
1915
1916   ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
1917    [],
1918    "debugging and internals",
1919    "\
1920 The C<guestfs_debug> command exposes some internals of
1921 C<guestfsd> (the guestfs daemon) that runs inside the
1922 qemu subprocess.
1923
1924 There is no comprehensive help for this command.  You have
1925 to look at the file C<daemon/debug.c> in the libguestfs source
1926 to find out what you can do.");
1927
1928   ("lvremove", (RErr, [String "device"]), 77, [],
1929    [InitEmpty, Always, TestOutputList (
1930       [["sfdiskM"; "/dev/sda"; ","];
1931        ["pvcreate"; "/dev/sda1"];
1932        ["vgcreate"; "VG"; "/dev/sda1"];
1933        ["lvcreate"; "LV1"; "VG"; "50"];
1934        ["lvcreate"; "LV2"; "VG"; "50"];
1935        ["lvremove"; "/dev/VG/LV1"];
1936        ["lvs"]], ["/dev/VG/LV2"]);
1937     InitEmpty, Always, TestOutputList (
1938       [["sfdiskM"; "/dev/sda"; ","];
1939        ["pvcreate"; "/dev/sda1"];
1940        ["vgcreate"; "VG"; "/dev/sda1"];
1941        ["lvcreate"; "LV1"; "VG"; "50"];
1942        ["lvcreate"; "LV2"; "VG"; "50"];
1943        ["lvremove"; "/dev/VG"];
1944        ["lvs"]], []);
1945     InitEmpty, Always, TestOutputList (
1946       [["sfdiskM"; "/dev/sda"; ","];
1947        ["pvcreate"; "/dev/sda1"];
1948        ["vgcreate"; "VG"; "/dev/sda1"];
1949        ["lvcreate"; "LV1"; "VG"; "50"];
1950        ["lvcreate"; "LV2"; "VG"; "50"];
1951        ["lvremove"; "/dev/VG"];
1952        ["vgs"]], ["VG"])],
1953    "remove an LVM logical volume",
1954    "\
1955 Remove an LVM logical volume C<device>, where C<device> is
1956 the path to the LV, such as C</dev/VG/LV>.
1957
1958 You can also remove all LVs in a volume group by specifying
1959 the VG name, C</dev/VG>.");
1960
1961   ("vgremove", (RErr, [String "vgname"]), 78, [],
1962    [InitEmpty, Always, TestOutputList (
1963       [["sfdiskM"; "/dev/sda"; ","];
1964        ["pvcreate"; "/dev/sda1"];
1965        ["vgcreate"; "VG"; "/dev/sda1"];
1966        ["lvcreate"; "LV1"; "VG"; "50"];
1967        ["lvcreate"; "LV2"; "VG"; "50"];
1968        ["vgremove"; "VG"];
1969        ["lvs"]], []);
1970     InitEmpty, Always, TestOutputList (
1971       [["sfdiskM"; "/dev/sda"; ","];
1972        ["pvcreate"; "/dev/sda1"];
1973        ["vgcreate"; "VG"; "/dev/sda1"];
1974        ["lvcreate"; "LV1"; "VG"; "50"];
1975        ["lvcreate"; "LV2"; "VG"; "50"];
1976        ["vgremove"; "VG"];
1977        ["vgs"]], [])],
1978    "remove an LVM volume group",
1979    "\
1980 Remove an LVM volume group C<vgname>, (for example C<VG>).
1981
1982 This also forcibly removes all logical volumes in the volume
1983 group (if any).");
1984
1985   ("pvremove", (RErr, [String "device"]), 79, [],
1986    [InitEmpty, Always, TestOutputListOfDevices (
1987       [["sfdiskM"; "/dev/sda"; ","];
1988        ["pvcreate"; "/dev/sda1"];
1989        ["vgcreate"; "VG"; "/dev/sda1"];
1990        ["lvcreate"; "LV1"; "VG"; "50"];
1991        ["lvcreate"; "LV2"; "VG"; "50"];
1992        ["vgremove"; "VG"];
1993        ["pvremove"; "/dev/sda1"];
1994        ["lvs"]], []);
1995     InitEmpty, Always, TestOutputListOfDevices (
1996       [["sfdiskM"; "/dev/sda"; ","];
1997        ["pvcreate"; "/dev/sda1"];
1998        ["vgcreate"; "VG"; "/dev/sda1"];
1999        ["lvcreate"; "LV1"; "VG"; "50"];
2000        ["lvcreate"; "LV2"; "VG"; "50"];
2001        ["vgremove"; "VG"];
2002        ["pvremove"; "/dev/sda1"];
2003        ["vgs"]], []);
2004     InitEmpty, Always, TestOutputListOfDevices (
2005       [["sfdiskM"; "/dev/sda"; ","];
2006        ["pvcreate"; "/dev/sda1"];
2007        ["vgcreate"; "VG"; "/dev/sda1"];
2008        ["lvcreate"; "LV1"; "VG"; "50"];
2009        ["lvcreate"; "LV2"; "VG"; "50"];
2010        ["vgremove"; "VG"];
2011        ["pvremove"; "/dev/sda1"];
2012        ["pvs"]], [])],
2013    "remove an LVM physical volume",
2014    "\
2015 This wipes a physical volume C<device> so that LVM will no longer
2016 recognise it.
2017
2018 The implementation uses the C<pvremove> command which refuses to
2019 wipe physical volumes that contain any volume groups, so you have
2020 to remove those first.");
2021
2022   ("set_e2label", (RErr, [String "device"; String "label"]), 80, [],
2023    [InitBasicFS, Always, TestOutput (
2024       [["set_e2label"; "/dev/sda1"; "testlabel"];
2025        ["get_e2label"; "/dev/sda1"]], "testlabel")],
2026    "set the ext2/3/4 filesystem label",
2027    "\
2028 This sets the ext2/3/4 filesystem label of the filesystem on
2029 C<device> to C<label>.  Filesystem labels are limited to
2030 16 characters.
2031
2032 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
2033 to return the existing label on a filesystem.");
2034
2035   ("get_e2label", (RString "label", [String "device"]), 81, [],
2036    [],
2037    "get the ext2/3/4 filesystem label",
2038    "\
2039 This returns the ext2/3/4 filesystem label of the filesystem on
2040 C<device>.");
2041
2042   ("set_e2uuid", (RErr, [String "device"; String "uuid"]), 82, [],
2043    [InitBasicFS, Always, TestOutput (
2044       [["set_e2uuid"; "/dev/sda1"; "a3a61220-882b-4f61-89f4-cf24dcc7297d"];
2045        ["get_e2uuid"; "/dev/sda1"]], "a3a61220-882b-4f61-89f4-cf24dcc7297d");
2046     InitBasicFS, Always, TestOutput (
2047       [["set_e2uuid"; "/dev/sda1"; "clear"];
2048        ["get_e2uuid"; "/dev/sda1"]], "");
2049     (* We can't predict what UUIDs will be, so just check the commands run. *)
2050     InitBasicFS, Always, TestRun (
2051       [["set_e2uuid"; "/dev/sda1"; "random"]]);
2052     InitBasicFS, Always, TestRun (
2053       [["set_e2uuid"; "/dev/sda1"; "time"]])],
2054    "set the ext2/3/4 filesystem UUID",
2055    "\
2056 This sets the ext2/3/4 filesystem UUID of the filesystem on
2057 C<device> to C<uuid>.  The format of the UUID and alternatives
2058 such as C<clear>, C<random> and C<time> are described in the
2059 L<tune2fs(8)> manpage.
2060
2061 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
2062 to return the existing UUID of a filesystem.");
2063
2064   ("get_e2uuid", (RString "uuid", [String "device"]), 83, [],
2065    [],
2066    "get the ext2/3/4 filesystem UUID",
2067    "\
2068 This returns the ext2/3/4 filesystem UUID of the filesystem on
2069 C<device>.");
2070
2071   ("fsck", (RInt "status", [String "fstype"; String "device"]), 84, [],
2072    [InitBasicFS, Always, TestOutputInt (
2073       [["umount"; "/dev/sda1"];
2074        ["fsck"; "ext2"; "/dev/sda1"]], 0);
2075     InitBasicFS, Always, TestOutputInt (
2076       [["umount"; "/dev/sda1"];
2077        ["zero"; "/dev/sda1"];
2078        ["fsck"; "ext2"; "/dev/sda1"]], 8)],
2079    "run the filesystem checker",
2080    "\
2081 This runs the filesystem checker (fsck) on C<device> which
2082 should have filesystem type C<fstype>.
2083
2084 The returned integer is the status.  See L<fsck(8)> for the
2085 list of status codes from C<fsck>.
2086
2087 Notes:
2088
2089 =over 4
2090
2091 =item *
2092
2093 Multiple status codes can be summed together.
2094
2095 =item *
2096
2097 A non-zero return code can mean \"success\", for example if
2098 errors have been corrected on the filesystem.
2099
2100 =item *
2101
2102 Checking or repairing NTFS volumes is not supported
2103 (by linux-ntfs).
2104
2105 =back
2106
2107 This command is entirely equivalent to running C<fsck -a -t fstype device>.");
2108
2109   ("zero", (RErr, [String "device"]), 85, [],
2110    [InitBasicFS, Always, TestOutput (
2111       [["umount"; "/dev/sda1"];
2112        ["zero"; "/dev/sda1"];
2113        ["file"; "/dev/sda1"]], "data")],
2114    "write zeroes to the device",
2115    "\
2116 This command writes zeroes over the first few blocks of C<device>.
2117
2118 How many blocks are zeroed isn't specified (but it's I<not> enough
2119 to securely wipe the device).  It should be sufficient to remove
2120 any partition tables, filesystem superblocks and so on.
2121
2122 See also: C<guestfs_scrub_device>.");
2123
2124   ("grub_install", (RErr, [String "root"; String "device"]), 86, [],
2125    (* Test disabled because grub-install incompatible with virtio-blk driver.
2126     * See also: https://bugzilla.redhat.com/show_bug.cgi?id=479760
2127     *)
2128    [InitBasicFS, Disabled, TestOutputTrue (
2129       [["grub_install"; "/"; "/dev/sda1"];
2130        ["is_dir"; "/boot"]])],
2131    "install GRUB",
2132    "\
2133 This command installs GRUB (the Grand Unified Bootloader) on
2134 C<device>, with the root directory being C<root>.");
2135
2136   ("cp", (RErr, [String "src"; String "dest"]), 87, [],
2137    [InitBasicFS, Always, TestOutput (
2138       [["write_file"; "/old"; "file content"; "0"];
2139        ["cp"; "/old"; "/new"];
2140        ["cat"; "/new"]], "file content");
2141     InitBasicFS, Always, TestOutputTrue (
2142       [["write_file"; "/old"; "file content"; "0"];
2143        ["cp"; "/old"; "/new"];
2144        ["is_file"; "/old"]]);
2145     InitBasicFS, Always, TestOutput (
2146       [["write_file"; "/old"; "file content"; "0"];
2147        ["mkdir"; "/dir"];
2148        ["cp"; "/old"; "/dir/new"];
2149        ["cat"; "/dir/new"]], "file content")],
2150    "copy a file",
2151    "\
2152 This copies a file from C<src> to C<dest> where C<dest> is
2153 either a destination filename or destination directory.");
2154
2155   ("cp_a", (RErr, [String "src"; String "dest"]), 88, [],
2156    [InitBasicFS, Always, TestOutput (
2157       [["mkdir"; "/olddir"];
2158        ["mkdir"; "/newdir"];
2159        ["write_file"; "/olddir/file"; "file content"; "0"];
2160        ["cp_a"; "/olddir"; "/newdir"];
2161        ["cat"; "/newdir/olddir/file"]], "file content")],
2162    "copy a file or directory recursively",
2163    "\
2164 This copies a file or directory from C<src> to C<dest>
2165 recursively using the C<cp -a> command.");
2166
2167   ("mv", (RErr, [String "src"; String "dest"]), 89, [],
2168    [InitBasicFS, Always, TestOutput (
2169       [["write_file"; "/old"; "file content"; "0"];
2170        ["mv"; "/old"; "/new"];
2171        ["cat"; "/new"]], "file content");
2172     InitBasicFS, Always, TestOutputFalse (
2173       [["write_file"; "/old"; "file content"; "0"];
2174        ["mv"; "/old"; "/new"];
2175        ["is_file"; "/old"]])],
2176    "move a file",
2177    "\
2178 This moves a file from C<src> to C<dest> where C<dest> is
2179 either a destination filename or destination directory.");
2180
2181   ("drop_caches", (RErr, [Int "whattodrop"]), 90, [],
2182    [InitEmpty, Always, TestRun (
2183       [["drop_caches"; "3"]])],
2184    "drop kernel page cache, dentries and inodes",
2185    "\
2186 This instructs the guest kernel to drop its page cache,
2187 and/or dentries and inode caches.  The parameter C<whattodrop>
2188 tells the kernel what precisely to drop, see
2189 L<http://linux-mm.org/Drop_Caches>
2190
2191 Setting C<whattodrop> to 3 should drop everything.
2192
2193 This automatically calls L<sync(2)> before the operation,
2194 so that the maximum guest memory is freed.");
2195
2196   ("dmesg", (RString "kmsgs", []), 91, [],
2197    [InitEmpty, Always, TestRun (
2198       [["dmesg"]])],
2199    "return kernel messages",
2200    "\
2201 This returns the kernel messages (C<dmesg> output) from
2202 the guest kernel.  This is sometimes useful for extended
2203 debugging of problems.
2204
2205 Another way to get the same information is to enable
2206 verbose messages with C<guestfs_set_verbose> or by setting
2207 the environment variable C<LIBGUESTFS_DEBUG=1> before
2208 running the program.");
2209
2210   ("ping_daemon", (RErr, []), 92, [],
2211    [InitEmpty, Always, TestRun (
2212       [["ping_daemon"]])],
2213    "ping the guest daemon",
2214    "\
2215 This is a test probe into the guestfs daemon running inside
2216 the qemu subprocess.  Calling this function checks that the
2217 daemon responds to the ping message, without affecting the daemon
2218 or attached block device(s) in any other way.");
2219
2220   ("equal", (RBool "equality", [String "file1"; String "file2"]), 93, [],
2221    [InitBasicFS, Always, TestOutputTrue (
2222       [["write_file"; "/file1"; "contents of a file"; "0"];
2223        ["cp"; "/file1"; "/file2"];
2224        ["equal"; "/file1"; "/file2"]]);
2225     InitBasicFS, Always, TestOutputFalse (
2226       [["write_file"; "/file1"; "contents of a file"; "0"];
2227        ["write_file"; "/file2"; "contents of another file"; "0"];
2228        ["equal"; "/file1"; "/file2"]]);
2229     InitBasicFS, Always, TestLastFail (
2230       [["equal"; "/file1"; "/file2"]])],
2231    "test if two files have equal contents",
2232    "\
2233 This compares the two files C<file1> and C<file2> and returns
2234 true if their content is exactly equal, or false otherwise.
2235
2236 The external L<cmp(1)> program is used for the comparison.");
2237
2238   ("strings", (RStringList "stringsout", [String "path"]), 94, [ProtocolLimitWarning],
2239    [InitSquashFS, Always, TestOutputList (
2240       [["strings"; "/known-5"]], ["abcdefghi"; "jklmnopqr"]);
2241     InitSquashFS, Always, TestOutputList (
2242       [["strings"; "/empty"]], [])],
2243    "print the printable strings in a file",
2244    "\
2245 This runs the L<strings(1)> command on a file and returns
2246 the list of printable strings found.");
2247
2248   ("strings_e", (RStringList "stringsout", [String "encoding"; String "path"]), 95, [ProtocolLimitWarning],
2249    [InitSquashFS, Always, TestOutputList (
2250       [["strings_e"; "b"; "/known-5"]], []);
2251     InitBasicFS, Disabled, TestOutputList (
2252       [["write_file"; "/new"; "\000h\000e\000l\000l\000o\000\n\000w\000o\000r\000l\000d\000\n"; "24"];
2253        ["strings_e"; "b"; "/new"]], ["hello"; "world"])],
2254    "print the printable strings in a file",
2255    "\
2256 This is like the C<guestfs_strings> command, but allows you to
2257 specify the encoding.
2258
2259 See the L<strings(1)> manpage for the full list of encodings.
2260
2261 Commonly useful encodings are C<l> (lower case L) which will
2262 show strings inside Windows/x86 files.
2263
2264 The returned strings are transcoded to UTF-8.");
2265
2266   ("hexdump", (RString "dump", [String "path"]), 96, [ProtocolLimitWarning],
2267    [InitSquashFS, Always, TestOutput (
2268       [["hexdump"; "/known-4"]], "00000000  61 62 63 0a 64 65 66 0a  67 68 69                 |abc.def.ghi|\n0000000b\n");
2269     (* Test for RHBZ#501888c2 regression which caused large hexdump
2270      * commands to segfault.
2271      *)
2272     InitSquashFS, Always, TestRun (
2273       [["hexdump"; "/100krandom"]])],
2274    "dump a file in hexadecimal",
2275    "\
2276 This runs C<hexdump -C> on the given C<path>.  The result is
2277 the human-readable, canonical hex dump of the file.");
2278
2279   ("zerofree", (RErr, [String "device"]), 97, [],
2280    [InitNone, Always, TestOutput (
2281       [["sfdiskM"; "/dev/sda"; ","];
2282        ["mkfs"; "ext3"; "/dev/sda1"];
2283        ["mount"; "/dev/sda1"; "/"];
2284        ["write_file"; "/new"; "test file"; "0"];
2285        ["umount"; "/dev/sda1"];
2286        ["zerofree"; "/dev/sda1"];
2287        ["mount"; "/dev/sda1"; "/"];
2288        ["cat"; "/new"]], "test file")],
2289    "zero unused inodes and disk blocks on ext2/3 filesystem",
2290    "\
2291 This runs the I<zerofree> program on C<device>.  This program
2292 claims to zero unused inodes and disk blocks on an ext2/3
2293 filesystem, thus making it possible to compress the filesystem
2294 more effectively.
2295
2296 You should B<not> run this program if the filesystem is
2297 mounted.
2298
2299 It is possible that using this program can damage the filesystem
2300 or data on the filesystem.");
2301
2302   ("pvresize", (RErr, [String "device"]), 98, [],
2303    [],
2304    "resize an LVM physical volume",
2305    "\
2306 This resizes (expands or shrinks) an existing LVM physical
2307 volume to match the new size of the underlying device.");
2308
2309   ("sfdisk_N", (RErr, [String "device"; Int "partnum";
2310                        Int "cyls"; Int "heads"; Int "sectors";
2311                        String "line"]), 99, [DangerWillRobinson],
2312    [],
2313    "modify a single partition on a block device",
2314    "\
2315 This runs L<sfdisk(8)> option to modify just the single
2316 partition C<n> (note: C<n> counts from 1).
2317
2318 For other parameters, see C<guestfs_sfdisk>.  You should usually
2319 pass C<0> for the cyls/heads/sectors parameters.");
2320
2321   ("sfdisk_l", (RString "partitions", [String "device"]), 100, [],
2322    [],
2323    "display the partition table",
2324    "\
2325 This displays the partition table on C<device>, in the
2326 human-readable output of the L<sfdisk(8)> command.  It is
2327 not intended to be parsed.");
2328
2329   ("sfdisk_kernel_geometry", (RString "partitions", [String "device"]), 101, [],
2330    [],
2331    "display the kernel geometry",
2332    "\
2333 This displays the kernel's idea of the geometry of C<device>.
2334
2335 The result is in human-readable format, and not designed to
2336 be parsed.");
2337
2338   ("sfdisk_disk_geometry", (RString "partitions", [String "device"]), 102, [],
2339    [],
2340    "display the disk geometry from the partition table",
2341    "\
2342 This displays the disk geometry of C<device> read from the
2343 partition table.  Especially in the case where the underlying
2344 block device has been resized, this can be different from the
2345 kernel's idea of the geometry (see C<guestfs_sfdisk_kernel_geometry>).
2346
2347 The result is in human-readable format, and not designed to
2348 be parsed.");
2349
2350   ("vg_activate_all", (RErr, [Bool "activate"]), 103, [],
2351    [],
2352    "activate or deactivate all volume groups",
2353    "\
2354 This command activates or (if C<activate> is false) deactivates
2355 all logical volumes in all volume groups.
2356 If activated, then they are made known to the
2357 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2358 then those devices disappear.
2359
2360 This command is the same as running C<vgchange -a y|n>");
2361
2362   ("vg_activate", (RErr, [Bool "activate"; StringList "volgroups"]), 104, [],
2363    [],
2364    "activate or deactivate some volume groups",
2365    "\
2366 This command activates or (if C<activate> is false) deactivates
2367 all logical volumes in the listed volume groups C<volgroups>.
2368 If activated, then they are made known to the
2369 kernel, ie. they appear as C</dev/mapper> devices.  If deactivated,
2370 then those devices disappear.
2371
2372 This command is the same as running C<vgchange -a y|n volgroups...>
2373
2374 Note that if C<volgroups> is an empty list then B<all> volume groups
2375 are activated or deactivated.");
2376
2377   ("lvresize", (RErr, [String "device"; Int "mbytes"]), 105, [],
2378    [InitNone, Always, TestOutput (
2379       [["sfdiskM"; "/dev/sda"; ","];
2380        ["pvcreate"; "/dev/sda1"];
2381        ["vgcreate"; "VG"; "/dev/sda1"];
2382        ["lvcreate"; "LV"; "VG"; "10"];
2383        ["mkfs"; "ext2"; "/dev/VG/LV"];
2384        ["mount"; "/dev/VG/LV"; "/"];
2385        ["write_file"; "/new"; "test content"; "0"];
2386        ["umount"; "/"];
2387        ["lvresize"; "/dev/VG/LV"; "20"];
2388        ["e2fsck_f"; "/dev/VG/LV"];
2389        ["resize2fs"; "/dev/VG/LV"];
2390        ["mount"; "/dev/VG/LV"; "/"];
2391        ["cat"; "/new"]], "test content")],
2392    "resize an LVM logical volume",
2393    "\
2394 This resizes (expands or shrinks) an existing LVM logical
2395 volume to C<mbytes>.  When reducing, data in the reduced part
2396 is lost.");
2397
2398   ("resize2fs", (RErr, [String "device"]), 106, [],
2399    [], (* lvresize tests this *)
2400    "resize an ext2/ext3 filesystem",
2401    "\
2402 This resizes an ext2 or ext3 filesystem to match the size of
2403 the underlying device.
2404
2405 I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f>
2406 on the C<device> before calling this command.  For unknown reasons
2407 C<resize2fs> sometimes gives an error about this and sometimes not.
2408 In any case, it is always safe to call C<guestfs_e2fsck_f> before
2409 calling this function.");
2410
2411   ("find", (RStringList "names", [String "directory"]), 107, [],
2412    [InitBasicFS, Always, TestOutputList (
2413       [["find"; "/"]], ["lost+found"]);
2414     InitBasicFS, Always, TestOutputList (
2415       [["touch"; "/a"];
2416        ["mkdir"; "/b"];
2417        ["touch"; "/b/c"];
2418        ["find"; "/"]], ["a"; "b"; "b/c"; "lost+found"]);
2419     InitBasicFS, Always, TestOutputList (
2420       [["mkdir_p"; "/a/b/c"];
2421        ["touch"; "/a/b/c/d"];
2422        ["find"; "/a/b/"]], ["c"; "c/d"])],
2423    "find all files and directories",
2424    "\
2425 This command lists out all files and directories, recursively,
2426 starting at C<directory>.  It is essentially equivalent to
2427 running the shell command C<find directory -print> but some
2428 post-processing happens on the output, described below.
2429
2430 This returns a list of strings I<without any prefix>.  Thus
2431 if the directory structure was:
2432
2433  /tmp/a
2434  /tmp/b
2435  /tmp/c/d
2436
2437 then the returned list from C<guestfs_find> C</tmp> would be
2438 4 elements:
2439
2440  a
2441  b
2442  c
2443  c/d
2444
2445 If C<directory> is not a directory, then this command returns
2446 an error.
2447
2448 The returned list is sorted.");
2449
2450   ("e2fsck_f", (RErr, [String "device"]), 108, [],
2451    [], (* lvresize tests this *)
2452    "check an ext2/ext3 filesystem",
2453    "\
2454 This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3
2455 filesystem checker on C<device>, noninteractively (C<-p>),
2456 even if the filesystem appears to be clean (C<-f>).
2457
2458 This command is only needed because of C<guestfs_resize2fs>
2459 (q.v.).  Normally you should use C<guestfs_fsck>.");
2460
2461   ("sleep", (RErr, [Int "secs"]), 109, [],
2462    [InitNone, Always, TestRun (
2463       [["sleep"; "1"]])],
2464    "sleep for some seconds",
2465    "\
2466 Sleep for C<secs> seconds.");
2467
2468   ("ntfs_3g_probe", (RInt "status", [Bool "rw"; String "device"]), 110, [],
2469    [InitNone, Always, TestOutputInt (
2470       [["sfdiskM"; "/dev/sda"; ","];
2471        ["mkfs"; "ntfs"; "/dev/sda1"];
2472        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 0);
2473     InitNone, Always, TestOutputInt (
2474       [["sfdiskM"; "/dev/sda"; ","];
2475        ["mkfs"; "ext2"; "/dev/sda1"];
2476        ["ntfs_3g_probe"; "true"; "/dev/sda1"]], 12)],
2477    "probe NTFS volume",
2478    "\
2479 This command runs the L<ntfs-3g.probe(8)> command which probes
2480 an NTFS C<device> for mountability.  (Not all NTFS volumes can
2481 be mounted read-write, and some cannot be mounted at all).
2482
2483 C<rw> is a boolean flag.  Set it to true if you want to test
2484 if the volume can be mounted read-write.  Set it to false if
2485 you want to test if the volume can be mounted read-only.
2486
2487 The return value is an integer which C<0> if the operation
2488 would succeed, or some non-zero value documented in the
2489 L<ntfs-3g.probe(8)> manual page.");
2490
2491   ("sh", (RString "output", [String "command"]), 111, [],
2492    [], (* XXX needs tests *)
2493    "run a command via the shell",
2494    "\
2495 This call runs a command from the guest filesystem via the
2496 guest's C</bin/sh>.
2497
2498 This is like C<guestfs_command>, but passes the command to:
2499
2500  /bin/sh -c \"command\"
2501
2502 Depending on the guest's shell, this usually results in
2503 wildcards being expanded, shell expressions being interpolated
2504 and so on.
2505
2506 All the provisos about C<guestfs_command> apply to this call.");
2507
2508   ("sh_lines", (RStringList "lines", [String "command"]), 112, [],
2509    [], (* XXX needs tests *)
2510    "run a command via the shell returning lines",
2511    "\
2512 This is the same as C<guestfs_sh>, but splits the result
2513 into a list of lines.
2514
2515 See also: C<guestfs_command_lines>");
2516
2517   ("glob_expand", (RStringList "paths", [String "pattern"]), 113, [],
2518    [InitBasicFS, Always, TestOutputList (
2519       [["mkdir_p"; "/a/b/c"];
2520        ["touch"; "/a/b/c/d"];
2521        ["touch"; "/a/b/c/e"];
2522        ["glob_expand"; "/a/b/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2523     InitBasicFS, Always, TestOutputList (
2524       [["mkdir_p"; "/a/b/c"];
2525        ["touch"; "/a/b/c/d"];
2526        ["touch"; "/a/b/c/e"];
2527        ["glob_expand"; "/a/*/c/*"]], ["/a/b/c/d"; "/a/b/c/e"]);
2528     InitBasicFS, Always, TestOutputList (
2529       [["mkdir_p"; "/a/b/c"];
2530        ["touch"; "/a/b/c/d"];
2531        ["touch"; "/a/b/c/e"];
2532        ["glob_expand"; "/a/*/x/*"]], [])],
2533    "expand a wildcard path",
2534    "\
2535 This command searches for all the pathnames matching
2536 C<pattern> according to the wildcard expansion rules
2537 used by the shell.
2538
2539 If no paths match, then this returns an empty list
2540 (note: not an error).
2541
2542 It is just a wrapper around the C L<glob(3)> function
2543 with flags C<GLOB_MARK|GLOB_BRACE>.
2544 See that manual page for more details.");
2545
2546   ("scrub_device", (RErr, [String "device"]), 114, [DangerWillRobinson],
2547    [InitNone, Always, TestRun ( (* use /dev/sdc because it's smaller *)
2548       [["scrub_device"; "/dev/sdc"]])],
2549    "scrub (securely wipe) a device",
2550    "\
2551 This command writes patterns over C<device> to make data retrieval
2552 more difficult.
2553
2554 It is an interface to the L<scrub(1)> program.  See that
2555 manual page for more details.");
2556
2557   ("scrub_file", (RErr, [String "file"]), 115, [],
2558    [InitBasicFS, Always, TestRun (
2559       [["write_file"; "/file"; "content"; "0"];
2560        ["scrub_file"; "/file"]])],
2561    "scrub (securely wipe) a file",
2562    "\
2563 This command writes patterns over a file to make data retrieval
2564 more difficult.
2565
2566 The file is I<removed> after scrubbing.
2567
2568 It is an interface to the L<scrub(1)> program.  See that
2569 manual page for more details.");
2570
2571   ("scrub_freespace", (RErr, [String "dir"]), 116, [],
2572    [], (* XXX needs testing *)
2573    "scrub (securely wipe) free space",
2574    "\
2575 This command creates the directory C<dir> and then fills it
2576 with files until the filesystem is full, and scrubs the files
2577 as for C<guestfs_scrub_file>, and deletes them.
2578 The intention is to scrub any free space on the partition
2579 containing C<dir>.
2580
2581 It is an interface to the L<scrub(1)> program.  See that
2582 manual page for more details.");
2583
2584   ("mkdtemp", (RString "dir", [String "template"]), 117, [],
2585    [InitBasicFS, Always, TestRun (
2586       [["mkdir"; "/tmp"];
2587        ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2588    "create a temporary directory",
2589    "\
2590 This command creates a temporary directory.  The
2591 C<template> parameter should be a full pathname for the
2592 temporary directory name with the final six characters being
2593 \"XXXXXX\".
2594
2595 For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\",
2596 the second one being suitable for Windows filesystems.
2597
2598 The name of the temporary directory that was created
2599 is returned.
2600
2601 The temporary directory is created with mode 0700
2602 and is owned by root.
2603
2604 The caller is responsible for deleting the temporary
2605 directory and its contents after use.
2606
2607 See also: L<mkdtemp(3)>");
2608
2609   ("wc_l", (RInt "lines", [String "path"]), 118, [],
2610    [InitSquashFS, Always, TestOutputInt (
2611       [["wc_l"; "/10klines"]], 10000)],
2612    "count lines in a file",
2613    "\
2614 This command counts the lines in a file, using the
2615 C<wc -l> external command.");
2616
2617   ("wc_w", (RInt "words", [String "path"]), 119, [],
2618    [InitSquashFS, Always, TestOutputInt (
2619       [["wc_w"; "/10klines"]], 10000)],
2620    "count words in a file",
2621    "\
2622 This command counts the words in a file, using the
2623 C<wc -w> external command.");
2624
2625   ("wc_c", (RInt "chars", [String "path"]), 120, [],
2626    [InitSquashFS, Always, TestOutputInt (
2627       [["wc_c"; "/100kallspaces"]], 102400)],
2628    "count characters in a file",
2629    "\
2630 This command counts the characters in a file, using the
2631 C<wc -c> external command.");
2632
2633   ("head", (RStringList "lines", [String "path"]), 121, [ProtocolLimitWarning],
2634    [InitSquashFS, Always, TestOutputList (
2635       [["head"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz";"3abcdefghijklmnopqrstuvwxyz";"4abcdefghijklmnopqrstuvwxyz";"5abcdefghijklmnopqrstuvwxyz";"6abcdefghijklmnopqrstuvwxyz";"7abcdefghijklmnopqrstuvwxyz";"8abcdefghijklmnopqrstuvwxyz";"9abcdefghijklmnopqrstuvwxyz"])],
2636    "return first 10 lines of a file",
2637    "\
2638 This command returns up to the first 10 lines of a file as
2639 a list of strings.");
2640
2641   ("head_n", (RStringList "lines", [Int "nrlines"; String "path"]), 122, [ProtocolLimitWarning],
2642    [InitSquashFS, Always, TestOutputList (
2643       [["head_n"; "3"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2644     InitSquashFS, Always, TestOutputList (
2645       [["head_n"; "-9997"; "/10klines"]], ["0abcdefghijklmnopqrstuvwxyz";"1abcdefghijklmnopqrstuvwxyz";"2abcdefghijklmnopqrstuvwxyz"]);
2646     InitSquashFS, Always, TestOutputList (
2647       [["head_n"; "0"; "/10klines"]], [])],
2648    "return first N lines of a file",
2649    "\
2650 If the parameter C<nrlines> is a positive number, this returns the first
2651 C<nrlines> lines of the file C<path>.
2652
2653 If the parameter C<nrlines> is a negative number, this returns lines
2654 from the file C<path>, excluding the last C<nrlines> lines.
2655
2656 If the parameter C<nrlines> is zero, this returns an empty list.");
2657
2658   ("tail", (RStringList "lines", [String "path"]), 123, [ProtocolLimitWarning],
2659    [InitSquashFS, Always, TestOutputList (
2660       [["tail"; "/10klines"]], ["9990abcdefghijklmnopqrstuvwxyz";"9991abcdefghijklmnopqrstuvwxyz";"9992abcdefghijklmnopqrstuvwxyz";"9993abcdefghijklmnopqrstuvwxyz";"9994abcdefghijklmnopqrstuvwxyz";"9995abcdefghijklmnopqrstuvwxyz";"9996abcdefghijklmnopqrstuvwxyz";"9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"])],
2661    "return last 10 lines of a file",
2662    "\
2663 This command returns up to the last 10 lines of a file as
2664 a list of strings.");
2665
2666   ("tail_n", (RStringList "lines", [Int "nrlines"; String "path"]), 124, [ProtocolLimitWarning],
2667    [InitSquashFS, Always, TestOutputList (
2668       [["tail_n"; "3"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2669     InitSquashFS, Always, TestOutputList (
2670       [["tail_n"; "-9998"; "/10klines"]], ["9997abcdefghijklmnopqrstuvwxyz";"9998abcdefghijklmnopqrstuvwxyz";"9999abcdefghijklmnopqrstuvwxyz"]);
2671     InitSquashFS, Always, TestOutputList (
2672       [["tail_n"; "0"; "/10klines"]], [])],
2673    "return last N lines of a file",
2674    "\
2675 If the parameter C<nrlines> is a positive number, this returns the last
2676 C<nrlines> lines of the file C<path>.
2677
2678 If the parameter C<nrlines> is a negative number, this returns lines
2679 from the file C<path>, starting with the C<-nrlines>th line.
2680
2681 If the parameter C<nrlines> is zero, this returns an empty list.");
2682
2683   ("df", (RString "output", []), 125, [],
2684    [], (* XXX Tricky to test because it depends on the exact format
2685         * of the 'df' command and other imponderables.
2686         *)
2687    "report file system disk space usage",
2688    "\
2689 This command runs the C<df> command to report disk space used.
2690
2691 This command is mostly useful for interactive sessions.  It
2692 is I<not> intended that you try to parse the output string.
2693 Use C<statvfs> from programs.");
2694
2695   ("df_h", (RString "output", []), 126, [],
2696    [], (* XXX Tricky to test because it depends on the exact format
2697         * of the 'df' command and other imponderables.
2698         *)
2699    "report file system disk space usage (human readable)",
2700    "\
2701 This command runs the C<df -h> command to report disk space used
2702 in human-readable format.
2703
2704 This command is mostly useful for interactive sessions.  It
2705 is I<not> intended that you try to parse the output string.
2706 Use C<statvfs> from programs.");
2707
2708   ("du", (RInt64 "sizekb", [String "path"]), 127, [],
2709    [InitSquashFS, Always, TestOutputInt (
2710       [["du"; "/directory"]], 0 (* squashfs doesn't have blocks *))],
2711    "estimate file space usage",
2712    "\
2713 This command runs the C<du -s> command to estimate file space
2714 usage for C<path>.
2715
2716 C<path> can be a file or a directory.  If C<path> is a directory
2717 then the estimate includes the contents of the directory and all
2718 subdirectories (recursively).
2719
2720 The result is the estimated size in I<kilobytes>
2721 (ie. units of 1024 bytes).");
2722
2723   ("initrd_list", (RStringList "filenames", [String "path"]), 128, [],
2724    [InitSquashFS, Always, TestOutputList (
2725       [["initrd_list"; "/initrd"]], ["empty";"known-1";"known-2";"known-3";"known-4"; "known-5"])],
2726    "list files in an initrd",
2727    "\
2728 This command lists out files contained in an initrd.
2729
2730 The files are listed without any initial C</> character.  The
2731 files are listed in the order they appear (not necessarily
2732 alphabetical).  Directory names are listed as separate items.
2733
2734 Old Linux kernels (2.4 and earlier) used a compressed ext2
2735 filesystem as initrd.  We I<only> support the newer initramfs
2736 format (compressed cpio files).");
2737
2738   ("mount_loop", (RErr, [String "file"; String "mountpoint"]), 129, [],
2739    [],
2740    "mount a file using the loop device",
2741    "\
2742 This command lets you mount C<file> (a filesystem image
2743 in a file) on a mount point.  It is entirely equivalent to
2744 the command C<mount -o loop file mountpoint>.");
2745
2746   ("mkswap", (RErr, [String "device"]), 130, [],
2747    [InitEmpty, Always, TestRun (
2748       [["sfdiskM"; "/dev/sda"; ","];
2749        ["mkswap"; "/dev/sda1"]])],
2750    "create a swap partition",
2751    "\
2752 Create a swap partition on C<device>.");
2753
2754   ("mkswap_L", (RErr, [String "label"; String "device"]), 131, [],
2755    [InitEmpty, Always, TestRun (
2756       [["sfdiskM"; "/dev/sda"; ","];
2757        ["mkswap_L"; "hello"; "/dev/sda1"]])],
2758    "create a swap partition with a label",
2759    "\
2760 Create a swap partition on C<device> with label C<label>.
2761
2762 Note that you cannot attach a swap label to a block device
2763 (eg. C</dev/sda>), just to a partition.  This appears to be
2764 a limitation of the kernel or swap tools.");
2765
2766   ("mkswap_U", (RErr, [String "uuid"; String "device"]), 132, [],
2767    [InitEmpty, Always, TestRun (
2768       [["sfdiskM"; "/dev/sda"; ","];
2769        ["mkswap_U"; "a3a61220-882b-4f61-89f4-cf24dcc7297d"; "/dev/sda1"]])],
2770    "create a swap partition with an explicit UUID",
2771    "\
2772 Create a swap partition on C<device> with UUID C<uuid>.");
2773
2774   ("mknod", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; String "path"]), 133, [],
2775    [InitBasicFS, Always, TestOutputStruct (
2776       [["mknod"; "0o10777"; "0"; "0"; "/node"];
2777        (* NB: default umask 022 means 0777 -> 0755 in these tests *)
2778        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)]);
2779     InitBasicFS, Always, TestOutputStruct (
2780       [["mknod"; "0o60777"; "66"; "99"; "/node"];
2781        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
2782    "make block, character or FIFO devices",
2783    "\
2784 This call creates block or character special devices, or
2785 named pipes (FIFOs).
2786
2787 The C<mode> parameter should be the mode, using the standard
2788 constants.  C<devmajor> and C<devminor> are the
2789 device major and minor numbers, only used when creating block
2790 and character special devices.");
2791
2792   ("mkfifo", (RErr, [Int "mode"; String "path"]), 134, [],
2793    [InitBasicFS, Always, TestOutputStruct (
2794       [["mkfifo"; "0o777"; "/node"];
2795        ["stat"; "/node"]], [CompareWithInt ("mode", 0o10755)])],
2796    "make FIFO (named pipe)",
2797    "\
2798 This call creates a FIFO (named pipe) called C<path> with
2799 mode C<mode>.  It is just a convenient wrapper around
2800 C<guestfs_mknod>.");
2801
2802   ("mknod_b", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; String "path"]), 135, [],
2803    [InitBasicFS, Always, TestOutputStruct (
2804       [["mknod_b"; "0o777"; "99"; "66"; "/node"];
2805        ["stat"; "/node"]], [CompareWithInt ("mode", 0o60755)])],
2806    "make block device node",
2807    "\
2808 This call creates a block device node called C<path> with
2809 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
2810 It is just a convenient wrapper around C<guestfs_mknod>.");
2811
2812   ("mknod_c", (RErr, [Int "mode"; Int "devmajor"; Int "devminor"; String "path"]), 136, [],
2813    [InitBasicFS, Always, TestOutputStruct (
2814       [["mknod_c"; "0o777"; "99"; "66"; "/node"];
2815        ["stat"; "/node"]], [CompareWithInt ("mode", 0o20755)])],
2816    "make char device node",
2817    "\
2818 This call creates a char device node called C<path> with
2819 mode C<mode> and device major/minor C<devmajor> and C<devminor>.
2820 It is just a convenient wrapper around C<guestfs_mknod>.");
2821
2822   ("umask", (RInt "oldmask", [Int "mask"]), 137, [],
2823    [], (* XXX umask is one of those stateful things that we should
2824         * reset between each test.
2825         *)
2826    "set file mode creation mask (umask)",
2827    "\
2828 This function sets the mask used for creating new files and
2829 device nodes to C<mask & 0777>.
2830
2831 Typical umask values would be C<022> which creates new files
2832 with permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and
2833 C<002> which creates new files with permissions like
2834 \"-rw-rw-r--\" or \"-rwxrwxr-x\".
2835
2836 The default umask is C<022>.  This is important because it
2837 means that directories and device nodes will be created with
2838 C<0644> or C<0755> mode even if you specify C<0777>.
2839
2840 See also L<umask(2)>, C<guestfs_mknod>, C<guestfs_mkdir>.
2841
2842 This call returns the previous umask.");
2843
2844   ("readdir", (RStructList ("entries", "dirent"), [String "dir"]), 138, [],
2845    [],
2846    "read directories entries",
2847    "\
2848 This returns the list of directory entries in directory C<dir>.
2849
2850 All entries in the directory are returned, including C<.> and
2851 C<..>.  The entries are I<not> sorted, but returned in the same
2852 order as the underlying filesystem.
2853
2854 Also this call returns basic file type information about each
2855 file.  The C<ftyp> field will contain one of the following characters:
2856
2857 =over 4
2858
2859 =item 'b'
2860
2861 Block special
2862
2863 =item 'c'
2864
2865 Char special
2866
2867 =item 'd'
2868
2869 Directory
2870
2871 =item 'f'
2872
2873 FIFO (named pipe)
2874
2875 =item 'l'
2876
2877 Symbolic link
2878
2879 =item 'r'
2880
2881 Regular file
2882
2883 =item 's'
2884
2885 Socket
2886
2887 =item 'u'
2888
2889 Unknown file type
2890
2891 =item '?'
2892
2893 The L<readdir(3)> returned a C<d_type> field with an
2894 unexpected value
2895
2896 =back
2897
2898 This function is primarily intended for use by programs.  To
2899 get a simple list of names, use C<guestfs_ls>.  To get a printable
2900 directory for human consumption, use C<guestfs_ll>.");
2901
2902   ("sfdiskM", (RErr, [String "device"; StringList "lines"]), 139, [DangerWillRobinson],
2903    [],
2904    "create partitions on a block device",
2905    "\
2906 This is a simplified interface to the C<guestfs_sfdisk>
2907 command, where partition sizes are specified in megabytes
2908 only (rounded to the nearest cylinder) and you don't need
2909 to specify the cyls, heads and sectors parameters which
2910 were rarely if ever used anyway.
2911
2912 See also C<guestfs_sfdisk> and the L<sfdisk(8)> manpage.");
2913
2914   ("zfile", (RString "description", [String "method"; String "path"]), 140, [DeprecatedBy "file"],
2915    [],
2916    "determine file type inside a compressed file",
2917    "\
2918 This command runs C<file> after first decompressing C<path>
2919 using C<method>.
2920
2921 C<method> must be one of C<gzip>, C<compress> or C<bzip2>.
2922
2923 Since 1.0.63, use C<guestfs_file> instead which can now
2924 process compressed files.");
2925
2926   ("getxattrs", (RStructList ("xattrs", "xattr"), [String "path"]), 141, [],
2927    [],
2928    "list extended attributes of a file or directory",
2929    "\
2930 This call lists the extended attributes of the file or directory
2931 C<path>.
2932
2933 At the system call level, this is a combination of the
2934 L<listxattr(2)> and L<getxattr(2)> calls.
2935
2936 See also: C<guestfs_lgetxattrs>, L<attr(5)>.");
2937
2938   ("lgetxattrs", (RStructList ("xattrs", "xattr"), [String "path"]), 142, [],
2939    [],
2940    "list extended attributes of a file or directory",
2941    "\
2942 This is the same as C<guestfs_getxattrs>, but if C<path>
2943 is a symbolic link, then it returns the extended attributes
2944 of the link itself.");
2945
2946   ("setxattr", (RErr, [String "xattr";
2947                        String "val"; Int "vallen"; (* will be BufferIn *)
2948                        String "path"]), 143, [],
2949    [],
2950    "set extended attribute of a file or directory",
2951    "\
2952 This call sets the extended attribute named C<xattr>
2953 of the file C<path> to the value C<val> (of length C<vallen>).
2954 The value is arbitrary 8 bit data.
2955
2956 See also: C<guestfs_lsetxattr>, L<attr(5)>.");
2957
2958   ("lsetxattr", (RErr, [String "xattr";
2959                         String "val"; Int "vallen"; (* will be BufferIn *)
2960                         String "path"]), 144, [],
2961    [],
2962    "set extended attribute of a file or directory",
2963    "\
2964 This is the same as C<guestfs_setxattr>, but if C<path>
2965 is a symbolic link, then it sets an extended attribute
2966 of the link itself.");
2967
2968   ("removexattr", (RErr, [String "xattr"; String "path"]), 145, [],
2969    [],
2970    "remove extended attribute of a file or directory",
2971    "\
2972 This call removes the extended attribute named C<xattr>
2973 of the file C<path>.
2974
2975 See also: C<guestfs_lremovexattr>, L<attr(5)>.");
2976
2977   ("lremovexattr", (RErr, [String "xattr"; String "path"]), 146, [],
2978    [],
2979    "remove extended attribute of a file or directory",
2980    "\
2981 This is the same as C<guestfs_removexattr>, but if C<path>
2982 is a symbolic link, then it removes an extended attribute
2983 of the link itself.");
2984
2985   ("mountpoints", (RHashtable "mps", []), 147, [],
2986    [],
2987    "show mountpoints",
2988    "\
2989 This call is similar to C<guestfs_mounts>.  That call returns
2990 a list of devices.  This one returns a hash table (map) of
2991 device name to directory where the device is mounted.");
2992
2993   ("mkmountpoint", (RErr, [String "path"]), 148, [],
2994    [],
2995    "create a mountpoint",
2996    "\
2997 C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are
2998 specialized calls that can be used to create extra mountpoints
2999 before mounting the first filesystem.
3000
3001 These calls are I<only> necessary in some very limited circumstances,
3002 mainly the case where you want to mount a mix of unrelated and/or
3003 read-only filesystems together.
3004
3005 For example, live CDs often contain a \"Russian doll\" nest of
3006 filesystems, an ISO outer layer, with a squashfs image inside, with
3007 an ext2/3 image inside that.  You can unpack this as follows
3008 in guestfish:
3009
3010  add-ro Fedora-11-i686-Live.iso
3011  run
3012  mkmountpoint /cd
3013  mkmountpoint /squash
3014  mkmountpoint /ext3
3015  mount /dev/sda /cd
3016  mount-loop /cd/LiveOS/squashfs.img /squash
3017  mount-loop /squash/LiveOS/ext3fs.img /ext3
3018
3019 The inner filesystem is now unpacked under the /ext3 mountpoint.");
3020
3021   ("rmmountpoint", (RErr, [String "path"]), 149, [],
3022    [],
3023    "remove a mountpoint",
3024    "\
3025 This calls removes a mountpoint that was previously created
3026 with C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint>
3027 for full details.");
3028
3029   ("read_file", (RBufferOut "content", [String "path"]), 150, [ProtocolLimitWarning],
3030    [InitSquashFS, Always, TestOutputBuffer (
3031       [["read_file"; "/known-4"]], "abc\ndef\nghi")],
3032    "read a file",
3033    "\
3034 This calls returns the contents of the file C<path> as a
3035 buffer.
3036
3037 Unlike C<guestfs_cat>, this function can correctly
3038 handle files that contain embedded ASCII NUL characters.
3039 However unlike C<guestfs_download>, this function is limited
3040 in the total size of file that can be handled.");
3041
3042   ("grep", (RStringList "lines", [String "regex"; String "path"]), 151, [ProtocolLimitWarning],
3043    [InitSquashFS, Always, TestOutputList (
3044       [["grep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"]);
3045     InitSquashFS, Always, TestOutputList (
3046       [["grep"; "nomatch"; "/test-grep.txt"]], [])],
3047    "return lines matching a pattern",
3048    "\
3049 This calls the external C<grep> program and returns the
3050 matching lines.");
3051
3052   ("egrep", (RStringList "lines", [String "regex"; String "path"]), 152, [ProtocolLimitWarning],
3053    [InitSquashFS, Always, TestOutputList (
3054       [["egrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3055    "return lines matching a pattern",
3056    "\
3057 This calls the external C<egrep> program and returns the
3058 matching lines.");
3059
3060   ("fgrep", (RStringList "lines", [String "pattern"; String "path"]), 153, [ProtocolLimitWarning],
3061    [InitSquashFS, Always, TestOutputList (
3062       [["fgrep"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"])],
3063    "return lines matching a pattern",
3064    "\
3065 This calls the external C<fgrep> program and returns the
3066 matching lines.");
3067
3068   ("grepi", (RStringList "lines", [String "regex"; String "path"]), 154, [ProtocolLimitWarning],
3069    [InitSquashFS, Always, TestOutputList (
3070       [["grepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3071    "return lines matching a pattern",
3072    "\
3073 This calls the external C<grep -i> program and returns the
3074 matching lines.");
3075
3076   ("egrepi", (RStringList "lines", [String "regex"; String "path"]), 155, [ProtocolLimitWarning],
3077    [InitSquashFS, Always, TestOutputList (
3078       [["egrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3079    "return lines matching a pattern",
3080    "\
3081 This calls the external C<egrep -i> program and returns the
3082 matching lines.");
3083
3084   ("fgrepi", (RStringList "lines", [String "pattern"; String "path"]), 156, [ProtocolLimitWarning],
3085    [InitSquashFS, Always, TestOutputList (
3086       [["fgrepi"; "abc"; "/test-grep.txt"]], ["abc"; "abc123"; "ABC"])],
3087    "return lines matching a pattern",
3088    "\
3089 This calls the external C<fgrep -i> program and returns the
3090 matching lines.");
3091
3092   ("zgrep", (RStringList "lines", [String "regex"; String "path"]), 157, [ProtocolLimitWarning],
3093    [InitSquashFS, Always, TestOutputList (
3094       [["zgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3095    "return lines matching a pattern",
3096    "\
3097 This calls the external C<zgrep> program and returns the
3098 matching lines.");
3099
3100   ("zegrep", (RStringList "lines", [String "regex"; String "path"]), 158, [ProtocolLimitWarning],
3101    [InitSquashFS, Always, TestOutputList (
3102       [["zegrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3103    "return lines matching a pattern",
3104    "\
3105 This calls the external C<zegrep> program and returns the
3106 matching lines.");
3107
3108   ("zfgrep", (RStringList "lines", [String "pattern"; String "path"]), 159, [ProtocolLimitWarning],
3109    [InitSquashFS, Always, TestOutputList (
3110       [["zfgrep"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"])],
3111    "return lines matching a pattern",
3112    "\
3113 This calls the external C<zfgrep> program and returns the
3114 matching lines.");
3115
3116   ("zgrepi", (RStringList "lines", [String "regex"; String "path"]), 160, [ProtocolLimitWarning],
3117    [InitSquashFS, Always, TestOutputList (
3118       [["zgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3119    "return lines matching a pattern",
3120    "\
3121 This calls the external C<zgrep -i> program and returns the
3122 matching lines.");
3123
3124   ("zegrepi", (RStringList "lines", [String "regex"; String "path"]), 161, [ProtocolLimitWarning],
3125    [InitSquashFS, Always, TestOutputList (
3126       [["zegrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3127    "return lines matching a pattern",
3128    "\
3129 This calls the external C<zegrep -i> program and returns the
3130 matching lines.");
3131
3132   ("zfgrepi", (RStringList "lines", [String "pattern"; String "path"]), 162, [ProtocolLimitWarning],
3133    [InitSquashFS, Always, TestOutputList (
3134       [["zfgrepi"; "abc"; "/test-grep.txt.gz"]], ["abc"; "abc123"; "ABC"])],
3135    "return lines matching a pattern",
3136    "\
3137 This calls the external C<zfgrep -i> program and returns the
3138 matching lines.");
3139
3140   ("realpath", (RString "rpath", [String "path"]), 163, [],
3141    [InitSquashFS, Always, TestOutput (
3142       [["realpath"; "/../directory"]], "/directory")],
3143    "canonicalized absolute pathname",
3144    "\
3145 Return the canonicalized absolute pathname of C<path>.  The
3146 returned path has no C<.>, C<..> or symbolic link path elements.");
3147
3148   ("ln", (RErr, [String "target"; String "linkname"]), 164, [],
3149    [InitBasicFS, Always, TestOutputStruct (
3150       [["touch"; "/a"];
3151        ["ln"; "/a"; "/b"];
3152        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3153    "create a hard link",
3154    "\
3155 This command creates a hard link using the C<ln> command.");
3156
3157   ("ln_f", (RErr, [String "target"; String "linkname"]), 165, [],
3158    [InitBasicFS, Always, TestOutputStruct (
3159       [["touch"; "/a"];
3160        ["touch"; "/b"];
3161        ["ln_f"; "/a"; "/b"];
3162        ["stat"; "/b"]], [CompareWithInt ("nlink", 2)])],
3163    "create a hard link",
3164    "\
3165 This command creates a hard link using the C<ln -f> command.
3166 The C<-f> option removes the link (C<linkname>) if it exists already.");
3167
3168   ("ln_s", (RErr, [String "target"; String "linkname"]), 166, [],
3169    [InitBasicFS, Always, TestOutputStruct (
3170       [["touch"; "/a"];
3171        ["ln_s"; "a"; "/b"];
3172        ["lstat"; "/b"]], [CompareWithInt ("mode", 0o120777)])],
3173    "create a symbolic link",
3174    "\
3175 This command creates a symbolic link using the C<ln -s> command.");
3176
3177   ("ln_sf", (RErr, [String "target"; String "linkname"]), 167, [],
3178    [InitBasicFS, Always, TestOutput (
3179       [["mkdir_p"; "/a/b"];
3180        ["touch"; "/a/b/c"];
3181        ["ln_sf"; "../d"; "/a/b/c"];
3182        ["readlink"; "/a/b/c"]], "../d")],
3183    "create a symbolic link",
3184    "\
3185 This command creates a symbolic link using the C<ln -sf> command,
3186 The C<-f> option removes the link (C<linkname>) if it exists already.");
3187
3188   ("readlink", (RString "link", [String "path"]), 168, [],
3189    [] (* XXX tested above *),
3190    "read the target of a symbolic link",
3191    "\
3192 This command reads the target of a symbolic link.");
3193
3194   ("fallocate", (RErr, [String "path"; Int "len"]), 169, [],
3195    [InitBasicFS, Always, TestOutputStruct (
3196       [["fallocate"; "/a"; "1000000"];
3197        ["stat"; "/a"]], [CompareWithInt ("size", 1_000_000)])],
3198    "preallocate a file in the guest filesystem",
3199    "\
3200 This command preallocates a file (containing zero bytes) named
3201 C<path> of size C<len> bytes.  If the file exists already, it
3202 is overwritten.
3203
3204 Do not confuse this with the guestfish-specific
3205 C<alloc> command which allocates a file in the host and
3206 attaches it as a device.");
3207
3208   ("swapon_device", (RErr, [String "device"]), 170, [],
3209    [InitNone, Always, TestRun (
3210       [["mkswap"; "/dev/sdb"];
3211        ["swapon_device"; "/dev/sdb"];
3212        ["swapoff_device"; "/dev/sdb"]])],
3213    "enable swap on device",
3214    "\
3215 This command enables the libguestfs appliance to use the
3216 swap device or partition named C<device>.  The increased
3217 memory is made available for all commands, for example
3218 those run using C<guestfs_command> or C<guestfs_sh>.
3219
3220 Note that you should not swap to existing guest swap
3221 partitions unless you know what you are doing.  They may
3222 contain hibernation information, or other information that
3223 the guest doesn't want you to trash.  You also risk leaking
3224 information about the host to the guest this way.  Instead,
3225 attach a new host device to the guest and swap on that.");
3226
3227   ("swapoff_device", (RErr, [String "device"]), 171, [],
3228    [], (* XXX tested by swapon_device *)
3229    "disable swap on device",
3230    "\
3231 This command disables the libguestfs appliance swap
3232 device or partition named C<device>.
3233 See C<guestfs_swapon_device>.");
3234
3235   ("swapon_file", (RErr, [String "file"]), 172, [],
3236    [InitBasicFS, Always, TestRun (
3237       [["fallocate"; "/swap"; "8388608"];
3238        ["mkswap_file"; "/swap"];
3239        ["swapon_file"; "/swap"];
3240        ["swapoff_file"; "/swap"]])],
3241    "enable swap on file",
3242    "\
3243 This command enables swap to a file.
3244 See C<guestfs_swapon_device> for other notes.");
3245
3246   ("swapoff_file", (RErr, [String "file"]), 173, [],
3247    [], (* XXX tested by swapon_file *)
3248    "disable swap on file",
3249    "\
3250 This command disables the libguestfs appliance swap on file.");
3251
3252   ("swapon_label", (RErr, [String "label"]), 174, [],
3253    [InitEmpty, Always, TestRun (
3254       [["sfdiskM"; "/dev/sdb"; ","];
3255        ["mkswap_L"; "swapit"; "/dev/sdb1"];
3256        ["swapon_label"; "swapit"];
3257        ["swapoff_label"; "swapit"];
3258        ["zero"; "/dev/sdb"];
3259        ["blockdev_rereadpt"; "/dev/sdb"]])],
3260    "enable swap on labelled swap partition",
3261    "\
3262 This command enables swap to a labelled swap partition.
3263 See C<guestfs_swapon_device> for other notes.");
3264
3265   ("swapoff_label", (RErr, [String "label"]), 175, [],
3266    [], (* XXX tested by swapon_label *)
3267    "disable swap on labelled swap partition",
3268    "\
3269 This command disables the libguestfs appliance swap on
3270 labelled swap partition.");
3271
3272   ("swapon_uuid", (RErr, [String "uuid"]), 176, [],
3273    [InitEmpty, Always, TestRun (
3274       [["mkswap_U"; "a3a61220-882b-4f61-89f4-cf24dcc7297d"; "/dev/sdb"];
3275        ["swapon_uuid"; "a3a61220-882b-4f61-89f4-cf24dcc7297d"];
3276        ["swapoff_uuid"; "a3a61220-882b-4f61-89f4-cf24dcc7297d"]])],
3277    "enable swap on swap partition by UUID",
3278    "\
3279 This command enables swap to a swap partition with the given UUID.
3280 See C<guestfs_swapon_device> for other notes.");
3281
3282   ("swapoff_uuid", (RErr, [String "uuid"]), 177, [],
3283    [], (* XXX tested by swapon_uuid *)
3284    "disable swap on swap partition by UUID",
3285    "\
3286 This command disables the libguestfs appliance swap partition
3287 with the given UUID.");
3288
3289   ("mkswap_file", (RErr, [String "path"]), 178, [],
3290    [InitBasicFS, Always, TestRun (
3291       [["fallocate"; "/swap"; "8388608"];
3292        ["mkswap_file"; "/swap"]])],
3293    "create a swap file",
3294    "\
3295 Create a swap file.
3296
3297 This command just writes a swap file signature to an existing
3298 file.  To create the file itself, use something like C<guestfs_fallocate>.");
3299
3300   ("inotify_init", (RErr, [Int "maxevents"]), 179, [],
3301    [InitSquashFS, Always, TestRun (
3302       [["inotify_init"; "0"]])],
3303    "create an inotify handle",
3304    "\
3305 This command creates a new inotify handle.
3306 The inotify subsystem can be used to notify events which happen to
3307 objects in the guest filesystem.
3308
3309 C<maxevents> is the maximum number of events which will be
3310 queued up between calls to C<guestfs_inotify_read> or
3311 C<guestfs_inotify_files>.
3312 If this is passed as C<0>, then the kernel (or previously set)
3313 default is used.  For Linux 2.6.29 the default was 16384 events.
3314 Beyond this limit, the kernel throws away events, but records
3315 the fact that it threw them away by setting a flag
3316 C<IN_Q_OVERFLOW> in the returned structure list (see
3317 C<guestfs_inotify_read>).
3318
3319 Before any events are generated, you have to add some
3320 watches to the internal watch list.  See:
3321 C<guestfs_inotify_add_watch>,
3322 C<guestfs_inotify_rm_watch> and
3323 C<guestfs_inotify_watch_all>.
3324
3325 Queued up events should be read periodically by calling
3326 C<guestfs_inotify_read>
3327 (or C<guestfs_inotify_files> which is just a helpful
3328 wrapper around C<guestfs_inotify_read>).  If you don't
3329 read the events out often enough then you risk the internal
3330 queue overflowing.
3331
3332 The handle should be closed after use by calling
3333 C<guestfs_inotify_close>.  This also removes any
3334 watches automatically.
3335
3336 See also L<inotify(7)> for an overview of the inotify interface
3337 as exposed by the Linux kernel, which is roughly what we expose
3338 via libguestfs.  Note that there is one global inotify handle
3339 per libguestfs instance.");
3340
3341   ("inotify_add_watch", (RInt64 "wd", [String "path"; Int "mask"]), 180, [],
3342    [InitBasicFS, Always, TestOutputList (
3343       [["inotify_init"; "0"];
3344        ["inotify_add_watch"; "/"; "1073741823"];
3345        ["touch"; "/a"];
3346        ["touch"; "/b"];
3347        ["inotify_files"]], ["a"; "b"])],
3348    "add an inotify watch",
3349    "\
3350 Watch C<path> for the events listed in C<mask>.
3351
3352 Note that if C<path> is a directory then events within that
3353 directory are watched, but this does I<not> happen recursively
3354 (in subdirectories).
3355
3356 Note for non-C or non-Linux callers: the inotify events are
3357 defined by the Linux kernel ABI and are listed in
3358 C</usr/include/sys/inotify.h>.");
3359
3360   ("inotify_rm_watch", (RErr, [Int(*XXX64*) "wd"]), 181, [],
3361    [],
3362    "remove an inotify watch",
3363    "\
3364 Remove a previously defined inotify watch.
3365 See C<guestfs_inotify_add_watch>.");
3366
3367   ("inotify_read", (RStructList ("events", "inotify_event"), []), 182, [],
3368    [],
3369    "return list of inotify events",
3370    "\
3371 Return the complete queue of events that have happened
3372 since the previous read call.
3373
3374 If no events have happened, this returns an empty list.
3375
3376 I<Note>: In order to make sure that all events have been
3377 read, you must call this function repeatedly until it
3378 returns an empty list.  The reason is that the call will
3379 read events up to the maximum appliance-to-host message
3380 size and leave remaining events in the queue.");
3381
3382   ("inotify_files", (RStringList "paths", []), 183, [],
3383    [],
3384    "return list of watched files that had events",
3385    "\
3386 This function is a helpful wrapper around C<guestfs_inotify_read>
3387 which just returns a list of pathnames of objects that were
3388 touched.  The returned pathnames are sorted and deduplicated.");
3389
3390   ("inotify_close", (RErr, []), 184, [],
3391    [],
3392    "close the inotify handle",
3393    "\
3394 This closes the inotify handle which was previously
3395 opened by inotify_init.  It removes all watches, throws
3396 away any pending events, and deallocates all resources.");
3397
3398 ]
3399
3400 let all_functions = non_daemon_functions @ daemon_functions
3401
3402 (* In some places we want the functions to be displayed sorted
3403  * alphabetically, so this is useful:
3404  *)
3405 let all_functions_sorted =
3406   List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
3407                compare n1 n2) all_functions
3408
3409 (* Field types for structures. *)
3410 type field =
3411   | FChar                       (* C 'char' (really, a 7 bit byte). *)
3412   | FString                     (* nul-terminated ASCII string, NOT NULL. *)
3413   | FBuffer                     (* opaque buffer of bytes, (char *, int) pair *)
3414   | FUInt32
3415   | FInt32
3416   | FUInt64
3417   | FInt64
3418   | FBytes                      (* Any int measure that counts bytes. *)
3419   | FUUID                       (* 32 bytes long, NOT nul-terminated. *)
3420   | FOptPercent                 (* [0..100], or -1 meaning "not present". *)
3421
3422 (* Because we generate extra parsing code for LVM command line tools,
3423  * we have to pull out the LVM columns separately here.
3424  *)
3425 let lvm_pv_cols = [
3426   "pv_name", FString;
3427   "pv_uuid", FUUID;
3428   "pv_fmt", FString;
3429   "pv_size", FBytes;
3430   "dev_size", FBytes;
3431   "pv_free", FBytes;
3432   "pv_used", FBytes;
3433   "pv_attr", FString (* XXX *);
3434   "pv_pe_count", FInt64;
3435   "pv_pe_alloc_count", FInt64;
3436   "pv_tags", FString;
3437   "pe_start", FBytes;
3438   "pv_mda_count", FInt64;
3439   "pv_mda_free", FBytes;
3440   (* Not in Fedora 10:
3441      "pv_mda_size", FBytes;
3442   *)
3443 ]
3444 let lvm_vg_cols = [
3445   "vg_name", FString;
3446   "vg_uuid", FUUID;
3447   "vg_fmt", FString;
3448   "vg_attr", FString (* XXX *);
3449   "vg_size", FBytes;
3450   "vg_free", FBytes;
3451   "vg_sysid", FString;
3452   "vg_extent_size", FBytes;
3453   "vg_extent_count", FInt64;
3454   "vg_free_count", FInt64;
3455   "max_lv", FInt64;
3456   "max_pv", FInt64;
3457   "pv_count", FInt64;
3458   "lv_count", FInt64;
3459   "snap_count", FInt64;
3460   "vg_seqno", FInt64;
3461   "vg_tags", FString;
3462   "vg_mda_count", FInt64;
3463   "vg_mda_free", FBytes;
3464   (* Not in Fedora 10:
3465      "vg_mda_size", FBytes;
3466   *)
3467 ]
3468 let lvm_lv_cols = [
3469   "lv_name", FString;
3470   "lv_uuid", FUUID;
3471   "lv_attr", FString (* XXX *);
3472   "lv_major", FInt64;
3473   "lv_minor", FInt64;
3474   "lv_kernel_major", FInt64;
3475   "lv_kernel_minor", FInt64;
3476   "lv_size", FBytes;
3477   "seg_count", FInt64;
3478   "origin", FString;
3479   "snap_percent", FOptPercent;
3480   "copy_percent", FOptPercent;
3481   "move_pv", FString;
3482   "lv_tags", FString;
3483   "mirror_log", FString;
3484   "modules", FString;
3485 ]
3486
3487 (* Names and fields in all structures (in RStruct and RStructList)
3488  * that we support.
3489  *)
3490 let structs = [
3491   (* The old RIntBool return type, only ever used for aug_defnode.  Do
3492    * not use this struct in any new code.
3493    *)
3494   "int_bool", [
3495     "i", FInt32;                (* for historical compatibility *)
3496     "b", FInt32;                (* for historical compatibility *)
3497   ];
3498
3499   (* LVM PVs, VGs, LVs. *)
3500   "lvm_pv", lvm_pv_cols;
3501   "lvm_vg", lvm_vg_cols;
3502   "lvm_lv", lvm_lv_cols;
3503
3504   (* Column names and types from stat structures.
3505    * NB. Can't use things like 'st_atime' because glibc header files
3506    * define some of these as macros.  Ugh.
3507    *)
3508   "stat", [
3509     "dev", FInt64;
3510     "ino", FInt64;
3511     "mode", FInt64;
3512     "nlink", FInt64;
3513     "uid", FInt64;
3514     "gid", FInt64;
3515     "rdev", FInt64;
3516     "size", FInt64;
3517     "blksize", FInt64;
3518     "blocks", FInt64;
3519     "atime", FInt64;
3520     "mtime", FInt64;
3521     "ctime", FInt64;
3522   ];
3523   "statvfs", [
3524     "bsize", FInt64;
3525     "frsize", FInt64;
3526     "blocks", FInt64;
3527     "bfree", FInt64;
3528     "bavail", FInt64;
3529     "files", FInt64;
3530     "ffree", FInt64;
3531     "favail", FInt64;
3532     "fsid", FInt64;
3533     "flag", FInt64;
3534     "namemax", FInt64;
3535   ];
3536
3537   (* Column names in dirent structure. *)
3538   "dirent", [
3539     "ino", FInt64;
3540     (* 'b' 'c' 'd' 'f' (FIFO) 'l' 'r' (regular file) 's' 'u' '?' *)
3541     "ftyp", FChar;
3542     "name", FString;
3543   ];
3544
3545   (* Version numbers. *)
3546   "version", [
3547     "major", FInt64;
3548     "minor", FInt64;
3549     "release", FInt64;
3550     "extra", FString;
3551   ];
3552
3553   (* Extended attribute. *)
3554   "xattr", [
3555     "attrname", FString;
3556     "attrval", FBuffer;
3557   ];
3558
3559   (* Inotify events. *)
3560   "inotify_event", [
3561     "in_wd", FInt64;
3562     "in_mask", FUInt32;
3563     "in_cookie", FUInt32;
3564     "in_name", FString;
3565   ];
3566 ] (* end of structs *)
3567
3568 (* Ugh, Java has to be different ..
3569  * These names are also used by the Haskell bindings.
3570  *)
3571 let java_structs = [
3572   "int_bool", "IntBool";
3573   "lvm_pv", "PV";
3574   "lvm_vg", "VG";
3575   "lvm_lv", "LV";
3576   "stat", "Stat";
3577   "statvfs", "StatVFS";
3578   "dirent", "Dirent";
3579   "version", "Version";
3580   "xattr", "XAttr";
3581   "inotify_event", "INotifyEvent";
3582 ]
3583
3584 (* Used for testing language bindings. *)
3585 type callt =
3586   | CallString of string
3587   | CallOptString of string option
3588   | CallStringList of string list
3589   | CallInt of int
3590   | CallBool of bool
3591
3592 (* Used to memoize the result of pod2text. *)
3593 let pod2text_memo_filename = "src/.pod2text.data"
3594 let pod2text_memo : ((int * string * string), string list) Hashtbl.t =
3595   try
3596     let chan = open_in pod2text_memo_filename in
3597     let v = input_value chan in
3598     close_in chan;
3599     v
3600   with
3601     _ -> Hashtbl.create 13
3602
3603 (* Useful functions.
3604  * Note we don't want to use any external OCaml libraries which
3605  * makes this a bit harder than it should be.
3606  *)
3607 let failwithf fs = ksprintf failwith fs
3608
3609 let replace_char s c1 c2 =
3610   let s2 = String.copy s in
3611   let r = ref false in
3612   for i = 0 to String.length s2 - 1 do
3613     if String.unsafe_get s2 i = c1 then (
3614       String.unsafe_set s2 i c2;
3615       r := true
3616     )
3617   done;
3618   if not !r then s else s2
3619
3620 let isspace c =
3621   c = ' '
3622   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
3623
3624 let triml ?(test = isspace) str =
3625   let i = ref 0 in
3626   let n = ref (String.length str) in
3627   while !n > 0 && test str.[!i]; do
3628     decr n;
3629     incr i
3630   done;
3631   if !i = 0 then str
3632   else String.sub str !i !n
3633
3634 let trimr ?(test = isspace) str =
3635   let n = ref (String.length str) in
3636   while !n > 0 && test str.[!n-1]; do
3637     decr n
3638   done;
3639   if !n = String.length str then str
3640   else String.sub str 0 !n
3641
3642 let trim ?(test = isspace) str =
3643   trimr ~test (triml ~test str)
3644
3645 let rec find s sub =
3646   let len = String.length s in
3647   let sublen = String.length sub in
3648   let rec loop i =
3649     if i <= len-sublen then (
3650       let rec loop2 j =
3651         if j < sublen then (
3652           if s.[i+j] = sub.[j] then loop2 (j+1)
3653           else -1
3654         ) else
3655           i (* found *)
3656       in
3657       let r = loop2 0 in
3658       if r = -1 then loop (i+1) else r
3659     ) else
3660       -1 (* not found *)
3661   in
3662   loop 0
3663
3664 let rec replace_str s s1 s2 =
3665   let len = String.length s in
3666   let sublen = String.length s1 in
3667   let i = find s s1 in
3668   if i = -1 then s
3669   else (
3670     let s' = String.sub s 0 i in
3671     let s'' = String.sub s (i+sublen) (len-i-sublen) in
3672     s' ^ s2 ^ replace_str s'' s1 s2
3673   )
3674
3675 let rec string_split sep str =
3676   let len = String.length str in
3677   let seplen = String.length sep in
3678   let i = find str sep in
3679   if i = -1 then [str]
3680   else (
3681     let s' = String.sub str 0 i in
3682     let s'' = String.sub str (i+seplen) (len-i-seplen) in
3683     s' :: string_split sep s''
3684   )
3685
3686 let files_equal n1 n2 =
3687   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
3688   match Sys.command cmd with
3689   | 0 -> true
3690   | 1 -> false
3691   | i -> failwithf "%s: failed with error code %d" cmd i
3692
3693 let rec filter_map f = function
3694   | [] -> []
3695   | x :: xs ->
3696       match f x with
3697       | Some y -> y :: filter_map f xs
3698       | None -> filter_map f xs
3699
3700 let rec find_map f = function
3701   | [] -> raise Not_found
3702   | x :: xs ->
3703       match f x with
3704       | Some y -> y
3705       | None -> find_map f xs
3706
3707 let iteri f xs =
3708   let rec loop i = function
3709     | [] -> ()
3710     | x :: xs -> f i x; loop (i+1) xs
3711   in
3712   loop 0 xs
3713
3714 let mapi f xs =
3715   let rec loop i = function
3716     | [] -> []
3717     | x :: xs -> let r = f i x in r :: loop (i+1) xs
3718   in
3719   loop 0 xs
3720
3721 let name_of_argt = function
3722   | String n | OptString n | StringList n | Bool n | Int n
3723   | FileIn n | FileOut n -> n
3724
3725 let java_name_of_struct typ =
3726   try List.assoc typ java_structs
3727   with Not_found ->
3728     failwithf
3729       "java_name_of_struct: no java_structs entry corresponding to %s" typ
3730
3731 let cols_of_struct typ =
3732   try List.assoc typ structs
3733   with Not_found ->
3734     failwithf "cols_of_struct: unknown struct %s" typ
3735
3736 let seq_of_test = function
3737   | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
3738   | TestOutputListOfDevices (s, _)
3739   | TestOutputInt (s, _) | TestOutputIntOp (s, _, _)
3740   | TestOutputTrue s | TestOutputFalse s
3741   | TestOutputLength (s, _) | TestOutputBuffer (s, _)
3742   | TestOutputStruct (s, _)
3743   | TestLastFail s -> s
3744
3745 (* Handling for function flags. *)
3746 let protocol_limit_warning =
3747   "Because of the message protocol, there is a transfer limit
3748 of somewhere between 2MB and 4MB.  To transfer large files you should use
3749 FTP."
3750
3751 let danger_will_robinson =
3752   "B<This command is dangerous.  Without careful use you
3753 can easily destroy all your data>."
3754
3755 let deprecation_notice flags =
3756   try
3757     let alt =
3758       find_map (function DeprecatedBy str -> Some str | _ -> None) flags in
3759     let txt =
3760       sprintf "This function is deprecated.
3761 In new code, use the C<%s> call instead.
3762
3763 Deprecated functions will not be removed from the API, but the
3764 fact that they are deprecated indicates that there are problems
3765 with correct use of these functions." alt in
3766     Some txt
3767   with
3768     Not_found -> None
3769
3770 (* Check function names etc. for consistency. *)
3771 let check_functions () =
3772   let contains_uppercase str =
3773     let len = String.length str in
3774     let rec loop i =
3775       if i >= len then false
3776       else (
3777         let c = str.[i] in
3778         if c >= 'A' && c <= 'Z' then true
3779         else loop (i+1)
3780       )
3781     in
3782     loop 0
3783   in
3784
3785   (* Check function names. *)
3786   List.iter (
3787     fun (name, _, _, _, _, _, _) ->
3788       if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
3789         failwithf "function name %s does not need 'guestfs' prefix" name;
3790       if name = "" then
3791         failwithf "function name is empty";
3792       if name.[0] < 'a' || name.[0] > 'z' then
3793         failwithf "function name %s must start with lowercase a-z" name;
3794       if String.contains name '-' then
3795         failwithf "function name %s should not contain '-', use '_' instead."
3796           name
3797   ) all_functions;
3798
3799   (* Check function parameter/return names. *)
3800   List.iter (
3801     fun (name, style, _, _, _, _, _) ->
3802       let check_arg_ret_name n =
3803         if contains_uppercase n then
3804           failwithf "%s param/ret %s should not contain uppercase chars"
3805             name n;
3806         if String.contains n '-' || String.contains n '_' then
3807           failwithf "%s param/ret %s should not contain '-' or '_'"
3808             name n;
3809         if n = "value" then
3810           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;
3811         if n = "int" || n = "char" || n = "short" || n = "long" then
3812           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
3813         if n = "i" || n = "n" then
3814           failwithf "%s has a param/ret called 'i' or 'n', which will cause some conflicts in the generated code" name;
3815         if n = "argv" || n = "args" then
3816           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name
3817       in
3818
3819       (match fst style with
3820        | RErr -> ()
3821        | RInt n | RInt64 n | RBool n
3822        | RConstString n | RConstOptString n | RString n
3823        | RStringList n | RStruct (n, _) | RStructList (n, _)
3824        | RHashtable n | RBufferOut n ->
3825            check_arg_ret_name n
3826       );
3827       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
3828   ) all_functions;
3829
3830   (* Check short descriptions. *)
3831   List.iter (
3832     fun (name, _, _, _, _, shortdesc, _) ->
3833       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
3834         failwithf "short description of %s should begin with lowercase." name;
3835       let c = shortdesc.[String.length shortdesc-1] in
3836       if c = '\n' || c = '.' then
3837         failwithf "short description of %s should not end with . or \\n." name
3838   ) all_functions;
3839
3840   (* Check long dscriptions. *)
3841   List.iter (
3842     fun (name, _, _, _, _, _, longdesc) ->
3843       if longdesc.[String.length longdesc-1] = '\n' then
3844         failwithf "long description of %s should not end with \\n." name
3845   ) all_functions;
3846
3847   (* Check proc_nrs. *)
3848   List.iter (
3849     fun (name, _, proc_nr, _, _, _, _) ->
3850       if proc_nr <= 0 then
3851         failwithf "daemon function %s should have proc_nr > 0" name
3852   ) daemon_functions;
3853
3854   List.iter (
3855     fun (name, _, proc_nr, _, _, _, _) ->
3856       if proc_nr <> -1 then
3857         failwithf "non-daemon function %s should have proc_nr -1" name
3858   ) non_daemon_functions;
3859
3860   let proc_nrs =
3861     List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
3862       daemon_functions in
3863   let proc_nrs =
3864     List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
3865   let rec loop = function
3866     | [] -> ()
3867     | [_] -> ()
3868     | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
3869         loop rest
3870     | (name1,nr1) :: (name2,nr2) :: _ ->
3871         failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
3872           name1 name2 nr1 nr2
3873   in
3874   loop proc_nrs;
3875
3876   (* Check tests. *)
3877   List.iter (
3878     function
3879       (* Ignore functions that have no tests.  We generate a
3880        * warning when the user does 'make check' instead.
3881        *)
3882     | name, _, _, _, [], _, _ -> ()
3883     | name, _, _, _, tests, _, _ ->
3884         let funcs =
3885           List.map (
3886             fun (_, _, test) ->
3887               match seq_of_test test with
3888               | [] ->
3889                   failwithf "%s has a test containing an empty sequence" name
3890               | cmds -> List.map List.hd cmds
3891           ) tests in
3892         let funcs = List.flatten funcs in
3893
3894         let tested = List.mem name funcs in
3895
3896         if not tested then
3897           failwithf "function %s has tests but does not test itself" name
3898   ) all_functions
3899
3900 (* 'pr' prints to the current output file. *)
3901 let chan = ref stdout
3902 let pr fs = ksprintf (output_string !chan) fs
3903
3904 (* Generate a header block in a number of standard styles. *)
3905 type comment_style = CStyle | HashStyle | OCamlStyle | HaskellStyle
3906 type license = GPLv2 | LGPLv2
3907
3908 let generate_header comment license =
3909   let c = match comment with
3910     | CStyle ->     pr "/* "; " *"
3911     | HashStyle ->  pr "# ";  "#"
3912     | OCamlStyle -> pr "(* "; " *"
3913     | HaskellStyle -> pr "{- "; "  " in
3914   pr "libguestfs generated file\n";
3915   pr "%s WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.\n" c;
3916   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
3917   pr "%s\n" c;
3918   pr "%s Copyright (C) 2009 Red Hat Inc.\n" c;
3919   pr "%s\n" c;
3920   (match license with
3921    | GPLv2 ->
3922        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
3923        pr "%s it under the terms of the GNU General Public License as published by\n" c;
3924        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
3925        pr "%s (at your option) any later version.\n" c;
3926        pr "%s\n" c;
3927        pr "%s This program is distributed in the hope that it will be useful,\n" c;
3928        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
3929        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
3930        pr "%s GNU General Public License for more details.\n" c;
3931        pr "%s\n" c;
3932        pr "%s You should have received a copy of the GNU General Public License along\n" c;
3933        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
3934        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
3935
3936    | LGPLv2 ->
3937        pr "%s This library is free software; you can redistribute it and/or\n" c;
3938        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
3939        pr "%s License as published by the Free Software Foundation; either\n" c;
3940        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
3941        pr "%s\n" c;
3942        pr "%s This library is distributed in the hope that it will be useful,\n" c;
3943        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
3944        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
3945        pr "%s Lesser General Public License for more details.\n" c;
3946        pr "%s\n" c;
3947        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
3948        pr "%s License along with this library; if not, write to the Free Software\n" c;
3949        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
3950   );
3951   (match comment with
3952    | CStyle -> pr " */\n"
3953    | HashStyle -> ()
3954    | OCamlStyle -> pr " *)\n"
3955    | HaskellStyle -> pr "-}\n"
3956   );
3957   pr "\n"
3958
3959 (* Start of main code generation functions below this line. *)
3960
3961 (* Generate the pod documentation for the C API. *)
3962 let rec generate_actions_pod () =
3963   List.iter (
3964     fun (shortname, style, _, flags, _, _, longdesc) ->
3965       if not (List.mem NotInDocs flags) then (
3966         let name = "guestfs_" ^ shortname in
3967         pr "=head2 %s\n\n" name;
3968         pr " ";
3969         generate_prototype ~extern:false ~handle:"handle" name style;
3970         pr "\n\n";
3971         pr "%s\n\n" longdesc;
3972         (match fst style with
3973          | RErr ->
3974              pr "This function returns 0 on success or -1 on error.\n\n"
3975          | RInt _ ->
3976              pr "On error this function returns -1.\n\n"
3977          | RInt64 _ ->
3978              pr "On error this function returns -1.\n\n"
3979          | RBool _ ->
3980              pr "This function returns a C truth value on success or -1 on error.\n\n"
3981          | RConstString _ ->
3982              pr "This function returns a string, or NULL on error.
3983 The string is owned by the guest handle and must I<not> be freed.\n\n"
3984          | RConstOptString _ ->
3985              pr "This function returns a string which may be NULL.
3986 There is way to return an error from this function.
3987 The string is owned by the guest handle and must I<not> be freed.\n\n"
3988          | RString _ ->
3989              pr "This function returns a string, or NULL on error.
3990 I<The caller must free the returned string after use>.\n\n"
3991          | RStringList _ ->
3992              pr "This function returns a NULL-terminated array of strings
3993 (like L<environ(3)>), or NULL if there was an error.
3994 I<The caller must free the strings and the array after use>.\n\n"
3995          | RStruct (_, typ) ->
3996              pr "This function returns a C<struct guestfs_%s *>,
3997 or NULL if there was an error.
3998 I<The caller must call C<guestfs_free_%s> after use>.\n\n" typ typ
3999          | RStructList (_, typ) ->
4000              pr "This function returns a C<struct guestfs_%s_list *>
4001 (see E<lt>guestfs-structs.hE<gt>),
4002 or NULL if there was an error.
4003 I<The caller must call C<guestfs_free_%s_list> after use>.\n\n" typ typ
4004          | RHashtable _ ->
4005              pr "This function returns a NULL-terminated array of
4006 strings, or NULL if there was an error.
4007 The array of strings will always have length C<2n+1>, where
4008 C<n> keys and values alternate, followed by the trailing NULL entry.
4009 I<The caller must free the strings and the array after use>.\n\n"
4010          | RBufferOut _ ->
4011              pr "This function returns a buffer, or NULL on error.
4012 The size of the returned buffer is written to C<*size_r>.
4013 I<The caller must free the returned buffer after use>.\n\n"
4014         );
4015         if List.mem ProtocolLimitWarning flags then
4016           pr "%s\n\n" protocol_limit_warning;
4017         if List.mem DangerWillRobinson flags then
4018           pr "%s\n\n" danger_will_robinson;
4019         match deprecation_notice flags with
4020         | None -> ()
4021         | Some txt -> pr "%s\n\n" txt
4022       )
4023   ) all_functions_sorted
4024
4025 and generate_structs_pod () =
4026   (* Structs documentation. *)
4027   List.iter (
4028     fun (typ, cols) ->
4029       pr "=head2 guestfs_%s\n" typ;
4030       pr "\n";
4031       pr " struct guestfs_%s {\n" typ;
4032       List.iter (
4033         function
4034         | name, FChar -> pr "   char %s;\n" name
4035         | name, FUInt32 -> pr "   uint32_t %s;\n" name
4036         | name, FInt32 -> pr "   int32_t %s;\n" name
4037         | name, (FUInt64|FBytes) -> pr "   uint64_t %s;\n" name
4038         | name, FInt64 -> pr "   int64_t %s;\n" name
4039         | name, FString -> pr "   char *%s;\n" name
4040         | name, FBuffer ->
4041             pr "   /* The next two fields describe a byte array. */\n";
4042             pr "   uint32_t %s_len;\n" name;
4043             pr "   char *%s;\n" name
4044         | name, FUUID ->
4045             pr "   /* The next field is NOT nul-terminated, be careful when printing it: */\n";
4046             pr "   char %s[32];\n" name
4047         | name, FOptPercent ->
4048             pr "   /* The next field is [0..100] or -1 meaning 'not present': */\n";
4049             pr "   float %s;\n" name
4050       ) cols;
4051       pr " };\n";
4052       pr " \n";
4053       pr " struct guestfs_%s_list {\n" typ;
4054       pr "   uint32_t len; /* Number of elements in list. */\n";
4055       pr "   struct guestfs_%s *val; /* Elements. */\n" typ;
4056       pr " };\n";
4057       pr " \n";
4058       pr " void guestfs_free_%s (struct guestfs_free_%s *);\n" typ typ;
4059       pr " void guestfs_free_%s_list (struct guestfs_free_%s_list *);\n"
4060         typ typ;
4061       pr "\n"
4062   ) structs
4063
4064 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
4065  * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
4066  *
4067  * We have to use an underscore instead of a dash because otherwise
4068  * rpcgen generates incorrect code.
4069  *
4070  * This header is NOT exported to clients, but see also generate_structs_h.
4071  *)
4072 and generate_xdr () =
4073   generate_header CStyle LGPLv2;
4074
4075   (* This has to be defined to get around a limitation in Sun's rpcgen. *)
4076   pr "typedef string str<>;\n";
4077   pr "\n";
4078
4079   (* Internal structures. *)
4080   List.iter (
4081     function
4082     | typ, cols ->
4083         pr "struct guestfs_int_%s {\n" typ;
4084         List.iter (function
4085                    | name, FChar -> pr "  char %s;\n" name
4086                    | name, FString -> pr "  string %s<>;\n" name
4087                    | name, FBuffer -> pr "  opaque %s<>;\n" name
4088                    | name, FUUID -> pr "  opaque %s[32];\n" name
4089                    | name, (FInt32|FUInt32) -> pr "  int %s;\n" name
4090                    | name, (FInt64|FUInt64|FBytes) -> pr "  hyper %s;\n" name
4091                    | name, FOptPercent -> pr "  float %s;\n" name
4092                   ) cols;
4093         pr "};\n";
4094         pr "\n";
4095         pr "typedef struct guestfs_int_%s guestfs_int_%s_list<>;\n" typ typ;
4096         pr "\n";
4097   ) structs;
4098
4099   List.iter (
4100     fun (shortname, style, _, _, _, _, _) ->
4101       let name = "guestfs_" ^ shortname in
4102
4103       (match snd style with
4104        | [] -> ()
4105        | args ->
4106            pr "struct %s_args {\n" name;
4107            List.iter (
4108              function
4109              | String n -> pr "  string %s<>;\n" n
4110              | OptString n -> pr "  str *%s;\n" n
4111              | StringList n -> pr "  str %s<>;\n" n
4112              | Bool n -> pr "  bool %s;\n" n
4113              | Int n -> pr "  int %s;\n" n
4114              | FileIn _ | FileOut _ -> ()
4115            ) args;
4116            pr "};\n\n"
4117       );
4118       (match fst style with
4119        | RErr -> ()
4120        | RInt n ->
4121            pr "struct %s_ret {\n" name;
4122            pr "  int %s;\n" n;
4123            pr "};\n\n"
4124        | RInt64 n ->
4125            pr "struct %s_ret {\n" name;
4126            pr "  hyper %s;\n" n;
4127            pr "};\n\n"
4128        | RBool n ->
4129            pr "struct %s_ret {\n" name;
4130            pr "  bool %s;\n" n;
4131            pr "};\n\n"
4132        | RConstString _ | RConstOptString _ ->
4133            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
4134        | RString n ->
4135            pr "struct %s_ret {\n" name;
4136            pr "  string %s<>;\n" n;
4137            pr "};\n\n"
4138        | RStringList n ->
4139            pr "struct %s_ret {\n" name;
4140            pr "  str %s<>;\n" n;
4141            pr "};\n\n"
4142        | RStruct (n, typ) ->
4143            pr "struct %s_ret {\n" name;
4144            pr "  guestfs_int_%s %s;\n" typ n;
4145            pr "};\n\n"
4146        | RStructList (n, typ) ->
4147            pr "struct %s_ret {\n" name;
4148            pr "  guestfs_int_%s_list %s;\n" typ n;
4149            pr "};\n\n"
4150        | RHashtable n ->
4151            pr "struct %s_ret {\n" name;
4152            pr "  str %s<>;\n" n;
4153            pr "};\n\n"
4154        | RBufferOut n ->
4155            pr "struct %s_ret {\n" name;
4156            pr "  opaque %s<>;\n" n;
4157            pr "};\n\n"
4158       );
4159   ) daemon_functions;
4160
4161   (* Table of procedure numbers. *)
4162   pr "enum guestfs_procedure {\n";
4163   List.iter (
4164     fun (shortname, _, proc_nr, _, _, _, _) ->
4165       pr "  GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
4166   ) daemon_functions;
4167   pr "  GUESTFS_PROC_NR_PROCS\n";
4168   pr "};\n";
4169   pr "\n";
4170
4171   (* Having to choose a maximum message size is annoying for several
4172    * reasons (it limits what we can do in the API), but it (a) makes
4173    * the protocol a lot simpler, and (b) provides a bound on the size
4174    * of the daemon which operates in limited memory space.  For large
4175    * file transfers you should use FTP.
4176    *)
4177   pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
4178   pr "\n";
4179
4180   (* Message header, etc. *)
4181   pr "\
4182 /* The communication protocol is now documented in the guestfs(3)
4183  * manpage.
4184  */
4185
4186 const GUESTFS_PROGRAM = 0x2000F5F5;
4187 const GUESTFS_PROTOCOL_VERSION = 1;
4188
4189 /* These constants must be larger than any possible message length. */
4190 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
4191 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
4192
4193 enum guestfs_message_direction {
4194   GUESTFS_DIRECTION_CALL = 0,        /* client -> daemon */
4195   GUESTFS_DIRECTION_REPLY = 1        /* daemon -> client */
4196 };
4197
4198 enum guestfs_message_status {
4199   GUESTFS_STATUS_OK = 0,
4200   GUESTFS_STATUS_ERROR = 1
4201 };
4202
4203 const GUESTFS_ERROR_LEN = 256;
4204
4205 struct guestfs_message_error {
4206   string error_message<GUESTFS_ERROR_LEN>;
4207 };
4208
4209 struct guestfs_message_header {
4210   unsigned prog;                     /* GUESTFS_PROGRAM */
4211   unsigned vers;                     /* GUESTFS_PROTOCOL_VERSION */
4212   guestfs_procedure proc;            /* GUESTFS_PROC_x */
4213   guestfs_message_direction direction;
4214   unsigned serial;                   /* message serial number */
4215   guestfs_message_status status;
4216 };
4217
4218 const GUESTFS_MAX_CHUNK_SIZE = 8192;
4219
4220 struct guestfs_chunk {
4221   int cancel;                        /* if non-zero, transfer is cancelled */
4222   /* data size is 0 bytes if the transfer has finished successfully */
4223   opaque data<GUESTFS_MAX_CHUNK_SIZE>;
4224 };
4225 "
4226
4227 (* Generate the guestfs-structs.h file. *)
4228 and generate_structs_h () =
4229   generate_header CStyle LGPLv2;
4230
4231   (* This is a public exported header file containing various
4232    * structures.  The structures are carefully written to have
4233    * exactly the same in-memory format as the XDR structures that
4234    * we use on the wire to the daemon.  The reason for creating
4235    * copies of these structures here is just so we don't have to
4236    * export the whole of guestfs_protocol.h (which includes much
4237    * unrelated and XDR-dependent stuff that we don't want to be
4238    * public, or required by clients).
4239    *
4240    * To reiterate, we will pass these structures to and from the
4241    * client with a simple assignment or memcpy, so the format
4242    * must be identical to what rpcgen / the RFC defines.
4243    *)
4244
4245   (* Public structures. *)
4246   List.iter (
4247     fun (typ, cols) ->
4248       pr "struct guestfs_%s {\n" typ;
4249       List.iter (
4250         function
4251         | name, FChar -> pr "  char %s;\n" name
4252         | name, FString -> pr "  char *%s;\n" name
4253         | name, FBuffer ->
4254             pr "  uint32_t %s_len;\n" name;
4255             pr "  char *%s;\n" name
4256         | name, FUUID -> pr "  char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
4257         | name, FUInt32 -> pr "  uint32_t %s;\n" name
4258         | name, FInt32 -> pr "  int32_t %s;\n" name
4259         | name, (FUInt64|FBytes) -> pr "  uint64_t %s;\n" name
4260         | name, FInt64 -> pr "  int64_t %s;\n" name
4261         | name, FOptPercent -> pr "  float %s; /* [0..100] or -1 */\n" name
4262       ) cols;
4263       pr "};\n";
4264       pr "\n";
4265       pr "struct guestfs_%s_list {\n" typ;
4266       pr "  uint32_t len;\n";
4267       pr "  struct guestfs_%s *val;\n" typ;
4268       pr "};\n";
4269       pr "\n";
4270       pr "extern void guestfs_free_%s (struct guestfs_%s *);\n" typ typ;
4271       pr "extern void guestfs_free_%s_list (struct guestfs_%s_list *);\n" typ typ;
4272       pr "\n"
4273   ) structs
4274
4275 (* Generate the guestfs-actions.h file. *)
4276 and generate_actions_h () =
4277   generate_header CStyle LGPLv2;
4278   List.iter (
4279     fun (shortname, style, _, _, _, _, _) ->
4280       let name = "guestfs_" ^ shortname in
4281       generate_prototype ~single_line:true ~newline:true ~handle:"handle"
4282         name style
4283   ) all_functions
4284
4285 (* Generate the client-side dispatch stubs. *)
4286 and generate_client_actions () =
4287   generate_header CStyle LGPLv2;
4288
4289   pr "\
4290 #include <stdio.h>
4291 #include <stdlib.h>
4292
4293 #include \"guestfs.h\"
4294 #include \"guestfs_protocol.h\"
4295
4296 #define error guestfs_error
4297 #define perrorf guestfs_perrorf
4298 #define safe_malloc guestfs_safe_malloc
4299 #define safe_realloc guestfs_safe_realloc
4300 #define safe_strdup guestfs_safe_strdup
4301 #define safe_memdup guestfs_safe_memdup
4302
4303 /* Check the return message from a call for validity. */
4304 static int
4305 check_reply_header (guestfs_h *g,
4306                     const struct guestfs_message_header *hdr,
4307                     int proc_nr, int serial)
4308 {
4309   if (hdr->prog != GUESTFS_PROGRAM) {
4310     error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
4311     return -1;
4312   }
4313   if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
4314     error (g, \"wrong protocol version (%%d/%%d)\",
4315            hdr->vers, GUESTFS_PROTOCOL_VERSION);
4316     return -1;
4317   }
4318   if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
4319     error (g, \"unexpected message direction (%%d/%%d)\",
4320            hdr->direction, GUESTFS_DIRECTION_REPLY);
4321     return -1;
4322   }
4323   if (hdr->proc != proc_nr) {
4324     error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
4325     return -1;
4326   }
4327   if (hdr->serial != serial) {
4328     error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
4329     return -1;
4330   }
4331
4332   return 0;
4333 }
4334
4335 /* Check we are in the right state to run a high-level action. */
4336 static int
4337 check_state (guestfs_h *g, const char *caller)
4338 {
4339   if (!guestfs_is_ready (g)) {
4340     if (guestfs_is_config (g))
4341       error (g, \"%%s: call launch before using this function\\n(in guestfish, don't forget to use the 'run' command)\",
4342         caller);
4343     else if (guestfs_is_launching (g))
4344       error (g, \"%%s: call wait_ready() before using this function\",
4345         caller);
4346     else
4347       error (g, \"%%s called from the wrong state, %%d != READY\",
4348         caller, guestfs_get_state (g));
4349     return -1;
4350   }
4351   return 0;
4352 }
4353
4354 ";
4355
4356   (* Client-side stubs for each function. *)
4357   List.iter (
4358     fun (shortname, style, _, _, _, _, _) ->
4359       let name = "guestfs_" ^ shortname in
4360
4361       (* Generate the context struct which stores the high-level
4362        * state between callback functions.
4363        *)
4364       pr "struct %s_ctx {\n" shortname;
4365       pr "  /* This flag is set by the callbacks, so we know we've done\n";
4366       pr "   * the callbacks as expected, and in the right sequence.\n";
4367       pr "   * 0 = not called, 1 = reply_cb called.\n";
4368       pr "   */\n";
4369       pr "  int cb_sequence;\n";
4370       pr "  struct guestfs_message_header hdr;\n";
4371       pr "  struct guestfs_message_error err;\n";
4372       (match fst style with
4373        | RErr -> ()
4374        | RConstString _ | RConstOptString _ ->
4375            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
4376        | RInt _ | RInt64 _
4377        | RBool _ | RString _ | RStringList _
4378        | RStruct _ | RStructList _
4379        | RHashtable _ | RBufferOut _ ->
4380            pr "  struct %s_ret ret;\n" name
4381       );
4382       pr "};\n";
4383       pr "\n";
4384
4385       (* Generate the reply callback function. *)
4386       pr "static void %s_reply_cb (guestfs_h *g, void *data, XDR *xdr)\n" shortname;
4387       pr "{\n";
4388       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
4389       pr "  struct %s_ctx *ctx = (struct %s_ctx *) data;\n" shortname shortname;
4390       pr "\n";
4391       pr "  /* This should definitely not happen. */\n";
4392       pr "  if (ctx->cb_sequence != 0) {\n";
4393       pr "    ctx->cb_sequence = 9999;\n";
4394       pr "    error (g, \"%%s: internal error: reply callback called twice\", \"%s\");\n" name;
4395       pr "    return;\n";
4396       pr "  }\n";
4397       pr "\n";
4398       pr "  ml->main_loop_quit (ml, g);\n";
4399       pr "\n";
4400       pr "  if (!xdr_guestfs_message_header (xdr, &ctx->hdr)) {\n";
4401       pr "    error (g, \"%%s: failed to parse reply header\", \"%s\");\n" name;
4402       pr "    return;\n";
4403       pr "  }\n";
4404       pr "  if (ctx->hdr.status == GUESTFS_STATUS_ERROR) {\n";
4405       pr "    if (!xdr_guestfs_message_error (xdr, &ctx->err)) {\n";
4406       pr "      error (g, \"%%s: failed to parse reply error\", \"%s\");\n"
4407         name;
4408       pr "      return;\n";
4409       pr "    }\n";
4410       pr "    goto done;\n";
4411       pr "  }\n";
4412
4413       (match fst style with
4414        | RErr -> ()
4415        | RConstString _ | RConstOptString _ ->
4416            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
4417        | RInt _ | RInt64 _
4418        | RBool _ | RString _ | RStringList _
4419        | RStruct _ | RStructList _
4420        | RHashtable _ | RBufferOut _ ->
4421            pr "  if (!xdr_%s_ret (xdr, &ctx->ret)) {\n" name;
4422            pr "    error (g, \"%%s: failed to parse reply\", \"%s\");\n" name;
4423            pr "    return;\n";
4424            pr "  }\n";
4425       );
4426
4427       pr " done:\n";
4428       pr "  ctx->cb_sequence = 1;\n";
4429       pr "}\n\n";
4430
4431       (* Generate the action stub. *)
4432       generate_prototype ~extern:false ~semicolon:false ~newline:true
4433         ~handle:"g" name style;
4434
4435       let error_code =
4436         match fst style with
4437         | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
4438         | RConstString _ | RConstOptString _ ->
4439             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
4440         | RString _ | RStringList _
4441         | RStruct _ | RStructList _
4442         | RHashtable _ | RBufferOut _ ->
4443             "NULL" in
4444
4445       pr "{\n";
4446
4447       (match snd style with
4448        | [] -> ()
4449        | _ -> pr "  struct %s_args args;\n" name
4450       );
4451
4452       pr "  struct %s_ctx ctx;\n" shortname;
4453       pr "  guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
4454       pr "  int serial;\n";
4455       pr "\n";
4456       pr "  if (check_state (g, \"%s\") == -1) return %s;\n" name error_code;
4457       pr "  guestfs_set_busy (g);\n";
4458       pr "\n";
4459       pr "  memset (&ctx, 0, sizeof ctx);\n";
4460       pr "\n";
4461
4462       (* Send the main header and arguments. *)
4463       (match snd style with
4464        | [] ->
4465            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s, NULL, NULL);\n"
4466              (String.uppercase shortname)
4467        | args ->
4468            List.iter (
4469              function
4470              | String n ->
4471                  pr "  args.%s = (char *) %s;\n" n n
4472              | OptString n ->
4473                  pr "  args.%s = %s ? (char **) &%s : NULL;\n" n n n
4474              | StringList n ->
4475                  pr "  args.%s.%s_val = (char **) %s;\n" n n n;
4476                  pr "  for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
4477              | Bool n ->
4478                  pr "  args.%s = %s;\n" n n
4479              | Int n ->
4480                  pr "  args.%s = %s;\n" n n
4481              | FileIn _ | FileOut _ -> ()
4482            ) args;
4483            pr "  serial = guestfs__send_sync (g, GUESTFS_PROC_%s,\n"
4484              (String.uppercase shortname);
4485            pr "        (xdrproc_t) xdr_%s_args, (char *) &args);\n"
4486              name;
4487       );
4488       pr "  if (serial == -1) {\n";
4489       pr "    guestfs_end_busy (g);\n";
4490       pr "    return %s;\n" error_code;
4491       pr "  }\n";
4492       pr "\n";
4493
4494       (* Send any additional files (FileIn) requested. *)
4495       let need_read_reply_label = ref false in
4496       List.iter (
4497         function
4498         | FileIn n ->
4499             pr "  {\n";
4500             pr "    int r;\n";
4501             pr "\n";
4502             pr "    r = guestfs__send_file_sync (g, %s);\n" n;
4503             pr "    if (r == -1) {\n";
4504             pr "      guestfs_end_busy (g);\n";
4505             pr "      return %s;\n" error_code;
4506             pr "    }\n";
4507             pr "    if (r == -2) /* daemon cancelled */\n";
4508             pr "      goto read_reply;\n";
4509             need_read_reply_label := true;
4510             pr "  }\n";
4511             pr "\n";
4512         | _ -> ()
4513       ) (snd style);
4514
4515       (* Wait for the reply from the remote end. *)
4516       if !need_read_reply_label then pr " read_reply:\n";
4517       pr "  guestfs__switch_to_receiving (g);\n";
4518       pr "  ctx.cb_sequence = 0;\n";
4519       pr "  guestfs_set_reply_callback (g, %s_reply_cb, &ctx);\n" shortname;
4520       pr "  (void) ml->main_loop_run (ml, g);\n";
4521       pr "  guestfs_set_reply_callback (g, NULL, NULL);\n";
4522       pr "  if (ctx.cb_sequence != 1) {\n";
4523       pr "    error (g, \"%%s reply failed, see earlier error messages\", \"%s\");\n" name;
4524       pr "    guestfs_end_busy (g);\n";
4525       pr "    return %s;\n" error_code;
4526       pr "  }\n";
4527       pr "\n";
4528
4529       pr "  if (check_reply_header (g, &ctx.hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
4530         (String.uppercase shortname);
4531       pr "    guestfs_end_busy (g);\n";
4532       pr "    return %s;\n" error_code;
4533       pr "  }\n";
4534       pr "\n";
4535
4536       pr "  if (ctx.hdr.status == GUESTFS_STATUS_ERROR) {\n";
4537       pr "    error (g, \"%%s\", ctx.err.error_message);\n";
4538       pr "    free (ctx.err.error_message);\n";
4539       pr "    guestfs_end_busy (g);\n";
4540       pr "    return %s;\n" error_code;
4541       pr "  }\n";
4542       pr "\n";
4543
4544       (* Expecting to receive further files (FileOut)? *)
4545       List.iter (
4546         function
4547         | FileOut n ->
4548             pr "  if (guestfs__receive_file_sync (g, %s) == -1) {\n" n;
4549             pr "    guestfs_end_busy (g);\n";
4550             pr "    return %s;\n" error_code;
4551             pr "  }\n";
4552             pr "\n";
4553         | _ -> ()
4554       ) (snd style);
4555
4556       pr "  guestfs_end_busy (g);\n";
4557
4558       (match fst style with
4559        | RErr -> pr "  return 0;\n"
4560        | RInt n | RInt64 n | RBool n ->
4561            pr "  return ctx.ret.%s;\n" n
4562        | RConstString _ | RConstOptString _ ->
4563            failwithf "RConstString|RConstOptString cannot be used by daemon functions"
4564        | RString n ->
4565            pr "  return ctx.ret.%s; /* caller will free */\n" n
4566        | RStringList n | RHashtable n ->
4567            pr "  /* caller will free this, but we need to add a NULL entry */\n";
4568            pr "  ctx.ret.%s.%s_val =\n" n n;
4569            pr "    safe_realloc (g, ctx.ret.%s.%s_val,\n" n n;
4570            pr "                  sizeof (char *) * (ctx.ret.%s.%s_len + 1));\n"
4571              n n;
4572            pr "  ctx.ret.%s.%s_val[ctx.ret.%s.%s_len] = NULL;\n" n n n n;
4573            pr "  return ctx.ret.%s.%s_val;\n" n n
4574        | RStruct (n, _) ->
4575            pr "  /* caller will free this */\n";
4576            pr "  return safe_memdup (g, &ctx.ret.%s, sizeof (ctx.ret.%s));\n" n n
4577        | RStructList (n, _) ->
4578            pr "  /* caller will free this */\n";
4579            pr "  return safe_memdup (g, &ctx.ret.%s, sizeof (ctx.ret.%s));\n" n n
4580        | RBufferOut n ->
4581            pr "  *size_r = ctx.ret.%s.%s_len;\n" n n;
4582            pr "  return ctx.ret.%s.%s_val; /* caller will free */\n" n n
4583       );
4584
4585       pr "}\n\n"
4586   ) daemon_functions;
4587
4588   (* Functions to free structures. *)
4589   pr "/* Structure-freeing functions.  These rely on the fact that the\n";
4590   pr " * structure format is identical to the XDR format.  See note in\n";
4591   pr " * generator.ml.\n";
4592   pr " */\n";
4593   pr "\n";
4594
4595   List.iter (
4596     fun (typ, _) ->
4597       pr "void\n";
4598       pr "guestfs_free_%s (struct guestfs_%s *x)\n" typ typ;
4599       pr "{\n";
4600       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s, (char *) x);\n" typ;
4601       pr "  free (x);\n";
4602       pr "}\n";
4603       pr "\n";
4604
4605       pr "void\n";
4606       pr "guestfs_free_%s_list (struct guestfs_%s_list *x)\n" typ typ;
4607       pr "{\n";
4608       pr "  xdr_free ((xdrproc_t) xdr_guestfs_int_%s_list, (char *) x);\n" typ;
4609       pr "  free (x);\n";
4610       pr "}\n";
4611       pr "\n";
4612
4613   ) structs;
4614
4615 (* Generate daemon/actions.h. *)
4616 and generate_daemon_actions_h () =
4617   generate_header CStyle GPLv2;
4618
4619   pr "#include \"../src/guestfs_protocol.h\"\n";
4620   pr "\n";
4621
4622   List.iter (
4623     fun (name, style, _, _, _, _, _) ->
4624       generate_prototype
4625         ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
4626         name style;
4627   ) daemon_functions
4628
4629 (* Generate the server-side stubs. *)
4630 and generate_daemon_actions () =
4631   generate_header CStyle GPLv2;
4632
4633   pr "#include <config.h>\n";
4634   pr "\n";
4635   pr "#include <stdio.h>\n";
4636   pr "#include <stdlib.h>\n";
4637   pr "#include <string.h>\n";
4638   pr "#include <inttypes.h>\n";
4639   pr "#include <ctype.h>\n";
4640   pr "#include <rpc/types.h>\n";
4641   pr "#include <rpc/xdr.h>\n";
4642   pr "\n";
4643   pr "#include \"daemon.h\"\n";
4644   pr "#include \"../src/guestfs_protocol.h\"\n";
4645   pr "#include \"actions.h\"\n";
4646   pr "\n";
4647
4648   List.iter (
4649     fun (name, style, _, _, _, _, _) ->
4650       (* Generate server-side stubs. *)
4651       pr "static void %s_stub (XDR *xdr_in)\n" name;
4652       pr "{\n";
4653       let error_code =
4654         match fst style with
4655         | RErr | RInt _ -> pr "  int r;\n"; "-1"
4656         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
4657         | RBool _ -> pr "  int r;\n"; "-1"
4658         | RConstString _ | RConstOptString _ ->
4659             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
4660         | RString _ -> pr "  char *r;\n"; "NULL"
4661         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
4662         | RStruct (_, typ) -> pr "  guestfs_int_%s *r;\n" typ; "NULL"
4663         | RStructList (_, typ) -> pr "  guestfs_int_%s_list *r;\n" typ; "NULL"
4664         | RBufferOut _ ->
4665             pr "  size_t size;\n";
4666             pr "  char *r;\n";
4667             "NULL" in
4668
4669       (match snd style with
4670        | [] -> ()
4671        | args ->
4672            pr "  struct guestfs_%s_args args;\n" name;
4673            List.iter (
4674              function
4675                (* Note we allow the string to be writable, in order to
4676                 * allow device name translation.  This is safe because
4677                 * we can modify the string (passed from RPC).
4678                 *)
4679              | String n
4680              | OptString n -> pr "  char *%s;\n" n
4681              | StringList n -> pr "  char **%s;\n" n
4682              | Bool n -> pr "  int %s;\n" n
4683              | Int n -> pr "  int %s;\n" n
4684              | FileIn _ | FileOut _ -> ()
4685            ) args
4686       );
4687       pr "\n";
4688
4689       (match snd style with
4690        | [] -> ()
4691        | args ->
4692            pr "  memset (&args, 0, sizeof args);\n";
4693            pr "\n";
4694            pr "  if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
4695            pr "    reply_with_error (\"%%s: daemon failed to decode procedure arguments\", \"%s\");\n" name;
4696            pr "    return;\n";
4697            pr "  }\n";
4698            List.iter (
4699              function
4700              | String n -> pr "  %s = args.%s;\n" n n
4701              | OptString n -> pr "  %s = args.%s ? *args.%s : NULL;\n" n n n
4702              | StringList n ->
4703                  pr "  %s = realloc (args.%s.%s_val,\n" n n n;
4704                  pr "                sizeof (char *) * (args.%s.%s_len+1));\n" n n;
4705                  pr "  if (%s == NULL) {\n" n;
4706                  pr "    reply_with_perror (\"realloc\");\n";
4707                  pr "    goto done;\n";
4708                  pr "  }\n";
4709                  pr "  %s[args.%s.%s_len] = NULL;\n" n n n;
4710                  pr "  args.%s.%s_val = %s;\n" n n n;
4711              | Bool n -> pr "  %s = args.%s;\n" n n
4712              | Int n -> pr "  %s = args.%s;\n" n n
4713              | FileIn _ | FileOut _ -> ()
4714            ) args;
4715            pr "\n"
4716       );
4717
4718       (* Don't want to call the impl with any FileIn or FileOut
4719        * parameters, since these go "outside" the RPC protocol.
4720        *)
4721       let args' =
4722         List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
4723           (snd style) in
4724       pr "  r = do_%s " name;
4725       generate_c_call_args (fst style, args');
4726       pr ";\n";
4727
4728       pr "  if (r == %s)\n" error_code;
4729       pr "    /* do_%s has already called reply_with_error */\n" name;
4730       pr "    goto done;\n";
4731       pr "\n";
4732
4733       (* If there are any FileOut parameters, then the impl must
4734        * send its own reply.
4735        *)
4736       let no_reply =
4737         List.exists (function FileOut _ -> true | _ -> false) (snd style) in
4738       if no_reply then
4739         pr "  /* do_%s has already sent a reply */\n" name
4740       else (
4741         match fst style with
4742         | RErr -> pr "  reply (NULL, NULL);\n"
4743         | RInt n | RInt64 n | RBool n ->
4744             pr "  struct guestfs_%s_ret ret;\n" name;
4745             pr "  ret.%s = r;\n" n;
4746             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
4747               name
4748         | RConstString _ | RConstOptString _ ->
4749             failwithf "RConstString|RConstOptString cannot be used by daemon functions"
4750         | RString n ->
4751             pr "  struct guestfs_%s_ret ret;\n" name;
4752             pr "  ret.%s = r;\n" n;
4753             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
4754               name;
4755             pr "  free (r);\n"
4756         | RStringList n | RHashtable n ->
4757             pr "  struct guestfs_%s_ret ret;\n" name;
4758             pr "  ret.%s.%s_len = count_strings (r);\n" n n;
4759             pr "  ret.%s.%s_val = r;\n" n n;
4760             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
4761               name;
4762             pr "  free_strings (r);\n"
4763         | RStruct (n, _) ->
4764             pr "  struct guestfs_%s_ret ret;\n" name;
4765             pr "  ret.%s = *r;\n" n;
4766             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
4767               name;
4768             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
4769               name
4770         | RStructList (n, _) ->
4771             pr "  struct guestfs_%s_ret ret;\n" name;
4772             pr "  ret.%s = *r;\n" n;
4773             pr "  reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
4774               name;
4775             pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
4776               name
4777         | RBufferOut n ->
4778             pr "  struct guestfs_%s_ret ret;\n" name;
4779             pr "  ret.%s.%s_val = r;\n" n n;
4780             pr "  ret.%s.%s_len = size;\n" n n;
4781             pr "  reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
4782               name;
4783             pr "  free (r);\n"
4784       );
4785
4786       (* Free the args. *)
4787       (match snd style with
4788        | [] ->
4789            pr "done: ;\n";
4790        | _ ->
4791            pr "done:\n";
4792            pr "  xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
4793              name
4794       );
4795
4796       pr "}\n\n";
4797   ) daemon_functions;
4798
4799   (* Dispatch function. *)
4800   pr "void dispatch_incoming_message (XDR *xdr_in)\n";
4801   pr "{\n";
4802   pr "  switch (proc_nr) {\n";
4803
4804   List.iter (
4805     fun (name, style, _, _, _, _, _) ->
4806       pr "    case GUESTFS_PROC_%s:\n" (String.uppercase name);
4807       pr "      %s_stub (xdr_in);\n" name;
4808       pr "      break;\n"
4809   ) daemon_functions;
4810
4811   pr "    default:\n";
4812   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";
4813   pr "  }\n";
4814   pr "}\n";
4815   pr "\n";
4816
4817   (* LVM columns and tokenization functions. *)
4818   (* XXX This generates crap code.  We should rethink how we
4819    * do this parsing.
4820    *)
4821   List.iter (
4822     function
4823     | typ, cols ->
4824         pr "static const char *lvm_%s_cols = \"%s\";\n"
4825           typ (String.concat "," (List.map fst cols));
4826         pr "\n";
4827
4828         pr "static int lvm_tokenize_%s (char *str, guestfs_int_lvm_%s *r)\n" typ typ;
4829         pr "{\n";
4830         pr "  char *tok, *p, *next;\n";
4831         pr "  int i, j;\n";
4832         pr "\n";
4833         (*
4834           pr "  fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
4835           pr "\n";
4836         *)
4837         pr "  if (!str) {\n";
4838         pr "    fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
4839         pr "    return -1;\n";
4840         pr "  }\n";
4841         pr "  if (!*str || isspace (*str)) {\n";
4842         pr "    fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
4843         pr "    return -1;\n";
4844         pr "  }\n";
4845         pr "  tok = str;\n";
4846         List.iter (
4847           fun (name, coltype) ->
4848             pr "  if (!tok) {\n";
4849             pr "    fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
4850             pr "    return -1;\n";
4851             pr "  }\n";
4852             pr "  p = strchrnul (tok, ',');\n";
4853             pr "  if (*p) next = p+1; else next = NULL;\n";
4854             pr "  *p = '\\0';\n";
4855             (match coltype with
4856              | FString ->
4857                  pr "  r->%s = strdup (tok);\n" name;
4858                  pr "  if (r->%s == NULL) {\n" name;
4859                  pr "    perror (\"strdup\");\n";
4860                  pr "    return -1;\n";
4861                  pr "  }\n"
4862              | FUUID ->
4863                  pr "  for (i = j = 0; i < 32; ++j) {\n";
4864                  pr "    if (tok[j] == '\\0') {\n";
4865                  pr "      fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
4866                  pr "      return -1;\n";
4867                  pr "    } else if (tok[j] != '-')\n";
4868                  pr "      r->%s[i++] = tok[j];\n" name;
4869                  pr "  }\n";
4870              | FBytes ->
4871                  pr "  if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
4872                  pr "    fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
4873                  pr "    return -1;\n";
4874                  pr "  }\n";
4875              | FInt64 ->
4876                  pr "  if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
4877                  pr "    fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
4878                  pr "    return -1;\n";
4879                  pr "  }\n";
4880              | FOptPercent ->
4881                  pr "  if (tok[0] == '\\0')\n";
4882                  pr "    r->%s = -1;\n" name;
4883                  pr "  else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
4884                  pr "    fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
4885                  pr "    return -1;\n";
4886                  pr "  }\n";
4887              | FBuffer | FInt32 | FUInt32 | FUInt64 | FChar ->
4888                  assert false (* can never be an LVM column *)
4889             );
4890             pr "  tok = next;\n";
4891         ) cols;
4892
4893         pr "  if (tok != NULL) {\n";
4894         pr "    fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
4895         pr "    return -1;\n";
4896         pr "  }\n";
4897         pr "  return 0;\n";
4898         pr "}\n";
4899         pr "\n";
4900
4901         pr "guestfs_int_lvm_%s_list *\n" typ;
4902         pr "parse_command_line_%ss (void)\n" typ;
4903         pr "{\n";
4904         pr "  char *out, *err;\n";
4905         pr "  char *p, *pend;\n";
4906         pr "  int r, i;\n";
4907         pr "  guestfs_int_lvm_%s_list *ret;\n" typ;
4908         pr "  void *newp;\n";
4909         pr "\n";
4910         pr "  ret = malloc (sizeof *ret);\n";
4911         pr "  if (!ret) {\n";
4912         pr "    reply_with_perror (\"malloc\");\n";
4913         pr "    return NULL;\n";
4914         pr "  }\n";
4915         pr "\n";
4916         pr "  ret->guestfs_int_lvm_%s_list_len = 0;\n" typ;
4917         pr "  ret->guestfs_int_lvm_%s_list_val = NULL;\n" typ;
4918         pr "\n";
4919         pr "  r = command (&out, &err,\n";
4920         pr "           \"/sbin/lvm\", \"%ss\",\n" typ;
4921         pr "           \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
4922         pr "           \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
4923         pr "  if (r == -1) {\n";
4924         pr "    reply_with_error (\"%%s\", err);\n";
4925         pr "    free (out);\n";
4926         pr "    free (err);\n";
4927         pr "    free (ret);\n";
4928         pr "    return NULL;\n";
4929         pr "  }\n";
4930         pr "\n";
4931         pr "  free (err);\n";
4932         pr "\n";
4933         pr "  /* Tokenize each line of the output. */\n";
4934         pr "  p = out;\n";
4935         pr "  i = 0;\n";
4936         pr "  while (p) {\n";
4937         pr "    pend = strchr (p, '\\n');       /* Get the next line of output. */\n";
4938         pr "    if (pend) {\n";
4939         pr "      *pend = '\\0';\n";
4940         pr "      pend++;\n";
4941         pr "    }\n";
4942         pr "\n";
4943         pr "    while (*p && isspace (*p))      /* Skip any leading whitespace. */\n";
4944         pr "      p++;\n";
4945         pr "\n";
4946         pr "    if (!*p) {                      /* Empty line?  Skip it. */\n";
4947         pr "      p = pend;\n";
4948         pr "      continue;\n";
4949         pr "    }\n";
4950         pr "\n";
4951         pr "    /* Allocate some space to store this next entry. */\n";
4952         pr "    newp = realloc (ret->guestfs_int_lvm_%s_list_val,\n" typ;
4953         pr "                sizeof (guestfs_int_lvm_%s) * (i+1));\n" typ;
4954         pr "    if (newp == NULL) {\n";
4955         pr "      reply_with_perror (\"realloc\");\n";
4956         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
4957         pr "      free (ret);\n";
4958         pr "      free (out);\n";
4959         pr "      return NULL;\n";
4960         pr "    }\n";
4961         pr "    ret->guestfs_int_lvm_%s_list_val = newp;\n" typ;
4962         pr "\n";
4963         pr "    /* Tokenize the next entry. */\n";
4964         pr "    r = lvm_tokenize_%s (p, &ret->guestfs_int_lvm_%s_list_val[i]);\n" typ typ;
4965         pr "    if (r == -1) {\n";
4966         pr "      reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
4967         pr "      free (ret->guestfs_int_lvm_%s_list_val);\n" typ;
4968         pr "      free (ret);\n";
4969         pr "      free (out);\n";
4970         pr "      return NULL;\n";
4971         pr "    }\n";
4972         pr "\n";
4973         pr "    ++i;\n";
4974         pr "    p = pend;\n";
4975         pr "  }\n";
4976         pr "\n";
4977         pr "  ret->guestfs_int_lvm_%s_list_len = i;\n" typ;
4978         pr "\n";
4979         pr "  free (out);\n";
4980         pr "  return ret;\n";
4981         pr "}\n"
4982
4983   ) ["pv", lvm_pv_cols; "vg", lvm_vg_cols; "lv", lvm_lv_cols]
4984
4985 (* Generate a list of function names, for debugging in the daemon.. *)
4986 and generate_daemon_names () =
4987   generate_header CStyle GPLv2;
4988
4989   pr "#include <config.h>\n";
4990   pr "\n";
4991   pr "#include \"daemon.h\"\n";
4992   pr "\n";
4993
4994   pr "/* This array is indexed by proc_nr.  See guestfs_protocol.x. */\n";
4995   pr "const char *function_names[] = {\n";
4996   List.iter (
4997     fun (name, _, proc_nr, _, _, _, _) -> pr "  [%d] = \"%s\",\n" proc_nr name
4998   ) daemon_functions;
4999   pr "};\n";
5000
5001 (* Generate the tests. *)
5002 and generate_tests () =
5003   generate_header CStyle GPLv2;
5004
5005   pr "\
5006 #include <stdio.h>
5007 #include <stdlib.h>
5008 #include <string.h>
5009 #include <unistd.h>
5010 #include <sys/types.h>
5011 #include <fcntl.h>
5012
5013 #include \"guestfs.h\"
5014
5015 static guestfs_h *g;
5016 static int suppress_error = 0;
5017
5018 static void print_error (guestfs_h *g, void *data, const char *msg)
5019 {
5020   if (!suppress_error)
5021     fprintf (stderr, \"%%s\\n\", msg);
5022 }
5023
5024 static void print_strings (char * const * const argv)
5025 {
5026   int argc;
5027
5028   for (argc = 0; argv[argc] != NULL; ++argc)
5029     printf (\"\\t%%s\\n\", argv[argc]);
5030 }
5031
5032 /*
5033 static void print_table (char * const * const argv)
5034 {
5035   int i;
5036
5037   for (i = 0; argv[i] != NULL; i += 2)
5038     printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
5039 }
5040 */
5041
5042 ";
5043
5044   (* Generate a list of commands which are not tested anywhere. *)
5045   pr "static void no_test_warnings (void)\n";
5046   pr "{\n";
5047
5048   let hash : (string, bool) Hashtbl.t = Hashtbl.create 13 in
5049   List.iter (
5050     fun (_, _, _, _, tests, _, _) ->
5051       let tests = filter_map (
5052         function
5053         | (_, (Always|If _|Unless _), test) -> Some test
5054         | (_, Disabled, _) -> None
5055       ) tests in
5056       let seq = List.concat (List.map seq_of_test tests) in
5057       let cmds_tested = List.map List.hd seq in
5058       List.iter (fun cmd -> Hashtbl.replace hash cmd true) cmds_tested
5059   ) all_functions;
5060
5061   List.iter (
5062     fun (name, _, _, _, _, _, _) ->
5063       if not (Hashtbl.mem hash name) then
5064         pr "  fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
5065   ) all_functions;
5066
5067   pr "}\n";
5068   pr "\n";
5069
5070   (* Generate the actual tests.  Note that we generate the tests
5071    * in reverse order, deliberately, so that (in general) the
5072    * newest tests run first.  This makes it quicker and easier to
5073    * debug them.
5074    *)
5075   let test_names =
5076     List.map (
5077       fun (name, _, _, _, tests, _, _) ->
5078         mapi (generate_one_test name) tests
5079     ) (List.rev all_functions) in
5080   let test_names = List.concat test_names in
5081   let nr_tests = List.length test_names in
5082
5083   pr "\
5084 int main (int argc, char *argv[])
5085 {
5086   char c = 0;
5087   int failed = 0;
5088   const char *filename;
5089   int fd;
5090   int nr_tests, test_num = 0;
5091
5092   setbuf (stdout, NULL);
5093
5094   no_test_warnings ();
5095
5096   g = guestfs_create ();
5097   if (g == NULL) {
5098     printf (\"guestfs_create FAILED\\n\");
5099     exit (1);
5100   }
5101
5102   guestfs_set_error_handler (g, print_error, NULL);
5103
5104   guestfs_set_path (g, \"../appliance\");
5105
5106   filename = \"test1.img\";
5107   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
5108   if (fd == -1) {
5109     perror (filename);
5110     exit (1);
5111   }
5112   if (lseek (fd, %d, SEEK_SET) == -1) {
5113     perror (\"lseek\");
5114     close (fd);
5115     unlink (filename);
5116     exit (1);
5117   }
5118   if (write (fd, &c, 1) == -1) {
5119     perror (\"write\");
5120     close (fd);
5121     unlink (filename);
5122     exit (1);
5123   }
5124   if (close (fd) == -1) {
5125     perror (filename);
5126     unlink (filename);
5127     exit (1);
5128   }
5129   if (guestfs_add_drive (g, filename) == -1) {
5130     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
5131     exit (1);
5132   }
5133
5134   filename = \"test2.img\";
5135   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
5136   if (fd == -1) {
5137     perror (filename);
5138     exit (1);
5139   }
5140   if (lseek (fd, %d, SEEK_SET) == -1) {
5141     perror (\"lseek\");
5142     close (fd);
5143     unlink (filename);
5144     exit (1);
5145   }
5146   if (write (fd, &c, 1) == -1) {
5147     perror (\"write\");
5148     close (fd);
5149     unlink (filename);
5150     exit (1);
5151   }
5152   if (close (fd) == -1) {
5153     perror (filename);
5154     unlink (filename);
5155     exit (1);
5156   }
5157   if (guestfs_add_drive (g, filename) == -1) {
5158     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
5159     exit (1);
5160   }
5161
5162   filename = \"test3.img\";
5163   fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
5164   if (fd == -1) {
5165     perror (filename);
5166     exit (1);
5167   }
5168   if (lseek (fd, %d, SEEK_SET) == -1) {
5169     perror (\"lseek\");
5170     close (fd);
5171     unlink (filename);
5172     exit (1);
5173   }
5174   if (write (fd, &c, 1) == -1) {
5175     perror (\"write\");
5176     close (fd);
5177     unlink (filename);
5178     exit (1);
5179   }
5180   if (close (fd) == -1) {
5181     perror (filename);
5182     unlink (filename);
5183     exit (1);
5184   }
5185   if (guestfs_add_drive (g, filename) == -1) {
5186     printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
5187     exit (1);
5188   }
5189
5190   if (guestfs_add_drive_ro (g, \"../images/test.sqsh\") == -1) {
5191     printf (\"guestfs_add_drive_ro ../images/test.sqsh FAILED\\n\");
5192     exit (1);
5193   }
5194
5195   if (guestfs_launch (g) == -1) {
5196     printf (\"guestfs_launch FAILED\\n\");
5197     exit (1);
5198   }
5199
5200   /* Set a timeout in case qemu hangs during launch (RHBZ#505329). */
5201   alarm (600);
5202
5203   if (guestfs_wait_ready (g) == -1) {
5204     printf (\"guestfs_wait_ready FAILED\\n\");
5205     exit (1);
5206   }
5207
5208   /* Cancel previous alarm. */
5209   alarm (0);
5210
5211   nr_tests = %d;
5212
5213 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
5214
5215   iteri (
5216     fun i test_name ->
5217       pr "  test_num++;\n";
5218       pr "  printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
5219       pr "  if (%s () == -1) {\n" test_name;
5220       pr "    printf (\"%s FAILED\\n\");\n" test_name;
5221       pr "    failed++;\n";
5222       pr "  }\n";
5223   ) test_names;
5224   pr "\n";
5225
5226   pr "  guestfs_close (g);\n";
5227   pr "  unlink (\"test1.img\");\n";
5228   pr "  unlink (\"test2.img\");\n";
5229   pr "  unlink (\"test3.img\");\n";
5230   pr "\n";
5231
5232   pr "  if (failed > 0) {\n";
5233   pr "    printf (\"***** %%d / %%d tests FAILED *****\\n\", failed, nr_tests);\n";
5234   pr "    exit (1);\n";
5235   pr "  }\n";
5236   pr "\n";
5237
5238   pr "  exit (0);\n";
5239   pr "}\n"
5240
5241 and generate_one_test name i (init, prereq, test) =
5242   let test_name = sprintf "test_%s_%d" name i in
5243
5244   pr "\
5245 static int %s_skip (void)
5246 {
5247   const char *str;
5248
5249   str = getenv (\"TEST_ONLY\");
5250   if (str)
5251     return strstr (str, \"%s\") == NULL;
5252   str = getenv (\"SKIP_%s\");
5253   if (str && strcmp (str, \"1\") == 0) return 1;
5254   str = getenv (\"SKIP_TEST_%s\");
5255   if (str && strcmp (str, \"1\") == 0) return 1;
5256   return 0;
5257 }
5258
5259 " test_name name (String.uppercase test_name) (String.uppercase name);
5260
5261   (match prereq with
5262    | Disabled | Always -> ()
5263    | If code | Unless code ->
5264        pr "static int %s_prereq (void)\n" test_name;
5265        pr "{\n";
5266        pr "  %s\n" code;
5267        pr "}\n";
5268        pr "\n";
5269   );
5270
5271   pr "\
5272 static int %s (void)
5273 {
5274   if (%s_skip ()) {
5275     printf (\"        %%s skipped (reason: environment variable set)\\n\", \"%s\");
5276     return 0;
5277   }
5278
5279 " test_name test_name test_name;
5280
5281   (match prereq with
5282    | Disabled ->
5283        pr "  printf (\"        %%s skipped (reason: test disabled in generator)\\n\", \"%s\");\n" test_name
5284    | If _ ->
5285        pr "  if (! %s_prereq ()) {\n" test_name;
5286        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
5287        pr "    return 0;\n";
5288        pr "  }\n";
5289        pr "\n";
5290        generate_one_test_body name i test_name init test;
5291    | Unless _ ->
5292        pr "  if (%s_prereq ()) {\n" test_name;
5293        pr "    printf (\"        %%s skipped (reason: test prerequisite)\\n\", \"%s\");\n" test_name;
5294        pr "    return 0;\n";
5295        pr "  }\n";
5296        pr "\n";
5297        generate_one_test_body name i test_name init test;
5298    | Always ->
5299        generate_one_test_body name i test_name init test
5300   );
5301
5302   pr "  return 0;\n";
5303   pr "}\n";
5304   pr "\n";
5305   test_name
5306
5307 and generate_one_test_body name i test_name init test =
5308   (match init with
5309    | InitNone (* XXX at some point, InitNone and InitEmpty became
5310                * folded together as the same thing.  Really we should
5311                * make InitNone do nothing at all, but the tests may
5312                * need to be checked to make sure this is OK.
5313                *)
5314    | InitEmpty ->
5315        pr "  /* InitNone|InitEmpty for %s */\n" test_name;
5316        List.iter (generate_test_command_call test_name)
5317          [["blockdev_setrw"; "/dev/sda"];
5318           ["umount_all"];
5319           ["lvm_remove_all"]]
5320    | InitBasicFS ->
5321        pr "  /* InitBasicFS for %s: create ext2 on /dev/sda1 */\n" test_name;
5322        List.iter (generate_test_command_call test_name)
5323          [["blockdev_setrw"; "/dev/sda"];
5324           ["umount_all"];
5325           ["lvm_remove_all"];
5326           ["sfdiskM"; "/dev/sda"; ","];
5327           ["mkfs"; "ext2"; "/dev/sda1"];
5328           ["mount"; "/dev/sda1"; "/"]]
5329    | InitBasicFSonLVM ->
5330        pr "  /* InitBasicFSonLVM for %s: create ext2 on /dev/VG/LV */\n"
5331          test_name;
5332        List.iter (generate_test_command_call test_name)
5333          [["blockdev_setrw"; "/dev/sda"];
5334           ["umount_all"];
5335           ["lvm_remove_all"];
5336           ["sfdiskM"; "/dev/sda"; ","];
5337           ["pvcreate"; "/dev/sda1"];
5338           ["vgcreate"; "VG"; "/dev/sda1"];
5339           ["lvcreate"; "LV"; "VG"; "8"];
5340           ["mkfs"; "ext2"; "/dev/VG/LV"];
5341           ["mount"; "/dev/VG/LV"; "/"]]
5342    | InitSquashFS ->
5343        pr "  /* InitSquashFS for %s */\n" test_name;
5344        List.iter (generate_test_command_call test_name)
5345          [["blockdev_setrw"; "/dev/sda"];
5346           ["umount_all"];
5347           ["lvm_remove_all"];
5348           ["mount_vfs"; "ro"; "squashfs"; "/dev/sdd"; "/"]]
5349   );
5350
5351   let get_seq_last = function
5352     | [] ->
5353         failwithf "%s: you cannot use [] (empty list) when expecting a command"
5354           test_name
5355     | seq ->
5356         let seq = List.rev seq in
5357         List.rev (List.tl seq), List.hd seq
5358   in
5359
5360   match test with
5361   | TestRun seq ->
5362       pr "  /* TestRun for %s (%d) */\n" name i;
5363       List.iter (generate_test_command_call test_name) seq
5364   | TestOutput (seq, expected) ->
5365       pr "  /* TestOutput for %s (%d) */\n" name i;
5366       pr "  const char *expected = \"%s\";\n" (c_quote expected);
5367       let seq, last = get_seq_last seq in
5368       let test () =
5369         pr "    if (strcmp (r, expected) != 0) {\n";
5370         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
5371         pr "      return -1;\n";
5372         pr "    }\n"
5373       in
5374       List.iter (generate_test_command_call test_name) seq;
5375       generate_test_command_call ~test test_name last
5376   | TestOutputList (seq, expected) ->
5377       pr "  /* TestOutputList for %s (%d) */\n" name i;
5378       let seq, last = get_seq_last seq in
5379       let test () =
5380         iteri (
5381           fun i str ->
5382             pr "    if (!r[%d]) {\n" i;
5383             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
5384             pr "      print_strings (r);\n";
5385             pr "      return -1;\n";
5386             pr "    }\n";
5387             pr "    {\n";
5388             pr "      const char *expected = \"%s\";\n" (c_quote str);
5389             pr "      if (strcmp (r[%d], expected) != 0) {\n" i;
5390             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
5391             pr "        return -1;\n";
5392             pr "      }\n";
5393             pr "    }\n"
5394         ) expected;
5395         pr "    if (r[%d] != NULL) {\n" (List.length expected);
5396         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
5397           test_name;
5398         pr "      print_strings (r);\n";
5399         pr "      return -1;\n";
5400         pr "    }\n"
5401       in
5402       List.iter (generate_test_command_call test_name) seq;
5403       generate_test_command_call ~test test_name last
5404   | TestOutputListOfDevices (seq, expected) ->
5405       pr "  /* TestOutputListOfDevices for %s (%d) */\n" name i;
5406       let seq, last = get_seq_last seq in
5407       let test () =
5408         iteri (
5409           fun i str ->
5410             pr "    if (!r[%d]) {\n" i;
5411             pr "      fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
5412             pr "      print_strings (r);\n";
5413             pr "      return -1;\n";
5414             pr "    }\n";
5415             pr "    {\n";
5416             pr "      const char *expected = \"%s\";\n" (c_quote str);
5417             pr "      r[%d][5] = 's';\n" i;
5418             pr "      if (strcmp (r[%d], expected) != 0) {\n" i;
5419             pr "        fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r[%d]);\n" test_name i;
5420             pr "        return -1;\n";
5421             pr "      }\n";
5422             pr "    }\n"
5423         ) expected;
5424         pr "    if (r[%d] != NULL) {\n" (List.length expected);
5425         pr "      fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
5426           test_name;
5427         pr "      print_strings (r);\n";
5428         pr "      return -1;\n";
5429         pr "    }\n"
5430       in
5431       List.iter (generate_test_command_call test_name) seq;
5432       generate_test_command_call ~test test_name last
5433   | TestOutputInt (seq, expected) ->
5434       pr "  /* TestOutputInt for %s (%d) */\n" name i;
5435       let seq, last = get_seq_last seq in
5436       let test () =
5437         pr "    if (r != %d) {\n" expected;
5438         pr "      fprintf (stderr, \"%s: expected %d but got %%d\\n\","
5439           test_name expected;
5440         pr "               (int) r);\n";
5441         pr "      return -1;\n";
5442         pr "    }\n"
5443       in
5444       List.iter (generate_test_command_call test_name) seq;
5445       generate_test_command_call ~test test_name last
5446   | TestOutputIntOp (seq, op, expected) ->
5447       pr "  /* TestOutputIntOp for %s (%d) */\n" name i;
5448       let seq, last = get_seq_last seq in
5449       let test () =
5450         pr "    if (! (r %s %d)) {\n" op expected;
5451         pr "      fprintf (stderr, \"%s: expected %s %d but got %%d\\n\","
5452           test_name op expected;
5453         pr "               (int) r);\n";
5454         pr "      return -1;\n";
5455         pr "    }\n"
5456       in
5457       List.iter (generate_test_command_call test_name) seq;
5458       generate_test_command_call ~test test_name last
5459   | TestOutputTrue seq ->
5460       pr "  /* TestOutputTrue for %s (%d) */\n" name i;
5461       let seq, last = get_seq_last seq in
5462       let test () =
5463         pr "    if (!r) {\n";
5464         pr "      fprintf (stderr, \"%s: expected true, got false\\n\");\n"
5465           test_name;
5466         pr "      return -1;\n";
5467         pr "    }\n"
5468       in
5469       List.iter (generate_test_command_call test_name) seq;
5470       generate_test_command_call ~test test_name last
5471   | TestOutputFalse seq ->
5472       pr "  /* TestOutputFalse for %s (%d) */\n" name i;
5473       let seq, last = get_seq_last seq in
5474       let test () =
5475         pr "    if (r) {\n";
5476         pr "      fprintf (stderr, \"%s: expected false, got true\\n\");\n"
5477           test_name;
5478         pr "      return -1;\n";
5479         pr "    }\n"
5480       in
5481       List.iter (generate_test_command_call test_name) seq;
5482       generate_test_command_call ~test test_name last
5483   | TestOutputLength (seq, expected) ->
5484       pr "  /* TestOutputLength for %s (%d) */\n" name i;
5485       let seq, last = get_seq_last seq in
5486       let test () =
5487         pr "    int j;\n";
5488         pr "    for (j = 0; j < %d; ++j)\n" expected;
5489         pr "      if (r[j] == NULL) {\n";
5490         pr "        fprintf (stderr, \"%s: short list returned\\n\");\n"
5491           test_name;
5492         pr "        print_strings (r);\n";
5493         pr "        return -1;\n";
5494         pr "      }\n";
5495         pr "    if (r[j] != NULL) {\n";
5496         pr "      fprintf (stderr, \"%s: long list returned\\n\");\n"
5497           test_name;
5498         pr "      print_strings (r);\n";
5499         pr "      return -1;\n";
5500         pr "    }\n"
5501       in
5502       List.iter (generate_test_command_call test_name) seq;
5503       generate_test_command_call ~test test_name last
5504   | TestOutputBuffer (seq, expected) ->
5505       pr "  /* TestOutputBuffer for %s (%d) */\n" name i;
5506       pr "  const char *expected = \"%s\";\n" (c_quote expected);
5507       let seq, last = get_seq_last seq in
5508       let len = String.length expected in
5509       let test () =
5510         pr "    if (size != %d) {\n" len;
5511         pr "      fprintf (stderr, \"%s: returned size of buffer wrong, expected %d but got %%zu\\n\", size);\n" test_name len;
5512         pr "      return -1;\n";
5513         pr "    }\n";
5514         pr "    if (strncmp (r, expected, size) != 0) {\n";
5515         pr "      fprintf (stderr, \"%s: expected \\\"%%s\\\" but got \\\"%%s\\\"\\n\", expected, r);\n" test_name;
5516         pr "      return -1;\n";
5517         pr "    }\n"
5518       in
5519       List.iter (generate_test_command_call test_name) seq;
5520       generate_test_command_call ~test test_name last
5521   | TestOutputStruct (seq, checks) ->
5522       pr "  /* TestOutputStruct for %s (%d) */\n" name i;
5523       let seq, last = get_seq_last seq in
5524       let test () =
5525         List.iter (
5526           function
5527           | CompareWithInt (field, expected) ->
5528               pr "    if (r->%s != %d) {\n" field expected;
5529               pr "      fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
5530                 test_name field expected;
5531               pr "               (int) r->%s);\n" field;
5532               pr "      return -1;\n";
5533               pr "    }\n"
5534           | CompareWithIntOp (field, op, expected) ->
5535               pr "    if (!(r->%s %s %d)) {\n" field op expected;
5536               pr "      fprintf (stderr, \"%s: %s was %%d, expected %s %d\\n\",\n"
5537                 test_name field op expected;
5538               pr "               (int) r->%s);\n" field;
5539               pr "      return -1;\n";
5540               pr "    }\n"
5541           | CompareWithString (field, expected) ->
5542               pr "    if (strcmp (r->%s, \"%s\") != 0) {\n" field expected;
5543               pr "      fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
5544                 test_name field expected;
5545               pr "               r->%s);\n" field;
5546               pr "      return -1;\n";
5547               pr "    }\n"
5548           | CompareFieldsIntEq (field1, field2) ->
5549               pr "    if (r->%s != r->%s) {\n" field1 field2;
5550               pr "      fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
5551                 test_name field1 field2;
5552               pr "               (int) r->%s, (int) r->%s);\n" field1 field2;
5553               pr "      return -1;\n";
5554               pr "    }\n"
5555           | CompareFieldsStrEq (field1, field2) ->
5556               pr "    if (strcmp (r->%s, r->%s) != 0) {\n" field1 field2;
5557               pr "      fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
5558                 test_name field1 field2;
5559               pr "               r->%s, r->%s);\n" field1 field2;
5560               pr "      return -1;\n";
5561               pr "    }\n"
5562         ) checks
5563       in
5564       List.iter (generate_test_command_call test_name) seq;
5565       generate_test_command_call ~test test_name last
5566   | TestLastFail seq ->
5567       pr "  /* TestLastFail for %s (%d) */\n" name i;
5568       let seq, last = get_seq_last seq in
5569       List.iter (generate_test_command_call test_name) seq;
5570       generate_test_command_call test_name ~expect_error:true last
5571
5572 (* Generate the code to run a command, leaving the result in 'r'.
5573  * If you expect to get an error then you should set expect_error:true.
5574  *)
5575 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
5576   match cmd with
5577   | [] -> assert false
5578   | name :: args ->
5579       (* Look up the command to find out what args/ret it has. *)
5580       let style =
5581         try
5582           let _, style, _, _, _, _, _ =
5583             List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
5584           style
5585         with Not_found ->
5586           failwithf "%s: in test, command %s was not found" test_name name in
5587
5588       if List.length (snd style) <> List.length args then
5589         failwithf "%s: in test, wrong number of args given to %s"
5590           test_name name;
5591
5592       pr "  {\n";
5593
5594       List.iter (
5595         function
5596         | OptString n, "NULL" -> ()
5597         | String n, arg
5598         | OptString n, arg ->
5599             pr "    const char *%s = \"%s\";\n" n (c_quote arg);
5600         | Int _, _
5601         | Bool _, _
5602         | FileIn _, _ | FileOut _, _ -> ()
5603         | StringList n, arg ->
5604             let strs = string_split " " arg in
5605             iteri (
5606               fun i str ->
5607                 pr "    const char *%s_%d = \"%s\";\n" n i (c_quote str);
5608             ) strs;
5609             pr "    const char *%s[] = {\n" n;
5610             iteri (
5611               fun i _ -> pr "      %s_%d,\n" n i
5612             ) strs;
5613             pr "      NULL\n";
5614             pr "    };\n";
5615       ) (List.combine (snd style) args);
5616
5617       let error_code =
5618         match fst style with
5619         | RErr | RInt _ | RBool _ -> pr "    int r;\n"; "-1"
5620         | RInt64 _ -> pr "    int64_t r;\n"; "-1"
5621         | RConstString _ | RConstOptString _ ->
5622             pr "    const char *r;\n"; "NULL"
5623         | RString _ -> pr "    char *r;\n"; "NULL"
5624         | RStringList _ | RHashtable _ ->
5625             pr "    char **r;\n";
5626             pr "    int i;\n";
5627             "NULL"
5628         | RStruct (_, typ) ->
5629             pr "    struct guestfs_%s *r;\n" typ; "NULL"
5630         | RStructList (_, typ) ->
5631             pr "    struct guestfs_%s_list *r;\n" typ; "NULL"
5632         | RBufferOut _ ->
5633             pr "    char *r;\n";
5634             pr "    size_t size;\n";
5635             "NULL" in
5636
5637       pr "    suppress_error = %d;\n" (if expect_error then 1 else 0);
5638       pr "    r = guestfs_%s (g" name;
5639
5640       (* Generate the parameters. *)
5641       List.iter (
5642         function
5643         | OptString _, "NULL" -> pr ", NULL"
5644         | String n, _
5645         | OptString n, _ ->
5646             pr ", %s" n
5647         | FileIn _, arg | FileOut _, arg ->
5648             pr ", \"%s\"" (c_quote arg)
5649         | StringList n, _ ->
5650             pr ", %s" n
5651         | Int _, arg ->
5652             let i =
5653               try int_of_string arg
5654               with Failure "int_of_string" ->
5655                 failwithf "%s: expecting an int, but got '%s'" test_name arg in
5656             pr ", %d" i
5657         | Bool _, arg ->
5658             let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
5659       ) (List.combine (snd style) args);
5660
5661       (match fst style with
5662        | RBufferOut _ -> pr ", &size"
5663        | _ -> ()
5664       );
5665
5666       pr ");\n";
5667
5668       if not expect_error then
5669         pr "    if (r == %s)\n" error_code
5670       else
5671         pr "    if (r != %s)\n" error_code;
5672       pr "      return -1;\n";
5673
5674       (* Insert the test code. *)
5675       (match test with
5676        | None -> ()
5677        | Some f -> f ()
5678       );
5679
5680       (match fst style with
5681        | RErr | RInt _ | RInt64 _ | RBool _
5682        | RConstString _ | RConstOptString _ -> ()
5683        | RString _ | RBufferOut _ -> pr "    free (r);\n"
5684        | RStringList _ | RHashtable _ ->
5685            pr "    for (i = 0; r[i] != NULL; ++i)\n";
5686            pr "      free (r[i]);\n";
5687            pr "    free (r);\n"
5688        | RStruct (_, typ) ->
5689            pr "    guestfs_free_%s (r);\n" typ
5690        | RStructList (_, typ) ->
5691            pr "    guestfs_free_%s_list (r);\n" typ
5692       );
5693
5694       pr "  }\n"
5695
5696 and c_quote str =
5697   let str = replace_str str "\r" "\\r" in
5698   let str = replace_str str "\n" "\\n" in
5699   let str = replace_str str "\t" "\\t" in
5700   let str = replace_str str "\000" "\\0" in
5701   str
5702
5703 (* Generate a lot of different functions for guestfish. *)
5704 and generate_fish_cmds () =
5705   generate_header CStyle GPLv2;
5706
5707   let all_functions =
5708     List.filter (
5709       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
5710     ) all_functions in
5711   let all_functions_sorted =
5712     List.filter (
5713       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
5714     ) all_functions_sorted in
5715
5716   pr "#include <stdio.h>\n";
5717   pr "#include <stdlib.h>\n";
5718   pr "#include <string.h>\n";
5719   pr "#include <inttypes.h>\n";
5720   pr "#include <ctype.h>\n";
5721   pr "\n";
5722   pr "#include <guestfs.h>\n";
5723   pr "#include \"fish.h\"\n";
5724   pr "\n";
5725
5726   (* list_commands function, which implements guestfish -h *)
5727   pr "void list_commands (void)\n";
5728   pr "{\n";
5729   pr "  printf (\"    %%-16s     %%s\\n\", _(\"Command\"), _(\"Description\"));\n";
5730   pr "  list_builtin_commands ();\n";
5731   List.iter (
5732     fun (name, _, _, flags, _, shortdesc, _) ->
5733       let name = replace_char name '_' '-' in
5734       pr "  printf (\"%%-20s %%s\\n\", \"%s\", _(\"%s\"));\n"
5735         name shortdesc
5736   ) all_functions_sorted;
5737   pr "  printf (\"    %%s\\n\",";
5738   pr "          _(\"Use -h <cmd> / help <cmd> to show detailed help for a command.\"));\n";
5739   pr "}\n";
5740   pr "\n";
5741
5742   (* display_command function, which implements guestfish -h cmd *)
5743   pr "void display_command (const char *cmd)\n";
5744   pr "{\n";
5745   List.iter (
5746     fun (name, style, _, flags, _, shortdesc, longdesc) ->
5747       let name2 = replace_char name '_' '-' in
5748       let alias =
5749         try find_map (function FishAlias n -> Some n | _ -> None) flags
5750         with Not_found -> name in
5751       let longdesc = replace_str longdesc "C<guestfs_" "C<" in
5752       let synopsis =
5753         match snd style with
5754         | [] -> name2
5755         | args ->
5756             sprintf "%s <%s>"
5757               name2 (String.concat "> <" (List.map name_of_argt args)) in
5758
5759       let warnings =
5760         if List.mem ProtocolLimitWarning flags then
5761           ("\n\n" ^ protocol_limit_warning)
5762         else "" in
5763
5764       (* For DangerWillRobinson commands, we should probably have
5765        * guestfish prompt before allowing you to use them (especially
5766        * in interactive mode). XXX
5767        *)
5768       let warnings =
5769         warnings ^
5770           if List.mem DangerWillRobinson flags then
5771             ("\n\n" ^ danger_will_robinson)
5772           else "" in
5773
5774       let warnings =
5775         warnings ^
5776           match deprecation_notice flags with
5777           | None -> ""
5778           | Some txt -> "\n\n" ^ txt in
5779
5780       let describe_alias =
5781         if name <> alias then
5782           sprintf "\n\nYou can use '%s' as an alias for this command." alias
5783         else "" in
5784
5785       pr "  if (";
5786       pr "strcasecmp (cmd, \"%s\") == 0" name;
5787       if name <> name2 then
5788         pr " || strcasecmp (cmd, \"%s\") == 0" name2;
5789       if name <> alias then
5790         pr " || strcasecmp (cmd, \"%s\") == 0" alias;
5791       pr ")\n";
5792       pr "    pod2text (\"%s\", _(\"%s\"), %S);\n"
5793         name2 shortdesc
5794         (" " ^ synopsis ^ "\n\n" ^ longdesc ^ warnings ^ describe_alias);
5795       pr "  else\n"
5796   ) all_functions;
5797   pr "    display_builtin_command (cmd);\n";
5798   pr "}\n";
5799   pr "\n";
5800
5801   (* print_* functions *)
5802   List.iter (
5803     fun (typ, cols) ->
5804       let needs_i =
5805         List.exists (function (_, (FUUID|FBuffer)) -> true | _ -> false) cols in
5806
5807       pr "static void print_%s_indent (struct guestfs_%s *%s, const char *indent)\n" typ typ typ;
5808       pr "{\n";
5809       if needs_i then (
5810         pr "  int i;\n";
5811         pr "\n"
5812       );
5813       List.iter (
5814         function
5815         | name, FString ->
5816             pr "  printf (\"%%s%s: %%s\\n\", indent, %s->%s);\n" name typ name
5817         | name, FUUID ->
5818             pr "  printf (\"%s: \");\n" name;
5819             pr "  for (i = 0; i < 32; ++i)\n";
5820             pr "    printf (\"%%s%%c\", indent, %s->%s[i]);\n" typ name;
5821             pr "  printf (\"\\n\");\n"
5822         | name, FBuffer ->
5823             pr "  printf (\"%%s%s: \", indent);\n" name;
5824             pr "  for (i = 0; i < %s->%s_len; ++i)\n" typ name;
5825             pr "    if (isprint (%s->%s[i]))\n" typ name;
5826             pr "      printf (\"%%s%%c\", indent, %s->%s[i]);\n" typ name;
5827             pr "    else\n";
5828             pr "      printf (\"%%s\\\\x%%02x\", indent, %s->%s[i]);\n" typ name;
5829             pr "  printf (\"\\n\");\n"
5830         | name, (FUInt64|FBytes) ->
5831             pr "  printf (\"%%s%s: %%\" PRIu64 \"\\n\", indent, %s->%s);\n"
5832               name typ name
5833         | name, FInt64 ->
5834             pr "  printf (\"%%s%s: %%\" PRIi64 \"\\n\", indent, %s->%s);\n"
5835               name typ name
5836         | name, FUInt32 ->
5837             pr "  printf (\"%%s%s: %%\" PRIu32 \"\\n\", indent, %s->%s);\n"
5838               name typ name
5839         | name, FInt32 ->
5840             pr "  printf (\"%%s%s: %%\" PRIi32 \"\\n\", indent, %s->%s);\n"
5841               name typ name
5842         | name, FChar ->
5843             pr "  printf (\"%%s%s: %%c\\n\", indent, %s->%s);\n"
5844               name typ name
5845         | name, FOptPercent ->
5846             pr "  if (%s->%s >= 0) printf (\"%%s%s: %%g %%%%\\n\", indent, %s->%s);\n"
5847               typ name name typ name;
5848             pr "  else printf (\"%%s%s: \\n\", indent);\n" name
5849       ) cols;
5850       pr "}\n";
5851       pr "\n";
5852       pr "static void print_%s (struct guestfs_%s *%s)\n" typ typ typ;
5853       pr "{\n";
5854       pr "  print_%s_indent (%s, \"\");\n" typ typ;
5855       pr "}\n";
5856       pr "\n";
5857       pr "static void print_%s_list (struct guestfs_%s_list *%ss)\n"
5858         typ typ typ;
5859       pr "{\n";
5860       pr "  int i;\n";
5861       pr "\n";
5862       pr "  for (i = 0; i < %ss->len; ++i) {\n" typ;
5863       pr "    printf (\"[%%d] = {\\n\", i);\n";
5864       pr "    print_%s_indent (&%ss->val[i], \"  \");\n" typ typ;
5865       pr "    printf (\"}\\n\");\n";
5866       pr "  }\n";
5867       pr "}\n";
5868       pr "\n";
5869   ) structs;
5870
5871   (* run_<action> actions *)
5872   List.iter (
5873     fun (name, style, _, flags, _, _, _) ->
5874       pr "static int run_%s (const char *cmd, int argc, char *argv[])\n" name;
5875       pr "{\n";
5876       (match fst style with
5877        | RErr
5878        | RInt _
5879        | RBool _ -> pr "  int r;\n"
5880        | RInt64 _ -> pr "  int64_t r;\n"
5881        | RConstString _ | RConstOptString _ -> pr "  const char *r;\n"
5882        | RString _ -> pr "  char *r;\n"
5883        | RStringList _ | RHashtable _ -> pr "  char **r;\n"
5884        | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ
5885        | RStructList (_, typ) -> pr "  struct guestfs_%s_list *r;\n" typ
5886        | RBufferOut _ ->
5887            pr "  char *r;\n";
5888            pr "  size_t size;\n";
5889       );
5890       List.iter (
5891         function
5892         | String n
5893         | OptString n
5894         | FileIn n
5895         | FileOut n -> pr "  const char *%s;\n" n
5896         | StringList n -> pr "  char **%s;\n" n
5897         | Bool n -> pr "  int %s;\n" n
5898         | Int n -> pr "  int %s;\n" n
5899       ) (snd style);
5900
5901       (* Check and convert parameters. *)
5902       let argc_expected = List.length (snd style) in
5903       pr "  if (argc != %d) {\n" argc_expected;
5904       pr "    fprintf (stderr, _(\"%%s should have %%d parameter(s)\\n\"), cmd, %d);\n"
5905         argc_expected;
5906       pr "    fprintf (stderr, _(\"type 'help %%s' for help on %%s\\n\"), cmd, cmd);\n";
5907       pr "    return -1;\n";
5908       pr "  }\n";
5909       iteri (
5910         fun i ->
5911           function
5912           | String name -> pr "  %s = argv[%d];\n" name i
5913           | OptString name ->
5914               pr "  %s = strcmp (argv[%d], \"\") != 0 ? argv[%d] : NULL;\n"
5915                 name i i
5916           | FileIn name ->
5917               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdin\";\n"
5918                 name i i
5919           | FileOut name ->
5920               pr "  %s = strcmp (argv[%d], \"-\") != 0 ? argv[%d] : \"/dev/stdout\";\n"
5921                 name i i
5922           | StringList name ->
5923               pr "  %s = parse_string_list (argv[%d]);\n" name i
5924           | Bool name ->
5925               pr "  %s = is_true (argv[%d]) ? 1 : 0;\n" name i
5926           | Int name ->
5927               pr "  %s = atoi (argv[%d]);\n" name i
5928       ) (snd style);
5929
5930       (* Call C API function. *)
5931       let fn =
5932         try find_map (function FishAction n -> Some n | _ -> None) flags
5933         with Not_found -> sprintf "guestfs_%s" name in
5934       pr "  r = %s " fn;
5935       generate_c_call_args ~handle:"g" style;
5936       pr ";\n";
5937
5938       (* Check return value for errors and display command results. *)
5939       (match fst style with
5940        | RErr -> pr "  return r;\n"
5941        | RInt _ ->
5942            pr "  if (r == -1) return -1;\n";
5943            pr "  printf (\"%%d\\n\", r);\n";
5944            pr "  return 0;\n"
5945        | RInt64 _ ->
5946            pr "  if (r == -1) return -1;\n";
5947            pr "  printf (\"%%\" PRIi64 \"\\n\", r);\n";
5948            pr "  return 0;\n"
5949        | RBool _ ->
5950            pr "  if (r == -1) return -1;\n";
5951            pr "  if (r) printf (\"true\\n\"); else printf (\"false\\n\");\n";
5952            pr "  return 0;\n"
5953        | RConstString _ ->
5954            pr "  if (r == NULL) return -1;\n";
5955            pr "  printf (\"%%s\\n\", r);\n";
5956            pr "  return 0;\n"
5957        | RConstOptString _ ->
5958            pr "  printf (\"%%s\\n\", r ? : \"(null)\");\n";
5959            pr "  return 0;\n"
5960        | RString _ ->
5961            pr "  if (r == NULL) return -1;\n";
5962            pr "  printf (\"%%s\\n\", r);\n";
5963            pr "  free (r);\n";
5964            pr "  return 0;\n"
5965        | RStringList _ ->
5966            pr "  if (r == NULL) return -1;\n";
5967            pr "  print_strings (r);\n";
5968            pr "  free_strings (r);\n";
5969            pr "  return 0;\n"
5970        | RStruct (_, typ) ->
5971            pr "  if (r == NULL) return -1;\n";
5972            pr "  print_%s (r);\n" typ;
5973            pr "  guestfs_free_%s (r);\n" typ;
5974            pr "  return 0;\n"
5975        | RStructList (_, typ) ->
5976            pr "  if (r == NULL) return -1;\n";
5977            pr "  print_%s_list (r);\n" typ;
5978            pr "  guestfs_free_%s_list (r);\n" typ;
5979            pr "  return 0;\n"
5980        | RHashtable _ ->
5981            pr "  if (r == NULL) return -1;\n";
5982            pr "  print_table (r);\n";
5983            pr "  free_strings (r);\n";
5984            pr "  return 0;\n"
5985        | RBufferOut _ ->
5986            pr "  if (r == NULL) return -1;\n";
5987            pr "  fwrite (r, size, 1, stdout);\n";
5988            pr "  free (r);\n";
5989            pr "  return 0;\n"
5990       );
5991       pr "}\n";
5992       pr "\n"
5993   ) all_functions;
5994
5995   (* run_action function *)
5996   pr "int run_action (const char *cmd, int argc, char *argv[])\n";
5997   pr "{\n";
5998   List.iter (
5999     fun (name, _, _, flags, _, _, _) ->
6000       let name2 = replace_char name '_' '-' in
6001       let alias =
6002         try find_map (function FishAlias n -> Some n | _ -> None) flags
6003         with Not_found -> name in
6004       pr "  if (";
6005       pr "strcasecmp (cmd, \"%s\") == 0" name;
6006       if name <> name2 then
6007         pr " || strcasecmp (cmd, \"%s\") == 0" name2;
6008       if name <> alias then
6009         pr " || strcasecmp (cmd, \"%s\") == 0" alias;
6010       pr ")\n";
6011       pr "    return run_%s (cmd, argc, argv);\n" name;
6012       pr "  else\n";
6013   ) all_functions;
6014   pr "    {\n";
6015   pr "      fprintf (stderr, _(\"%%s: unknown command\\n\"), cmd);\n";
6016   pr "      return -1;\n";
6017   pr "    }\n";
6018   pr "  return 0;\n";
6019   pr "}\n";
6020   pr "\n"
6021
6022 (* Readline completion for guestfish. *)
6023 and generate_fish_completion () =
6024   generate_header CStyle GPLv2;
6025
6026   let all_functions =
6027     List.filter (
6028       fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
6029     ) all_functions in
6030
6031   pr "\
6032 #include <config.h>
6033
6034 #include <stdio.h>
6035 #include <stdlib.h>
6036 #include <string.h>
6037
6038 #ifdef HAVE_LIBREADLINE
6039 #include <readline/readline.h>
6040 #endif
6041
6042 #include \"fish.h\"
6043
6044 #ifdef HAVE_LIBREADLINE
6045
6046 static const char *const commands[] = {
6047   BUILTIN_COMMANDS_FOR_COMPLETION,
6048 ";
6049
6050   (* Get the commands, including the aliases.  They don't need to be
6051    * sorted - the generator() function just does a dumb linear search.
6052    *)
6053   let commands =
6054     List.map (
6055       fun (name, _, _, flags, _, _, _) ->
6056         let name2 = replace_char name '_' '-' in
6057         let alias =
6058           try find_map (function FishAlias n -> Some n | _ -> None) flags
6059           with Not_found -> name in
6060
6061         if name <> alias then [name2; alias] else [name2]
6062     ) all_functions in
6063   let commands = List.flatten commands in
6064
6065   List.iter (pr "  \"%s\",\n") commands;
6066
6067   pr "  NULL
6068 };
6069
6070 static char *
6071 generator (const char *text, int state)
6072 {
6073   static int index, len;
6074   const char *name;
6075
6076   if (!state) {
6077     index = 0;
6078     len = strlen (text);
6079   }
6080
6081   rl_attempted_completion_over = 1;
6082
6083   while ((name = commands[index]) != NULL) {
6084     index++;
6085     if (strncasecmp (name, text, len) == 0)
6086       return strdup (name);
6087   }
6088
6089   return NULL;
6090 }
6091
6092 #endif /* HAVE_LIBREADLINE */
6093
6094 char **do_completion (const char *text, int start, int end)
6095 {
6096   char **matches = NULL;
6097
6098 #ifdef HAVE_LIBREADLINE
6099   rl_completion_append_character = ' ';
6100
6101   if (start == 0)
6102     matches = rl_completion_matches (text, generator);
6103   else if (complete_dest_paths)
6104     matches = rl_completion_matches (text, complete_dest_paths_generator);
6105 #endif
6106
6107   return matches;
6108 }
6109 ";
6110
6111 (* Generate the POD documentation for guestfish. *)
6112 and generate_fish_actions_pod () =
6113   let all_functions_sorted =
6114     List.filter (
6115       fun (_, _, _, flags, _, _, _) ->
6116         not (List.mem NotInFish flags || List.mem NotInDocs flags)
6117     ) all_functions_sorted in
6118
6119   let rex = Str.regexp "C<guestfs_\\([^>]+\\)>" in
6120
6121   List.iter (
6122     fun (name, style, _, flags, _, _, longdesc) ->
6123       let longdesc =
6124         Str.global_substitute rex (
6125           fun s ->
6126             let sub =
6127               try Str.matched_group 1 s
6128               with Not_found ->
6129                 failwithf "error substituting C<guestfs_...> in longdesc of function %s" name in
6130             "C<" ^ replace_char sub '_' '-' ^ ">"
6131         ) longdesc in
6132       let name = replace_char name '_' '-' in
6133       let alias =
6134         try find_map (function FishAlias n -> Some n | _ -> None) flags
6135         with Not_found -> name in
6136
6137       pr "=head2 %s" name;
6138       if name <> alias then
6139         pr " | %s" alias;
6140       pr "\n";
6141       pr "\n";
6142       pr " %s" name;
6143       List.iter (
6144         function
6145         | String n -> pr " %s" n
6146         | OptString n -> pr " %s" n
6147         | StringList n -> pr " '%s ...'" n
6148         | Bool _ -> pr " true|false"
6149         | Int n -> pr " %s" n
6150         | FileIn n | FileOut n -> pr " (%s|-)" n
6151       ) (snd style);
6152       pr "\n";
6153       pr "\n";
6154       pr "%s\n\n" longdesc;
6155
6156       if List.exists (function FileIn _ | FileOut _ -> true
6157                       | _ -> false) (snd style) then
6158         pr "Use C<-> instead of a filename to read/write from stdin/stdout.\n\n";
6159
6160       if List.mem ProtocolLimitWarning flags then
6161         pr "%s\n\n" protocol_limit_warning;
6162
6163       if List.mem DangerWillRobinson flags then
6164         pr "%s\n\n" danger_will_robinson;
6165
6166       match deprecation_notice flags with
6167       | None -> ()
6168       | Some txt -> pr "%s\n\n" txt
6169   ) all_functions_sorted
6170
6171 (* Generate a C function prototype. *)
6172 and generate_prototype ?(extern = true) ?(static = false) ?(semicolon = true)
6173     ?(single_line = false) ?(newline = false) ?(in_daemon = false)
6174     ?(prefix = "")
6175     ?handle name style =
6176   if extern then pr "extern ";
6177   if static then pr "static ";
6178   (match fst style with
6179    | RErr -> pr "int "
6180    | RInt _ -> pr "int "
6181    | RInt64 _ -> pr "int64_t "
6182    | RBool _ -> pr "int "
6183    | RConstString _ | RConstOptString _ -> pr "const char *"
6184    | RString _ | RBufferOut _ -> pr "char *"
6185    | RStringList _ | RHashtable _ -> pr "char **"
6186    | RStruct (_, typ) ->
6187        if not in_daemon then pr "struct guestfs_%s *" typ
6188        else pr "guestfs_int_%s *" typ
6189    | RStructList (_, typ) ->
6190        if not in_daemon then pr "struct guestfs_%s_list *" typ
6191        else pr "guestfs_int_%s_list *" typ
6192   );
6193   let is_RBufferOut = match fst style with RBufferOut _ -> true | _ -> false in
6194   pr "%s%s (" prefix name;
6195   if handle = None && List.length (snd style) = 0 && not is_RBufferOut then
6196     pr "void"
6197   else (
6198     let comma = ref false in
6199     (match handle with
6200      | None -> ()
6201      | Some handle -> pr "guestfs_h *%s" handle; comma := true
6202     );
6203     let next () =
6204       if !comma then (
6205         if single_line then pr ", " else pr ",\n\t\t"
6206       );
6207       comma := true
6208     in
6209     List.iter (
6210       function
6211       | String n
6212       | OptString n ->
6213           next ();
6214           if not in_daemon then pr "const char *%s" n
6215           else pr "char *%s" n
6216       | StringList n ->
6217           next ();
6218           if not in_daemon then pr "char * const* const %s" n
6219           else pr "char **%s" n
6220       | Bool n -> next (); pr "int %s" n
6221       | Int n -> next (); pr "int %s" n
6222       | FileIn n
6223       | FileOut n ->
6224           if not in_daemon then (next (); pr "const char *%s" n)
6225     ) (snd style);
6226     if is_RBufferOut then (next (); pr "size_t *size_r");
6227   );
6228   pr ")";
6229   if semicolon then pr ";";
6230   if newline then pr "\n"
6231
6232 (* Generate C call arguments, eg "(handle, foo, bar)" *)
6233 and generate_c_call_args ?handle ?(decl = false) style =
6234   pr "(";
6235   let comma = ref false in
6236   let next () =
6237     if !comma then pr ", ";
6238     comma := true
6239   in
6240   (match handle with
6241    | None -> ()
6242    | Some handle -> pr "%s" handle; comma := true
6243   );
6244   List.iter (
6245     fun arg ->
6246       next ();
6247       pr "%s" (name_of_argt arg)
6248   ) (snd style);
6249   (* For RBufferOut calls, add implicit &size parameter. *)
6250   if not decl then (
6251     match fst style with
6252     | RBufferOut _ ->
6253         next ();
6254         pr "&size"
6255     | _ -> ()
6256   );
6257   pr ")"
6258
6259 (* Generate the OCaml bindings interface. *)
6260 and generate_ocaml_mli () =
6261   generate_header OCamlStyle LGPLv2;
6262
6263   pr "\
6264 (** For API documentation you should refer to the C API
6265     in the guestfs(3) manual page.  The OCaml API uses almost
6266     exactly the same calls. *)
6267
6268 type t
6269 (** A [guestfs_h] handle. *)
6270
6271 exception Error of string
6272 (** This exception is raised when there is an error. *)
6273
6274 val create : unit -> t
6275
6276 val close : t -> unit
6277 (** Handles are closed by the garbage collector when they become
6278     unreferenced, but callers can also call this in order to
6279     provide predictable cleanup. *)
6280
6281 ";
6282   generate_ocaml_structure_decls ();
6283
6284   (* The actions. *)
6285   List.iter (
6286     fun (name, style, _, _, _, shortdesc, _) ->
6287       generate_ocaml_prototype name style;
6288       pr "(** %s *)\n" shortdesc;
6289       pr "\n"
6290   ) all_functions
6291
6292 (* Generate the OCaml bindings implementation. *)
6293 and generate_ocaml_ml () =
6294   generate_header OCamlStyle LGPLv2;
6295
6296   pr "\
6297 type t
6298 exception Error of string
6299 external create : unit -> t = \"ocaml_guestfs_create\"
6300 external close : t -> unit = \"ocaml_guestfs_close\"
6301
6302 let () =
6303   Callback.register_exception \"ocaml_guestfs_error\" (Error \"\")
6304
6305 ";
6306
6307   generate_ocaml_structure_decls ();
6308
6309   (* The actions. *)
6310   List.iter (
6311     fun (name, style, _, _, _, shortdesc, _) ->
6312       generate_ocaml_prototype ~is_external:true name style;
6313   ) all_functions
6314
6315 (* Generate the OCaml bindings C implementation. *)
6316 and generate_ocaml_c () =
6317   generate_header CStyle LGPLv2;
6318
6319   pr "\
6320 #include <stdio.h>
6321 #include <stdlib.h>
6322 #include <string.h>
6323
6324 #include <caml/config.h>
6325 #include <caml/alloc.h>
6326 #include <caml/callback.h>
6327 #include <caml/fail.h>
6328 #include <caml/memory.h>
6329 #include <caml/mlvalues.h>
6330 #include <caml/signals.h>
6331
6332 #include <guestfs.h>
6333
6334 #include \"guestfs_c.h\"
6335
6336 /* Copy a hashtable of string pairs into an assoc-list.  We return
6337  * the list in reverse order, but hashtables aren't supposed to be
6338  * ordered anyway.
6339  */
6340 static CAMLprim value
6341 copy_table (char * const * argv)
6342 {
6343   CAMLparam0 ();
6344   CAMLlocal5 (rv, pairv, kv, vv, cons);
6345   int i;
6346
6347   rv = Val_int (0);
6348   for (i = 0; argv[i] != NULL; i += 2) {
6349     kv = caml_copy_string (argv[i]);
6350     vv = caml_copy_string (argv[i+1]);
6351     pairv = caml_alloc (2, 0);
6352     Store_field (pairv, 0, kv);
6353     Store_field (pairv, 1, vv);
6354     cons = caml_alloc (2, 0);
6355     Store_field (cons, 1, rv);
6356     rv = cons;
6357     Store_field (cons, 0, pairv);
6358   }
6359
6360   CAMLreturn (rv);
6361 }
6362
6363 ";
6364
6365   (* Struct copy functions. *)
6366   List.iter (
6367     fun (typ, cols) ->
6368       let has_optpercent_col =
6369         List.exists (function (_, FOptPercent) -> true | _ -> false) cols in
6370
6371       pr "static CAMLprim value\n";
6372       pr "copy_%s (const struct guestfs_%s *%s)\n" typ typ typ;
6373       pr "{\n";
6374       pr "  CAMLparam0 ();\n";
6375       if has_optpercent_col then
6376         pr "  CAMLlocal3 (rv, v, v2);\n"
6377       else
6378         pr "  CAMLlocal2 (rv, v);\n";
6379       pr "\n";
6380       pr "  rv = caml_alloc (%d, 0);\n" (List.length cols);
6381       iteri (
6382         fun i col ->
6383           (match col with
6384            | name, FString ->
6385                pr "  v = caml_copy_string (%s->%s);\n" typ name
6386            | name, FBuffer ->
6387                pr "  v = caml_alloc_string (%s->%s_len);\n" typ name;
6388                pr "  memcpy (String_val (v), %s->%s, %s->%s_len);\n"
6389                  typ name typ name
6390            | name, FUUID ->
6391                pr "  v = caml_alloc_string (32);\n";
6392                pr "  memcpy (String_val (v), %s->%s, 32);\n" typ name
6393            | name, (FBytes|FInt64|FUInt64) ->
6394                pr "  v = caml_copy_int64 (%s->%s);\n" typ name
6395            | name, (FInt32|FUInt32) ->
6396                pr "  v = caml_copy_int32 (%s->%s);\n" typ name
6397            | name, FOptPercent ->
6398                pr "  if (%s->%s >= 0) { /* Some %s */\n" typ name name;
6399                pr "    v2 = caml_copy_double (%s->%s);\n" typ name;
6400                pr "    v = caml_alloc (1, 0);\n";
6401                pr "    Store_field (v, 0, v2);\n";
6402                pr "  } else /* None */\n";
6403                pr "    v = Val_int (0);\n";
6404            | name, FChar ->
6405                pr "  v = Val_int (%s->%s);\n" typ name
6406           );
6407           pr "  Store_field (rv, %d, v);\n" i
6408       ) cols;
6409       pr "  CAMLreturn (rv);\n";
6410       pr "}\n";
6411       pr "\n";
6412
6413       pr "static CAMLprim value\n";
6414       pr "copy_%s_list (const struct guestfs_%s_list *%ss)\n"
6415         typ typ typ;
6416       pr "{\n";
6417       pr "  CAMLparam0 ();\n";
6418       pr "  CAMLlocal2 (rv, v);\n";
6419       pr "  int i;\n";
6420       pr "\n";
6421       pr "  if (%ss->len == 0)\n" typ;
6422       pr "    CAMLreturn (Atom (0));\n";
6423       pr "  else {\n";
6424       pr "    rv = caml_alloc (%ss->len, 0);\n" typ;
6425       pr "    for (i = 0; i < %ss->len; ++i) {\n" typ;
6426       pr "      v = copy_%s (&%ss->val[i]);\n" typ typ;
6427       pr "      caml_modify (&Field (rv, i), v);\n";
6428       pr "    }\n";
6429       pr "    CAMLreturn (rv);\n";
6430       pr "  }\n";
6431       pr "}\n";
6432       pr "\n";
6433   ) structs;
6434
6435   (* The wrappers. *)
6436   List.iter (
6437     fun (name, style, _, _, _, _, _) ->
6438       let params =
6439         "gv" :: List.map (fun arg -> name_of_argt arg ^ "v") (snd style) in
6440
6441       let needs_extra_vs =
6442         match fst style with RConstOptString _ -> true | _ -> false in
6443
6444       pr "CAMLprim value\n";
6445       pr "ocaml_guestfs_%s (value %s" name (List.hd params);
6446       List.iter (pr ", value %s") (List.tl params);
6447       pr ")\n";
6448       pr "{\n";
6449
6450       (match params with
6451        | [p1; p2; p3; p4; p5] ->
6452            pr "  CAMLparam5 (%s);\n" (String.concat ", " params)
6453        | p1 :: p2 :: p3 :: p4 :: p5 :: rest ->
6454            pr "  CAMLparam5 (%s);\n" (String.concat ", " [p1; p2; p3; p4; p5]);
6455            pr "  CAMLxparam%d (%s);\n"
6456              (List.length rest) (String.concat ", " rest)
6457        | ps ->
6458            pr "  CAMLparam%d (%s);\n" (List.length ps) (String.concat ", " ps)
6459       );
6460       if not needs_extra_vs then
6461         pr "  CAMLlocal1 (rv);\n"
6462       else
6463         pr "  CAMLlocal3 (rv, v, v2);\n";
6464       pr "\n";
6465
6466       pr "  guestfs_h *g = Guestfs_val (gv);\n";
6467       pr "  if (g == NULL)\n";
6468       pr "    caml_failwith (\"%s: used handle after closing it\");\n" name;
6469       pr "\n";
6470
6471       List.iter (
6472         function
6473         | String n
6474         | FileIn n
6475         | FileOut n ->
6476             pr "  const char *%s = String_val (%sv);\n" n n
6477         | OptString n ->
6478             pr "  const char *%s =\n" n;
6479             pr "    %sv != Val_int (0) ? String_val (Field (%sv, 0)) : NULL;\n"
6480               n n
6481         | StringList n ->
6482             pr "  char **%s = ocaml_guestfs_strings_val (g, %sv);\n" n n
6483         | Bool n ->
6484             pr "  int %s = Bool_val (%sv);\n" n n
6485         | Int n ->
6486             pr "  int %s = Int_val (%sv);\n" n n
6487       ) (snd style);
6488       let error_code =
6489         match fst style with
6490         | RErr -> pr "  int r;\n"; "-1"
6491         | RInt _ -> pr "  int r;\n"; "-1"
6492         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
6493         | RBool _ -> pr "  int r;\n"; "-1"
6494         | RConstString _ | RConstOptString _ ->
6495             pr "  const char *r;\n"; "NULL"
6496         | RString _ -> pr "  char *r;\n"; "NULL"
6497         | RStringList _ ->
6498             pr "  int i;\n";
6499             pr "  char **r;\n";
6500             "NULL"
6501         | RStruct (_, typ) ->
6502             pr "  struct guestfs_%s *r;\n" typ; "NULL"
6503         | RStructList (_, typ) ->
6504             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
6505         | RHashtable _ ->
6506             pr "  int i;\n";
6507             pr "  char **r;\n";
6508             "NULL"
6509         | RBufferOut _ ->
6510             pr "  char *r;\n";
6511             pr "  size_t size;\n";
6512             "NULL" in
6513       pr "\n";
6514
6515       pr "  caml_enter_blocking_section ();\n";
6516       pr "  r = guestfs_%s " name;
6517       generate_c_call_args ~handle:"g" style;
6518       pr ";\n";
6519       pr "  caml_leave_blocking_section ();\n";
6520
6521       List.iter (
6522         function
6523         | StringList n ->
6524             pr "  ocaml_guestfs_free_strings (%s);\n" n;
6525         | String _ | OptString _ | Bool _ | Int _ | FileIn _ | FileOut _ -> ()
6526       ) (snd style);
6527
6528       pr "  if (r == %s)\n" error_code;
6529       pr "    ocaml_guestfs_raise_error (g, \"%s\");\n" name;
6530       pr "\n";
6531
6532       (match fst style with
6533        | RErr -> pr "  rv = Val_unit;\n"
6534        | RInt _ -> pr "  rv = Val_int (r);\n"
6535        | RInt64 _ ->
6536            pr "  rv = caml_copy_int64 (r);\n"
6537        | RBool _ -> pr "  rv = Val_bool (r);\n"
6538        | RConstString _ ->
6539            pr "  rv = caml_copy_string (r);\n"
6540        | RConstOptString _ ->
6541            pr "  if (r) { /* Some string */\n";
6542            pr "    v = caml_alloc (1, 0);\n";
6543            pr "    v2 = caml_copy_string (r);\n";
6544            pr "    Store_field (v, 0, v2);\n";
6545            pr "  } else /* None */\n";
6546            pr "    v = Val_int (0);\n";
6547        | RString _ ->
6548            pr "  rv = caml_copy_string (r);\n";
6549            pr "  free (r);\n"
6550        | RStringList _ ->
6551            pr "  rv = caml_copy_string_array ((const char **) r);\n";
6552            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
6553            pr "  free (r);\n"
6554        | RStruct (_, typ) ->
6555            pr "  rv = copy_%s (r);\n" typ;
6556            pr "  guestfs_free_%s (r);\n" typ;
6557        | RStructList (_, typ) ->
6558            pr "  rv = copy_%s_list (r);\n" typ;
6559            pr "  guestfs_free_%s_list (r);\n" typ;
6560        | RHashtable _ ->
6561            pr "  rv = copy_table (r);\n";
6562            pr "  for (i = 0; r[i] != NULL; ++i) free (r[i]);\n";
6563            pr "  free (r);\n";
6564        | RBufferOut _ ->
6565            pr "  rv = caml_alloc_string (size);\n";
6566            pr "  memcpy (String_val (rv), r, size);\n";
6567       );
6568
6569       pr "  CAMLreturn (rv);\n";
6570       pr "}\n";
6571       pr "\n";
6572
6573       if List.length params > 5 then (
6574         pr "CAMLprim value\n";
6575         pr "ocaml_guestfs_%s_byte (value *argv, int argn)\n" name;
6576         pr "{\n";
6577         pr "  return ocaml_guestfs_%s (argv[0]" name;
6578         iteri (fun i _ -> pr ", argv[%d]" i) (List.tl params);
6579         pr ");\n";
6580         pr "}\n";
6581         pr "\n"
6582       )
6583   ) all_functions
6584
6585 and generate_ocaml_structure_decls () =
6586   List.iter (
6587     fun (typ, cols) ->
6588       pr "type %s = {\n" typ;
6589       List.iter (
6590         function
6591         | name, FString -> pr "  %s : string;\n" name
6592         | name, FBuffer -> pr "  %s : string;\n" name
6593         | name, FUUID -> pr "  %s : string;\n" name
6594         | name, (FBytes|FInt64|FUInt64) -> pr "  %s : int64;\n" name
6595         | name, (FInt32|FUInt32) -> pr "  %s : int32;\n" name
6596         | name, FChar -> pr "  %s : char;\n" name
6597         | name, FOptPercent -> pr "  %s : float option;\n" name
6598       ) cols;
6599       pr "}\n";
6600       pr "\n"
6601   ) structs
6602
6603 and generate_ocaml_prototype ?(is_external = false) name style =
6604   if is_external then pr "external " else pr "val ";
6605   pr "%s : t -> " name;
6606   List.iter (
6607     function
6608     | String _ | FileIn _ | FileOut _ -> pr "string -> "
6609     | OptString _ -> pr "string option -> "
6610     | StringList _ -> pr "string array -> "
6611     | Bool _ -> pr "bool -> "
6612     | Int _ -> pr "int -> "
6613   ) (snd style);
6614   (match fst style with
6615    | RErr -> pr "unit" (* all errors are turned into exceptions *)
6616    | RInt _ -> pr "int"
6617    | RInt64 _ -> pr "int64"
6618    | RBool _ -> pr "bool"
6619    | RConstString _ -> pr "string"
6620    | RConstOptString _ -> pr "string option"
6621    | RString _ | RBufferOut _ -> pr "string"
6622    | RStringList _ -> pr "string array"
6623    | RStruct (_, typ) -> pr "%s" typ
6624    | RStructList (_, typ) -> pr "%s array" typ
6625    | RHashtable _ -> pr "(string * string) list"
6626   );
6627   if is_external then (
6628     pr " = ";
6629     if List.length (snd style) + 1 > 5 then
6630       pr "\"ocaml_guestfs_%s_byte\" " name;
6631     pr "\"ocaml_guestfs_%s\"" name
6632   );
6633   pr "\n"
6634
6635 (* Generate Perl xs code, a sort of crazy variation of C with macros. *)
6636 and generate_perl_xs () =
6637   generate_header CStyle LGPLv2;
6638
6639   pr "\
6640 #include \"EXTERN.h\"
6641 #include \"perl.h\"
6642 #include \"XSUB.h\"
6643
6644 #include <guestfs.h>
6645
6646 #ifndef PRId64
6647 #define PRId64 \"lld\"
6648 #endif
6649
6650 static SV *
6651 my_newSVll(long long val) {
6652 #ifdef USE_64_BIT_ALL
6653   return newSViv(val);
6654 #else
6655   char buf[100];
6656   int len;
6657   len = snprintf(buf, 100, \"%%\" PRId64, val);
6658   return newSVpv(buf, len);
6659 #endif
6660 }
6661
6662 #ifndef PRIu64
6663 #define PRIu64 \"llu\"
6664 #endif
6665
6666 static SV *
6667 my_newSVull(unsigned long long val) {
6668 #ifdef USE_64_BIT_ALL
6669   return newSVuv(val);
6670 #else
6671   char buf[100];
6672   int len;
6673   len = snprintf(buf, 100, \"%%\" PRIu64, val);
6674   return newSVpv(buf, len);
6675 #endif
6676 }
6677
6678 /* http://www.perlmonks.org/?node_id=680842 */
6679 static char **
6680 XS_unpack_charPtrPtr (SV *arg) {
6681   char **ret;
6682   AV *av;
6683   I32 i;
6684
6685   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
6686     croak (\"array reference expected\");
6687
6688   av = (AV *)SvRV (arg);
6689   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
6690   if (!ret)
6691     croak (\"malloc failed\");
6692
6693   for (i = 0; i <= av_len (av); i++) {
6694     SV **elem = av_fetch (av, i, 0);
6695
6696     if (!elem || !*elem)
6697       croak (\"missing element in list\");
6698
6699     ret[i] = SvPV_nolen (*elem);
6700   }
6701
6702   ret[i] = NULL;
6703
6704   return ret;
6705 }
6706
6707 MODULE = Sys::Guestfs  PACKAGE = Sys::Guestfs
6708
6709 PROTOTYPES: ENABLE
6710
6711 guestfs_h *
6712 _create ()
6713    CODE:
6714       RETVAL = guestfs_create ();
6715       if (!RETVAL)
6716         croak (\"could not create guestfs handle\");
6717       guestfs_set_error_handler (RETVAL, NULL, NULL);
6718  OUTPUT:
6719       RETVAL
6720
6721 void
6722 DESTROY (g)
6723       guestfs_h *g;
6724  PPCODE:
6725       guestfs_close (g);
6726
6727 ";
6728
6729   List.iter (
6730     fun (name, style, _, _, _, _, _) ->
6731       (match fst style with
6732        | RErr -> pr "void\n"
6733        | RInt _ -> pr "SV *\n"
6734        | RInt64 _ -> pr "SV *\n"
6735        | RBool _ -> pr "SV *\n"
6736        | RConstString _ -> pr "SV *\n"
6737        | RConstOptString _ -> pr "SV *\n"
6738        | RString _ -> pr "SV *\n"
6739        | RBufferOut _ -> pr "SV *\n"
6740        | RStringList _
6741        | RStruct _ | RStructList _
6742        | RHashtable _ ->
6743            pr "void\n" (* all lists returned implictly on the stack *)
6744       );
6745       (* Call and arguments. *)
6746       pr "%s " name;
6747       generate_c_call_args ~handle:"g" ~decl:true style;
6748       pr "\n";
6749       pr "      guestfs_h *g;\n";
6750       iteri (
6751         fun i ->
6752           function
6753           | String n | FileIn n | FileOut n -> pr "      char *%s;\n" n
6754           | OptString n ->
6755               (* http://www.perlmonks.org/?node_id=554277
6756                * Note that the implicit handle argument means we have
6757                * to add 1 to the ST(x) operator.
6758                *)
6759               pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n (i+1) (i+1)
6760           | StringList n -> pr "      char **%s;\n" n
6761           | Bool n -> pr "      int %s;\n" n
6762           | Int n -> pr "      int %s;\n" n
6763       ) (snd style);
6764
6765       let do_cleanups () =
6766         List.iter (
6767           function
6768           | String _ | OptString _ | Bool _ | Int _
6769           | FileIn _ | FileOut _ -> ()
6770           | StringList n -> pr "      free (%s);\n" n
6771         ) (snd style)
6772       in
6773
6774       (* Code. *)
6775       (match fst style with
6776        | RErr ->
6777            pr "PREINIT:\n";
6778            pr "      int r;\n";
6779            pr " PPCODE:\n";
6780            pr "      r = guestfs_%s " name;
6781            generate_c_call_args ~handle:"g" style;
6782            pr ";\n";
6783            do_cleanups ();
6784            pr "      if (r == -1)\n";
6785            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6786        | RInt n
6787        | RBool n ->
6788            pr "PREINIT:\n";
6789            pr "      int %s;\n" n;
6790            pr "   CODE:\n";
6791            pr "      %s = guestfs_%s " n name;
6792            generate_c_call_args ~handle:"g" style;
6793            pr ";\n";
6794            do_cleanups ();
6795            pr "      if (%s == -1)\n" n;
6796            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6797            pr "      RETVAL = newSViv (%s);\n" n;
6798            pr " OUTPUT:\n";
6799            pr "      RETVAL\n"
6800        | RInt64 n ->
6801            pr "PREINIT:\n";
6802            pr "      int64_t %s;\n" n;
6803            pr "   CODE:\n";
6804            pr "      %s = guestfs_%s " n name;
6805            generate_c_call_args ~handle:"g" style;
6806            pr ";\n";
6807            do_cleanups ();
6808            pr "      if (%s == -1)\n" n;
6809            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6810            pr "      RETVAL = my_newSVll (%s);\n" n;
6811            pr " OUTPUT:\n";
6812            pr "      RETVAL\n"
6813        | RConstString n ->
6814            pr "PREINIT:\n";
6815            pr "      const char *%s;\n" n;
6816            pr "   CODE:\n";
6817            pr "      %s = guestfs_%s " n name;
6818            generate_c_call_args ~handle:"g" style;
6819            pr ";\n";
6820            do_cleanups ();
6821            pr "      if (%s == NULL)\n" n;
6822            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6823            pr "      RETVAL = newSVpv (%s, 0);\n" n;
6824            pr " OUTPUT:\n";
6825            pr "      RETVAL\n"
6826        | RConstOptString n ->
6827            pr "PREINIT:\n";
6828            pr "      const char *%s;\n" n;
6829            pr "   CODE:\n";
6830            pr "      %s = guestfs_%s " n name;
6831            generate_c_call_args ~handle:"g" style;
6832            pr ";\n";
6833            do_cleanups ();
6834            pr "      if (%s == NULL)\n" n;
6835            pr "        RETVAL = &PL_sv_undef;\n";
6836            pr "      else\n";
6837            pr "        RETVAL = newSVpv (%s, 0);\n" n;
6838            pr " OUTPUT:\n";
6839            pr "      RETVAL\n"
6840        | RString n ->
6841            pr "PREINIT:\n";
6842            pr "      char *%s;\n" n;
6843            pr "   CODE:\n";
6844            pr "      %s = guestfs_%s " n name;
6845            generate_c_call_args ~handle:"g" style;
6846            pr ";\n";
6847            do_cleanups ();
6848            pr "      if (%s == NULL)\n" n;
6849            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6850            pr "      RETVAL = newSVpv (%s, 0);\n" n;
6851            pr "      free (%s);\n" n;
6852            pr " OUTPUT:\n";
6853            pr "      RETVAL\n"
6854        | RStringList n | RHashtable n ->
6855            pr "PREINIT:\n";
6856            pr "      char **%s;\n" n;
6857            pr "      int i, n;\n";
6858            pr " PPCODE:\n";
6859            pr "      %s = guestfs_%s " n name;
6860            generate_c_call_args ~handle:"g" style;
6861            pr ";\n";
6862            do_cleanups ();
6863            pr "      if (%s == NULL)\n" n;
6864            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6865            pr "      for (n = 0; %s[n] != NULL; ++n) /**/;\n" n;
6866            pr "      EXTEND (SP, n);\n";
6867            pr "      for (i = 0; i < n; ++i) {\n";
6868            pr "        PUSHs (sv_2mortal (newSVpv (%s[i], 0)));\n" n;
6869            pr "        free (%s[i]);\n" n;
6870            pr "      }\n";
6871            pr "      free (%s);\n" n;
6872        | RStruct (n, typ) ->
6873            let cols = cols_of_struct typ in
6874            generate_perl_struct_code typ cols name style n do_cleanups
6875        | RStructList (n, typ) ->
6876            let cols = cols_of_struct typ in
6877            generate_perl_struct_list_code typ cols name style n do_cleanups
6878        | RBufferOut n ->
6879            pr "PREINIT:\n";
6880            pr "      char *%s;\n" n;
6881            pr "      size_t size;\n";
6882            pr "   CODE:\n";
6883            pr "      %s = guestfs_%s " n name;
6884            generate_c_call_args ~handle:"g" style;
6885            pr ";\n";
6886            do_cleanups ();
6887            pr "      if (%s == NULL)\n" n;
6888            pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6889            pr "      RETVAL = newSVpv (%s, size);\n" n;
6890            pr "      free (%s);\n" n;
6891            pr " OUTPUT:\n";
6892            pr "      RETVAL\n"
6893       );
6894
6895       pr "\n"
6896   ) all_functions
6897
6898 and generate_perl_struct_list_code typ cols name style n do_cleanups =
6899   pr "PREINIT:\n";
6900   pr "      struct guestfs_%s_list *%s;\n" typ n;
6901   pr "      int i;\n";
6902   pr "      HV *hv;\n";
6903   pr " PPCODE:\n";
6904   pr "      %s = guestfs_%s " n name;
6905   generate_c_call_args ~handle:"g" style;
6906   pr ";\n";
6907   do_cleanups ();
6908   pr "      if (%s == NULL)\n" n;
6909   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6910   pr "      EXTEND (SP, %s->len);\n" n;
6911   pr "      for (i = 0; i < %s->len; ++i) {\n" n;
6912   pr "        hv = newHV ();\n";
6913   List.iter (
6914     function
6915     | name, FString ->
6916         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 0), 0);\n"
6917           name (String.length name) n name
6918     | name, FUUID ->
6919         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, 32), 0);\n"
6920           name (String.length name) n name
6921     | name, FBuffer ->
6922         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (%s->val[i].%s, %s->val[i].%s_len), 0);\n"
6923           name (String.length name) n name n name
6924     | name, (FBytes|FUInt64) ->
6925         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVull (%s->val[i].%s), 0);\n"
6926           name (String.length name) n name
6927     | name, FInt64 ->
6928         pr "        (void) hv_store (hv, \"%s\", %d, my_newSVll (%s->val[i].%s), 0);\n"
6929           name (String.length name) n name
6930     | name, (FInt32|FUInt32) ->
6931         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
6932           name (String.length name) n name
6933     | name, FChar ->
6934         pr "        (void) hv_store (hv, \"%s\", %d, newSVpv (&%s->val[i].%s, 1), 0);\n"
6935           name (String.length name) n name
6936     | name, FOptPercent ->
6937         pr "        (void) hv_store (hv, \"%s\", %d, newSVnv (%s->val[i].%s), 0);\n"
6938           name (String.length name) n name
6939   ) cols;
6940   pr "        PUSHs (sv_2mortal (newRV ((SV *) hv)));\n";
6941   pr "      }\n";
6942   pr "      guestfs_free_%s_list (%s);\n" typ n
6943
6944 and generate_perl_struct_code typ cols name style n do_cleanups =
6945   pr "PREINIT:\n";
6946   pr "      struct guestfs_%s *%s;\n" typ n;
6947   pr " PPCODE:\n";
6948   pr "      %s = guestfs_%s " n name;
6949   generate_c_call_args ~handle:"g" style;
6950   pr ";\n";
6951   do_cleanups ();
6952   pr "      if (%s == NULL)\n" n;
6953   pr "        croak (\"%s: %%s\", guestfs_last_error (g));\n" name;
6954   pr "      EXTEND (SP, 2 * %d);\n" (List.length cols);
6955   List.iter (
6956     fun ((name, _) as col) ->
6957       pr "      PUSHs (sv_2mortal (newSVpv (\"%s\", 0)));\n" name;
6958
6959       match col with
6960       | name, FString ->
6961           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 0)));\n"
6962             n name
6963       | name, FBuffer ->
6964           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, %s->%s_len)));\n"
6965             n name n name
6966       | name, FUUID ->
6967           pr "      PUSHs (sv_2mortal (newSVpv (%s->%s, 32)));\n"
6968             n name
6969       | name, (FBytes|FUInt64) ->
6970           pr "      PUSHs (sv_2mortal (my_newSVull (%s->%s)));\n"
6971             n name
6972       | name, FInt64 ->
6973           pr "      PUSHs (sv_2mortal (my_newSVll (%s->%s)));\n"
6974             n name
6975       | name, (FInt32|FUInt32) ->
6976           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
6977             n name
6978       | name, FChar ->
6979           pr "      PUSHs (sv_2mortal (newSVpv (&%s->%s, 1)));\n"
6980             n name
6981       | name, FOptPercent ->
6982           pr "      PUSHs (sv_2mortal (newSVnv (%s->%s)));\n"
6983             n name
6984   ) cols;
6985   pr "      free (%s);\n" n
6986
6987 (* Generate Sys/Guestfs.pm. *)
6988 and generate_perl_pm () =
6989   generate_header HashStyle LGPLv2;
6990
6991   pr "\
6992 =pod
6993
6994 =head1 NAME
6995
6996 Sys::Guestfs - Perl bindings for libguestfs
6997
6998 =head1 SYNOPSIS
6999
7000  use Sys::Guestfs;
7001
7002  my $h = Sys::Guestfs->new ();
7003  $h->add_drive ('guest.img');
7004  $h->launch ();
7005  $h->wait_ready ();
7006  $h->mount ('/dev/sda1', '/');
7007  $h->touch ('/hello');
7008  $h->sync ();
7009
7010 =head1 DESCRIPTION
7011
7012 The C<Sys::Guestfs> module provides a Perl XS binding to the
7013 libguestfs API for examining and modifying virtual machine
7014 disk images.
7015
7016 Amongst the things this is good for: making batch configuration
7017 changes to guests, getting disk used/free statistics (see also:
7018 virt-df), migrating between virtualization systems (see also:
7019 virt-p2v), performing partial backups, performing partial guest
7020 clones, cloning guests and changing registry/UUID/hostname info, and
7021 much else besides.
7022
7023 Libguestfs uses Linux kernel and qemu code, and can access any type of
7024 guest filesystem that Linux and qemu can, including but not limited
7025 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
7026 schemes, qcow, qcow2, vmdk.
7027
7028 Libguestfs provides ways to enumerate guest storage (eg. partitions,
7029 LVs, what filesystem is in each LV, etc.).  It can also run commands
7030 in the context of the guest.  Also you can access filesystems over FTP.
7031
7032 See also L<Sys::Guestfs::Lib(3)> for a set of useful library
7033 functions for using libguestfs from Perl, including integration
7034 with libvirt.
7035
7036 =head1 ERRORS
7037
7038 All errors turn into calls to C<croak> (see L<Carp(3)>).
7039
7040 =head1 METHODS
7041
7042 =over 4
7043
7044 =cut
7045
7046 package Sys::Guestfs;
7047
7048 use strict;
7049 use warnings;
7050
7051 require XSLoader;
7052 XSLoader::load ('Sys::Guestfs');
7053
7054 =item $h = Sys::Guestfs->new ();
7055
7056 Create a new guestfs handle.
7057
7058 =cut
7059
7060 sub new {
7061   my $proto = shift;
7062   my $class = ref ($proto) || $proto;
7063
7064   my $self = Sys::Guestfs::_create ();
7065   bless $self, $class;
7066   return $self;
7067 }
7068
7069 ";
7070
7071   (* Actions.  We only need to print documentation for these as
7072    * they are pulled in from the XS code automatically.
7073    *)
7074   List.iter (
7075     fun (name, style, _, flags, _, _, longdesc) ->
7076       if not (List.mem NotInDocs flags) then (
7077         let longdesc = replace_str longdesc "C<guestfs_" "C<$h-E<gt>" in
7078         pr "=item ";
7079         generate_perl_prototype name style;
7080         pr "\n\n";
7081         pr "%s\n\n" longdesc;
7082         if List.mem ProtocolLimitWarning flags then
7083           pr "%s\n\n" protocol_limit_warning;
7084         if List.mem DangerWillRobinson flags then
7085           pr "%s\n\n" danger_will_robinson;
7086         match deprecation_notice flags with
7087         | None -> ()
7088         | Some txt -> pr "%s\n\n" txt
7089       )
7090   ) all_functions_sorted;
7091
7092   (* End of file. *)
7093   pr "\
7094 =cut
7095
7096 1;
7097
7098 =back
7099
7100 =head1 COPYRIGHT
7101
7102 Copyright (C) 2009 Red Hat Inc.
7103
7104 =head1 LICENSE
7105
7106 Please see the file COPYING.LIB for the full license.
7107
7108 =head1 SEE ALSO
7109
7110 L<guestfs(3)>,
7111 L<guestfish(1)>,
7112 L<http://libguestfs.org>,
7113 L<Sys::Guestfs::Lib(3)>.
7114
7115 =cut
7116 "
7117
7118 and generate_perl_prototype name style =
7119   (match fst style with
7120    | RErr -> ()
7121    | RBool n
7122    | RInt n
7123    | RInt64 n
7124    | RConstString n
7125    | RConstOptString n
7126    | RString n
7127    | RBufferOut n -> pr "$%s = " n
7128    | RStruct (n,_)
7129    | RHashtable n -> pr "%%%s = " n
7130    | RStringList n
7131    | RStructList (n,_) -> pr "@%s = " n
7132   );
7133   pr "$h->%s (" name;
7134   let comma = ref false in
7135   List.iter (
7136     fun arg ->
7137       if !comma then pr ", ";
7138       comma := true;
7139       match arg with
7140       | String n | OptString n | Bool n | Int n | FileIn n | FileOut n ->
7141           pr "$%s" n
7142       | StringList n ->
7143           pr "\\@%s" n
7144   ) (snd style);
7145   pr ");"
7146
7147 (* Generate Python C module. *)
7148 and generate_python_c () =
7149   generate_header CStyle LGPLv2;
7150
7151   pr "\
7152 #include <stdio.h>
7153 #include <stdlib.h>
7154 #include <assert.h>
7155
7156 #include <Python.h>
7157
7158 #include \"guestfs.h\"
7159
7160 typedef struct {
7161   PyObject_HEAD
7162   guestfs_h *g;
7163 } Pyguestfs_Object;
7164
7165 static guestfs_h *
7166 get_handle (PyObject *obj)
7167 {
7168   assert (obj);
7169   assert (obj != Py_None);
7170   return ((Pyguestfs_Object *) obj)->g;
7171 }
7172
7173 static PyObject *
7174 put_handle (guestfs_h *g)
7175 {
7176   assert (g);
7177   return
7178     PyCObject_FromVoidPtrAndDesc ((void *) g, (char *) \"guestfs_h\", NULL);
7179 }
7180
7181 /* This list should be freed (but not the strings) after use. */
7182 static const char **
7183 get_string_list (PyObject *obj)
7184 {
7185   int i, len;
7186   const char **r;
7187
7188   assert (obj);
7189
7190   if (!PyList_Check (obj)) {
7191     PyErr_SetString (PyExc_RuntimeError, \"expecting a list parameter\");
7192     return NULL;
7193   }
7194
7195   len = PyList_Size (obj);
7196   r = malloc (sizeof (char *) * (len+1));
7197   if (r == NULL) {
7198     PyErr_SetString (PyExc_RuntimeError, \"get_string_list: out of memory\");
7199     return NULL;
7200   }
7201
7202   for (i = 0; i < len; ++i)
7203     r[i] = PyString_AsString (PyList_GetItem (obj, i));
7204   r[len] = NULL;
7205
7206   return r;
7207 }
7208
7209 static PyObject *
7210 put_string_list (char * const * const argv)
7211 {
7212   PyObject *list;
7213   int argc, i;
7214
7215   for (argc = 0; argv[argc] != NULL; ++argc)
7216     ;
7217
7218   list = PyList_New (argc);
7219   for (i = 0; i < argc; ++i)
7220     PyList_SetItem (list, i, PyString_FromString (argv[i]));
7221
7222   return list;
7223 }
7224
7225 static PyObject *
7226 put_table (char * const * const argv)
7227 {
7228   PyObject *list, *item;
7229   int argc, i;
7230
7231   for (argc = 0; argv[argc] != NULL; ++argc)
7232     ;
7233
7234   list = PyList_New (argc >> 1);
7235   for (i = 0; i < argc; i += 2) {
7236     item = PyTuple_New (2);
7237     PyTuple_SetItem (item, 0, PyString_FromString (argv[i]));
7238     PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1]));
7239     PyList_SetItem (list, i >> 1, item);
7240   }
7241
7242   return list;
7243 }
7244
7245 static void
7246 free_strings (char **argv)
7247 {
7248   int argc;
7249
7250   for (argc = 0; argv[argc] != NULL; ++argc)
7251     free (argv[argc]);
7252   free (argv);
7253 }
7254
7255 static PyObject *
7256 py_guestfs_create (PyObject *self, PyObject *args)
7257 {
7258   guestfs_h *g;
7259
7260   g = guestfs_create ();
7261   if (g == NULL) {
7262     PyErr_SetString (PyExc_RuntimeError,
7263                      \"guestfs.create: failed to allocate handle\");
7264     return NULL;
7265   }
7266   guestfs_set_error_handler (g, NULL, NULL);
7267   return put_handle (g);
7268 }
7269
7270 static PyObject *
7271 py_guestfs_close (PyObject *self, PyObject *args)
7272 {
7273   PyObject *py_g;
7274   guestfs_h *g;
7275
7276   if (!PyArg_ParseTuple (args, (char *) \"O:guestfs_close\", &py_g))
7277     return NULL;
7278   g = get_handle (py_g);
7279
7280   guestfs_close (g);
7281
7282   Py_INCREF (Py_None);
7283   return Py_None;
7284 }
7285
7286 ";
7287
7288   (* Structures, turned into Python dictionaries. *)
7289   List.iter (
7290     fun (typ, cols) ->
7291       pr "static PyObject *\n";
7292       pr "put_%s (struct guestfs_%s *%s)\n" typ typ typ;
7293       pr "{\n";
7294       pr "  PyObject *dict;\n";
7295       pr "\n";
7296       pr "  dict = PyDict_New ();\n";
7297       List.iter (
7298         function
7299         | name, FString ->
7300             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7301             pr "                        PyString_FromString (%s->%s));\n"
7302               typ name
7303         | name, FBuffer ->
7304             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7305             pr "                        PyString_FromStringAndSize (%s->%s, %s->%s_len));\n"
7306               typ name typ name
7307         | name, FUUID ->
7308             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7309             pr "                        PyString_FromStringAndSize (%s->%s, 32));\n"
7310               typ name
7311         | name, (FBytes|FUInt64) ->
7312             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7313             pr "                        PyLong_FromUnsignedLongLong (%s->%s));\n"
7314               typ name
7315         | name, FInt64 ->
7316             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7317             pr "                        PyLong_FromLongLong (%s->%s));\n"
7318               typ name
7319         | name, FUInt32 ->
7320             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7321             pr "                        PyLong_FromUnsignedLong (%s->%s));\n"
7322               typ name
7323         | name, FInt32 ->
7324             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7325             pr "                        PyLong_FromLong (%s->%s));\n"
7326               typ name
7327         | name, FOptPercent ->
7328             pr "  if (%s->%s >= 0)\n" typ name;
7329             pr "    PyDict_SetItemString (dict, \"%s\",\n" name;
7330             pr "                          PyFloat_FromDouble ((double) %s->%s));\n"
7331               typ name;
7332             pr "  else {\n";
7333             pr "    Py_INCREF (Py_None);\n";
7334             pr "    PyDict_SetItemString (dict, \"%s\", Py_None);" name;
7335             pr "  }\n"
7336         | name, FChar ->
7337             pr "  PyDict_SetItemString (dict, \"%s\",\n" name;
7338             pr "                        PyString_FromStringAndSize (&dirent->%s, 1));\n" name
7339       ) cols;
7340       pr "  return dict;\n";
7341       pr "};\n";
7342       pr "\n";
7343
7344       pr "static PyObject *\n";
7345       pr "put_%s_list (struct guestfs_%s_list *%ss)\n" typ typ typ;
7346       pr "{\n";
7347       pr "  PyObject *list;\n";
7348       pr "  int i;\n";
7349       pr "\n";
7350       pr "  list = PyList_New (%ss->len);\n" typ;
7351       pr "  for (i = 0; i < %ss->len; ++i)\n" typ;
7352       pr "    PyList_SetItem (list, i, put_%s (&%ss->val[i]));\n" typ typ;
7353       pr "  return list;\n";
7354       pr "};\n";
7355       pr "\n"
7356   ) structs;
7357
7358   (* Python wrapper functions. *)
7359   List.iter (
7360     fun (name, style, _, _, _, _, _) ->
7361       pr "static PyObject *\n";
7362       pr "py_guestfs_%s (PyObject *self, PyObject *args)\n" name;
7363       pr "{\n";
7364
7365       pr "  PyObject *py_g;\n";
7366       pr "  guestfs_h *g;\n";
7367       pr "  PyObject *py_r;\n";
7368
7369       let error_code =
7370         match fst style with
7371         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
7372         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
7373         | RConstString _ | RConstOptString _ ->
7374             pr "  const char *r;\n"; "NULL"
7375         | RString _ -> pr "  char *r;\n"; "NULL"
7376         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
7377         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
7378         | RStructList (_, typ) ->
7379             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
7380         | RBufferOut _ ->
7381             pr "  char *r;\n";
7382             pr "  size_t size;\n";
7383             "NULL" in
7384
7385       List.iter (
7386         function
7387         | String n | FileIn n | FileOut n -> pr "  const char *%s;\n" n
7388         | OptString n -> pr "  const char *%s;\n" n
7389         | StringList n ->
7390             pr "  PyObject *py_%s;\n" n;
7391             pr "  const char **%s;\n" n
7392         | Bool n -> pr "  int %s;\n" n
7393         | Int n -> pr "  int %s;\n" n
7394       ) (snd style);
7395
7396       pr "\n";
7397
7398       (* Convert the parameters. *)
7399       pr "  if (!PyArg_ParseTuple (args, (char *) \"O";
7400       List.iter (
7401         function
7402         | String _ | FileIn _ | FileOut _ -> pr "s"
7403         | OptString _ -> pr "z"
7404         | StringList _ -> pr "O"
7405         | Bool _ -> pr "i" (* XXX Python has booleans? *)
7406         | Int _ -> pr "i"
7407       ) (snd style);
7408       pr ":guestfs_%s\",\n" name;
7409       pr "                         &py_g";
7410       List.iter (
7411         function
7412         | String n | FileIn n | FileOut n -> pr ", &%s" n
7413         | OptString n -> pr ", &%s" n
7414         | StringList n -> pr ", &py_%s" n
7415         | Bool n -> pr ", &%s" n
7416         | Int n -> pr ", &%s" n
7417       ) (snd style);
7418
7419       pr "))\n";
7420       pr "    return NULL;\n";
7421
7422       pr "  g = get_handle (py_g);\n";
7423       List.iter (
7424         function
7425         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
7426         | StringList n ->
7427             pr "  %s = get_string_list (py_%s);\n" n n;
7428             pr "  if (!%s) return NULL;\n" n
7429       ) (snd style);
7430
7431       pr "\n";
7432
7433       pr "  r = guestfs_%s " name;
7434       generate_c_call_args ~handle:"g" style;
7435       pr ";\n";
7436
7437       List.iter (
7438         function
7439         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
7440         | StringList n ->
7441             pr "  free (%s);\n" n
7442       ) (snd style);
7443
7444       pr "  if (r == %s) {\n" error_code;
7445       pr "    PyErr_SetString (PyExc_RuntimeError, guestfs_last_error (g));\n";
7446       pr "    return NULL;\n";
7447       pr "  }\n";
7448       pr "\n";
7449
7450       (match fst style with
7451        | RErr ->
7452            pr "  Py_INCREF (Py_None);\n";
7453            pr "  py_r = Py_None;\n"
7454        | RInt _
7455        | RBool _ -> pr "  py_r = PyInt_FromLong ((long) r);\n"
7456        | RInt64 _ -> pr "  py_r = PyLong_FromLongLong (r);\n"
7457        | RConstString _ -> pr "  py_r = PyString_FromString (r);\n"
7458        | RConstOptString _ ->
7459            pr "  if (r)\n";
7460            pr "    py_r = PyString_FromString (r);\n";
7461            pr "  else {\n";
7462            pr "    Py_INCREF (Py_None);\n";
7463            pr "    py_r = Py_None;\n";
7464            pr "  }\n"
7465        | RString _ ->
7466            pr "  py_r = PyString_FromString (r);\n";
7467            pr "  free (r);\n"
7468        | RStringList _ ->
7469            pr "  py_r = put_string_list (r);\n";
7470            pr "  free_strings (r);\n"
7471        | RStruct (_, typ) ->
7472            pr "  py_r = put_%s (r);\n" typ;
7473            pr "  guestfs_free_%s (r);\n" typ
7474        | RStructList (_, typ) ->
7475            pr "  py_r = put_%s_list (r);\n" typ;
7476            pr "  guestfs_free_%s_list (r);\n" typ
7477        | RHashtable n ->
7478            pr "  py_r = put_table (r);\n";
7479            pr "  free_strings (r);\n"
7480        | RBufferOut _ ->
7481            pr "  py_r = PyString_FromStringAndSize (r, size);\n";
7482            pr "  free (r);\n"
7483       );
7484
7485       pr "  return py_r;\n";
7486       pr "}\n";
7487       pr "\n"
7488   ) all_functions;
7489
7490   (* Table of functions. *)
7491   pr "static PyMethodDef methods[] = {\n";
7492   pr "  { (char *) \"create\", py_guestfs_create, METH_VARARGS, NULL },\n";
7493   pr "  { (char *) \"close\", py_guestfs_close, METH_VARARGS, NULL },\n";
7494   List.iter (
7495     fun (name, _, _, _, _, _, _) ->
7496       pr "  { (char *) \"%s\", py_guestfs_%s, METH_VARARGS, NULL },\n"
7497         name name
7498   ) all_functions;
7499   pr "  { NULL, NULL, 0, NULL }\n";
7500   pr "};\n";
7501   pr "\n";
7502
7503   (* Init function. *)
7504   pr "\
7505 void
7506 initlibguestfsmod (void)
7507 {
7508   static int initialized = 0;
7509
7510   if (initialized) return;
7511   Py_InitModule ((char *) \"libguestfsmod\", methods);
7512   initialized = 1;
7513 }
7514 "
7515
7516 (* Generate Python module. *)
7517 and generate_python_py () =
7518   generate_header HashStyle LGPLv2;
7519
7520   pr "\
7521 u\"\"\"Python bindings for libguestfs
7522
7523 import guestfs
7524 g = guestfs.GuestFS ()
7525 g.add_drive (\"guest.img\")
7526 g.launch ()
7527 g.wait_ready ()
7528 parts = g.list_partitions ()
7529
7530 The guestfs module provides a Python binding to the libguestfs API
7531 for examining and modifying virtual machine disk images.
7532
7533 Amongst the things this is good for: making batch configuration
7534 changes to guests, getting disk used/free statistics (see also:
7535 virt-df), migrating between virtualization systems (see also:
7536 virt-p2v), performing partial backups, performing partial guest
7537 clones, cloning guests and changing registry/UUID/hostname info, and
7538 much else besides.
7539
7540 Libguestfs uses Linux kernel and qemu code, and can access any type of
7541 guest filesystem that Linux and qemu can, including but not limited
7542 to: ext2/3/4, btrfs, FAT and NTFS, LVM, many different disk partition
7543 schemes, qcow, qcow2, vmdk.
7544
7545 Libguestfs provides ways to enumerate guest storage (eg. partitions,
7546 LVs, what filesystem is in each LV, etc.).  It can also run commands
7547 in the context of the guest.  Also you can access filesystems over FTP.
7548
7549 Errors which happen while using the API are turned into Python
7550 RuntimeError exceptions.
7551
7552 To create a guestfs handle you usually have to perform the following
7553 sequence of calls:
7554
7555 # Create the handle, call add_drive at least once, and possibly
7556 # several times if the guest has multiple block devices:
7557 g = guestfs.GuestFS ()
7558 g.add_drive (\"guest.img\")
7559
7560 # Launch the qemu subprocess and wait for it to become ready:
7561 g.launch ()
7562 g.wait_ready ()
7563
7564 # Now you can issue commands, for example:
7565 logvols = g.lvs ()
7566
7567 \"\"\"
7568
7569 import libguestfsmod
7570
7571 class GuestFS:
7572     \"\"\"Instances of this class are libguestfs API handles.\"\"\"
7573
7574     def __init__ (self):
7575         \"\"\"Create a new libguestfs handle.\"\"\"
7576         self._o = libguestfsmod.create ()
7577
7578     def __del__ (self):
7579         libguestfsmod.close (self._o)
7580
7581 ";
7582
7583   List.iter (
7584     fun (name, style, _, flags, _, _, longdesc) ->
7585       pr "    def %s " name;
7586       generate_py_call_args ~handle:"self" (snd style);
7587       pr ":\n";
7588
7589       if not (List.mem NotInDocs flags) then (
7590         let doc = replace_str longdesc "C<guestfs_" "C<g." in
7591         let doc =
7592           match fst style with
7593           | RErr | RInt _ | RInt64 _ | RBool _
7594           | RConstOptString _ | RConstString _
7595           | RString _ | RBufferOut _ -> doc
7596           | RStringList _ ->
7597               doc ^ "\n\nThis function returns a list of strings."
7598           | RStruct (_, typ) ->
7599               doc ^ sprintf "\n\nThis function returns a dictionary, with keys matching the various fields in the guestfs_%s structure." typ
7600           | RStructList (_, typ) ->
7601               doc ^ sprintf "\n\nThis function returns a list of %ss.  Each %s is represented as a dictionary." typ typ
7602           | RHashtable _ ->
7603               doc ^ "\n\nThis function returns a dictionary." in
7604         let doc =
7605           if List.mem ProtocolLimitWarning flags then
7606             doc ^ "\n\n" ^ protocol_limit_warning
7607           else doc in
7608         let doc =
7609           if List.mem DangerWillRobinson flags then
7610             doc ^ "\n\n" ^ danger_will_robinson
7611           else doc in
7612         let doc =
7613           match deprecation_notice flags with
7614           | None -> doc
7615           | Some txt -> doc ^ "\n\n" ^ txt in
7616         let doc = pod2text ~width:60 name doc in
7617         let doc = List.map (fun line -> replace_str line "\\" "\\\\") doc in
7618         let doc = String.concat "\n        " doc in
7619         pr "        u\"\"\"%s\"\"\"\n" doc;
7620       );
7621       pr "        return libguestfsmod.%s " name;
7622       generate_py_call_args ~handle:"self._o" (snd style);
7623       pr "\n";
7624       pr "\n";
7625   ) all_functions
7626
7627 (* Generate Python call arguments, eg "(handle, foo, bar)" *)
7628 and generate_py_call_args ~handle args =
7629   pr "(%s" handle;
7630   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
7631   pr ")"
7632
7633 (* Useful if you need the longdesc POD text as plain text.  Returns a
7634  * list of lines.
7635  *
7636  * Because this is very slow (the slowest part of autogeneration),
7637  * we memoize the results.
7638  *)
7639 and pod2text ~width name longdesc =
7640   let key = width, name, longdesc in
7641   try Hashtbl.find pod2text_memo key
7642   with Not_found ->
7643     let filename, chan = Filename.open_temp_file "gen" ".tmp" in
7644     fprintf chan "=head1 %s\n\n%s\n" name longdesc;
7645     close_out chan;
7646     let cmd = sprintf "pod2text -w %d %s" width (Filename.quote filename) in
7647     let chan = Unix.open_process_in cmd in
7648     let lines = ref [] in
7649     let rec loop i =
7650       let line = input_line chan in
7651       if i = 1 then             (* discard the first line of output *)
7652         loop (i+1)
7653       else (
7654         let line = triml line in
7655         lines := line :: !lines;
7656         loop (i+1)
7657       ) in
7658     let lines = try loop 1 with End_of_file -> List.rev !lines in
7659     Unix.unlink filename;
7660     (match Unix.close_process_in chan with
7661      | Unix.WEXITED 0 -> ()
7662      | Unix.WEXITED i ->
7663          failwithf "pod2text: process exited with non-zero status (%d)" i
7664      | Unix.WSIGNALED i | Unix.WSTOPPED i ->
7665          failwithf "pod2text: process signalled or stopped by signal %d" i
7666     );
7667     Hashtbl.add pod2text_memo key lines;
7668     let chan = open_out pod2text_memo_filename in
7669     output_value chan pod2text_memo;
7670     close_out chan;
7671     lines
7672
7673 (* Generate ruby bindings. *)
7674 and generate_ruby_c () =
7675   generate_header CStyle LGPLv2;
7676
7677   pr "\
7678 #include <stdio.h>
7679 #include <stdlib.h>
7680
7681 #include <ruby.h>
7682
7683 #include \"guestfs.h\"
7684
7685 #include \"extconf.h\"
7686
7687 /* For Ruby < 1.9 */
7688 #ifndef RARRAY_LEN
7689 #define RARRAY_LEN(r) (RARRAY((r))->len)
7690 #endif
7691
7692 static VALUE m_guestfs;                 /* guestfs module */
7693 static VALUE c_guestfs;                 /* guestfs_h handle */
7694 static VALUE e_Error;                   /* used for all errors */
7695
7696 static void ruby_guestfs_free (void *p)
7697 {
7698   if (!p) return;
7699   guestfs_close ((guestfs_h *) p);
7700 }
7701
7702 static VALUE ruby_guestfs_create (VALUE m)
7703 {
7704   guestfs_h *g;
7705
7706   g = guestfs_create ();
7707   if (!g)
7708     rb_raise (e_Error, \"failed to create guestfs handle\");
7709
7710   /* Don't print error messages to stderr by default. */
7711   guestfs_set_error_handler (g, NULL, NULL);
7712
7713   /* Wrap it, and make sure the close function is called when the
7714    * handle goes away.
7715    */
7716   return Data_Wrap_Struct (c_guestfs, NULL, ruby_guestfs_free, g);
7717 }
7718
7719 static VALUE ruby_guestfs_close (VALUE gv)
7720 {
7721   guestfs_h *g;
7722   Data_Get_Struct (gv, guestfs_h, g);
7723
7724   ruby_guestfs_free (g);
7725   DATA_PTR (gv) = NULL;
7726
7727   return Qnil;
7728 }
7729
7730 ";
7731
7732   List.iter (
7733     fun (name, style, _, _, _, _, _) ->
7734       pr "static VALUE ruby_guestfs_%s (VALUE gv" name;
7735       List.iter (fun arg -> pr ", VALUE %sv" (name_of_argt arg)) (snd style);
7736       pr ")\n";
7737       pr "{\n";
7738       pr "  guestfs_h *g;\n";
7739       pr "  Data_Get_Struct (gv, guestfs_h, g);\n";
7740       pr "  if (!g)\n";
7741       pr "    rb_raise (rb_eArgError, \"%%s: used handle after closing it\", \"%s\");\n"
7742         name;
7743       pr "\n";
7744
7745       List.iter (
7746         function
7747         | String n | FileIn n | FileOut n ->
7748             pr "  Check_Type (%sv, T_STRING);\n" n;
7749             pr "  const char *%s = StringValueCStr (%sv);\n" n n;
7750             pr "  if (!%s)\n" n;
7751             pr "    rb_raise (rb_eTypeError, \"expected string for parameter %%s of %%s\",\n";
7752             pr "              \"%s\", \"%s\");\n" n name
7753         | OptString n ->
7754             pr "  const char *%s = !NIL_P (%sv) ? StringValueCStr (%sv) : NULL;\n" n n n
7755         | StringList n ->
7756             pr "  char **%s;\n" n;
7757             pr "  Check_Type (%sv, T_ARRAY);\n" n;
7758             pr "  {\n";
7759             pr "    int i, len;\n";
7760             pr "    len = RARRAY_LEN (%sv);\n" n;
7761             pr "    %s = guestfs_safe_malloc (g, sizeof (char *) * (len+1));\n"
7762               n;
7763             pr "    for (i = 0; i < len; ++i) {\n";
7764             pr "      VALUE v = rb_ary_entry (%sv, i);\n" n;
7765             pr "      %s[i] = StringValueCStr (v);\n" n;
7766             pr "    }\n";
7767             pr "    %s[len] = NULL;\n" n;
7768             pr "  }\n";
7769         | Bool n ->
7770             pr "  int %s = RTEST (%sv);\n" n n
7771         | Int n ->
7772             pr "  int %s = NUM2INT (%sv);\n" n n
7773       ) (snd style);
7774       pr "\n";
7775
7776       let error_code =
7777         match fst style with
7778         | RErr | RInt _ | RBool _ -> pr "  int r;\n"; "-1"
7779         | RInt64 _ -> pr "  int64_t r;\n"; "-1"
7780         | RConstString _ | RConstOptString _ ->
7781             pr "  const char *r;\n"; "NULL"
7782         | RString _ -> pr "  char *r;\n"; "NULL"
7783         | RStringList _ | RHashtable _ -> pr "  char **r;\n"; "NULL"
7784         | RStruct (_, typ) -> pr "  struct guestfs_%s *r;\n" typ; "NULL"
7785         | RStructList (_, typ) ->
7786             pr "  struct guestfs_%s_list *r;\n" typ; "NULL"
7787         | RBufferOut _ ->
7788             pr "  char *r;\n";
7789             pr "  size_t size;\n";
7790             "NULL" in
7791       pr "\n";
7792
7793       pr "  r = guestfs_%s " name;
7794       generate_c_call_args ~handle:"g" style;
7795       pr ";\n";
7796
7797       List.iter (
7798         function
7799         | String _ | FileIn _ | FileOut _ | OptString _ | Bool _ | Int _ -> ()
7800         | StringList n ->
7801             pr "  free (%s);\n" n
7802       ) (snd style);
7803
7804       pr "  if (r == %s)\n" error_code;
7805       pr "    rb_raise (e_Error, \"%%s\", guestfs_last_error (g));\n";
7806       pr "\n";
7807
7808       (match fst style with
7809        | RErr ->
7810            pr "  return Qnil;\n"
7811        | RInt _ | RBool _ ->
7812            pr "  return INT2NUM (r);\n"
7813        | RInt64 _ ->
7814            pr "  return ULL2NUM (r);\n"
7815        | RConstString _ ->
7816            pr "  return rb_str_new2 (r);\n";
7817        | RConstOptString _ ->
7818            pr "  if (r)\n";
7819            pr "    return rb_str_new2 (r);\n";
7820            pr "  else\n";
7821            pr "    return Qnil;\n";
7822        | RString _ ->
7823            pr "  VALUE rv = rb_str_new2 (r);\n";
7824            pr "  free (r);\n";
7825            pr "  return rv;\n";
7826        | RStringList _ ->
7827            pr "  int i, len = 0;\n";
7828            pr "  for (i = 0; r[i] != NULL; ++i) len++;\n";
7829            pr "  VALUE rv = rb_ary_new2 (len);\n";
7830            pr "  for (i = 0; r[i] != NULL; ++i) {\n";
7831            pr "    rb_ary_push (rv, rb_str_new2 (r[i]));\n";
7832            pr "    free (r[i]);\n";
7833            pr "  }\n";
7834            pr "  free (r);\n";
7835            pr "  return rv;\n"
7836        | RStruct (_, typ) ->
7837            let cols = cols_of_struct typ in
7838            generate_ruby_struct_code typ cols
7839        | RStructList (_, typ) ->
7840            let cols = cols_of_struct typ in
7841            generate_ruby_struct_list_code typ cols
7842        | RHashtable _ ->
7843            pr "  VALUE rv = rb_hash_new ();\n";
7844            pr "  int i;\n";
7845            pr "  for (i = 0; r[i] != NULL; i+=2) {\n";
7846            pr "    rb_hash_aset (rv, rb_str_new2 (r[i]), rb_str_new2 (r[i+1]));\n";
7847            pr "    free (r[i]);\n";
7848            pr "    free (r[i+1]);\n";
7849            pr "  }\n";
7850            pr "  free (r);\n";
7851            pr "  return rv;\n"
7852        | RBufferOut _ ->
7853            pr "  VALUE rv = rb_str_new (r, size);\n";
7854            pr "  free (r);\n";
7855            pr "  return rv;\n";
7856       );
7857
7858       pr "}\n";
7859       pr "\n"
7860   ) all_functions;
7861
7862   pr "\
7863 /* Initialize the module. */
7864 void Init__guestfs ()
7865 {
7866   m_guestfs = rb_define_module (\"Guestfs\");
7867   c_guestfs = rb_define_class_under (m_guestfs, \"Guestfs\", rb_cObject);
7868   e_Error = rb_define_class_under (m_guestfs, \"Error\", rb_eStandardError);
7869
7870   rb_define_module_function (m_guestfs, \"create\", ruby_guestfs_create, 0);
7871   rb_define_method (c_guestfs, \"close\", ruby_guestfs_close, 0);
7872
7873 ";
7874   (* Define the rest of the methods. *)
7875   List.iter (
7876     fun (name, style, _, _, _, _, _) ->
7877       pr "  rb_define_method (c_guestfs, \"%s\",\n" name;
7878       pr "        ruby_guestfs_%s, %d);\n" name (List.length (snd style))
7879   ) all_functions;
7880
7881   pr "}\n"
7882
7883 (* Ruby code to return a struct. *)
7884 and generate_ruby_struct_code typ cols =
7885   pr "  VALUE rv = rb_hash_new ();\n";
7886   List.iter (
7887     function
7888     | name, FString ->
7889         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new2 (r->%s));\n" name name
7890     | name, FBuffer ->
7891         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, r->%s_len));\n" name name name
7892     | name, FUUID ->
7893         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_str_new (r->%s, 32));\n" name name
7894     | name, (FBytes|FUInt64) ->
7895         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
7896     | name, FInt64 ->
7897         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), LL2NUM (r->%s));\n" name name
7898     | name, FUInt32 ->
7899         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), UINT2NUM (r->%s));\n" name name
7900     | name, FInt32 ->
7901         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), INT2NUM (r->%s));\n" name name
7902     | name, FOptPercent ->
7903         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), rb_dbl2big (r->%s));\n" name name
7904     | name, FChar -> (* XXX wrong? *)
7905         pr "  rb_hash_aset (rv, rb_str_new2 (\"%s\"), ULL2NUM (r->%s));\n" name name
7906   ) cols;
7907   pr "  guestfs_free_%s (r);\n" typ;
7908   pr "  return rv;\n"
7909
7910 (* Ruby code to return a struct list. *)
7911 and generate_ruby_struct_list_code typ cols =
7912   pr "  VALUE rv = rb_ary_new2 (r->len);\n";
7913   pr "  int i;\n";
7914   pr "  for (i = 0; i < r->len; ++i) {\n";
7915   pr "    VALUE hv = rb_hash_new ();\n";
7916   List.iter (
7917     function
7918     | name, FString ->
7919         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new2 (r->val[i].%s));\n" name name
7920     | name, FBuffer ->
7921         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
7922     | name, FUUID ->
7923         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_str_new (r->val[i].%s, 32));\n" name name
7924     | name, (FBytes|FUInt64) ->
7925         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
7926     | name, FInt64 ->
7927         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), LL2NUM (r->val[i].%s));\n" name name
7928     | name, FUInt32 ->
7929         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), UINT2NUM (r->val[i].%s));\n" name name
7930     | name, FInt32 ->
7931         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), INT2NUM (r->val[i].%s));\n" name name
7932     | name, FOptPercent ->
7933         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), rb_dbl2big (r->val[i].%s));\n" name name
7934     | name, FChar -> (* XXX wrong? *)
7935         pr "    rb_hash_aset (hv, rb_str_new2 (\"%s\"), ULL2NUM (r->val[i].%s));\n" name name
7936   ) cols;
7937   pr "    rb_ary_push (rv, hv);\n";
7938   pr "  }\n";
7939   pr "  guestfs_free_%s_list (r);\n" typ;
7940   pr "  return rv;\n"
7941
7942 (* Generate Java bindings GuestFS.java file. *)
7943 and generate_java_java () =
7944   generate_header CStyle LGPLv2;
7945
7946   pr "\
7947 package com.redhat.et.libguestfs;
7948
7949 import java.util.HashMap;
7950 import com.redhat.et.libguestfs.LibGuestFSException;
7951 import com.redhat.et.libguestfs.PV;
7952 import com.redhat.et.libguestfs.VG;
7953 import com.redhat.et.libguestfs.LV;
7954 import com.redhat.et.libguestfs.Stat;
7955 import com.redhat.et.libguestfs.StatVFS;
7956 import com.redhat.et.libguestfs.IntBool;
7957 import com.redhat.et.libguestfs.Dirent;
7958
7959 /**
7960  * The GuestFS object is a libguestfs handle.
7961  *
7962  * @author rjones
7963  */
7964 public class GuestFS {
7965   // Load the native code.
7966   static {
7967     System.loadLibrary (\"guestfs_jni\");
7968   }
7969
7970   /**
7971    * The native guestfs_h pointer.
7972    */
7973   long g;
7974
7975   /**
7976    * Create a libguestfs handle.
7977    *
7978    * @throws LibGuestFSException
7979    */
7980   public GuestFS () throws LibGuestFSException
7981   {
7982     g = _create ();
7983   }
7984   private native long _create () throws LibGuestFSException;
7985
7986   /**
7987    * Close a libguestfs handle.
7988    *
7989    * You can also leave handles to be collected by the garbage
7990    * collector, but this method ensures that the resources used
7991    * by the handle are freed up immediately.  If you call any
7992    * other methods after closing the handle, you will get an
7993    * exception.
7994    *
7995    * @throws LibGuestFSException
7996    */
7997   public void close () throws LibGuestFSException
7998   {
7999     if (g != 0)
8000       _close (g);
8001     g = 0;
8002   }
8003   private native void _close (long g) throws LibGuestFSException;
8004
8005   public void finalize () throws LibGuestFSException
8006   {
8007     close ();
8008   }
8009
8010 ";
8011
8012   List.iter (
8013     fun (name, style, _, flags, _, shortdesc, longdesc) ->
8014       if not (List.mem NotInDocs flags); then (
8015         let doc = replace_str longdesc "C<guestfs_" "C<g." in
8016         let doc =
8017           if List.mem ProtocolLimitWarning flags then
8018             doc ^ "\n\n" ^ protocol_limit_warning
8019           else doc in
8020         let doc =
8021           if List.mem DangerWillRobinson flags then
8022             doc ^ "\n\n" ^ danger_will_robinson
8023           else doc in
8024         let doc =
8025           match deprecation_notice flags with
8026           | None -> doc
8027           | Some txt -> doc ^ "\n\n" ^ txt in
8028         let doc = pod2text ~width:60 name doc in
8029         let doc = List.map (            (* RHBZ#501883 *)
8030           function
8031           | "" -> "<p>"
8032           | nonempty -> nonempty
8033         ) doc in
8034         let doc = String.concat "\n   * " doc in
8035
8036         pr "  /**\n";
8037         pr "   * %s\n" shortdesc;
8038         pr "   * <p>\n";
8039         pr "   * %s\n" doc;
8040         pr "   * @throws LibGuestFSException\n";
8041         pr "   */\n";
8042         pr "  ";
8043       );
8044       generate_java_prototype ~public:true ~semicolon:false name style;
8045       pr "\n";
8046       pr "  {\n";
8047       pr "    if (g == 0)\n";
8048       pr "      throw new LibGuestFSException (\"%s: handle is closed\");\n"
8049         name;
8050       pr "    ";
8051       if fst style <> RErr then pr "return ";
8052       pr "_%s " name;
8053       generate_java_call_args ~handle:"g" (snd style);
8054       pr ";\n";
8055       pr "  }\n";
8056       pr "  ";
8057       generate_java_prototype ~privat:true ~native:true name style;
8058       pr "\n";
8059       pr "\n";
8060   ) all_functions;
8061
8062   pr "}\n"
8063
8064 (* Generate Java call arguments, eg "(handle, foo, bar)" *)
8065 and generate_java_call_args ~handle args =
8066   pr "(%s" handle;
8067   List.iter (fun arg -> pr ", %s" (name_of_argt arg)) args;
8068   pr ")"
8069
8070 and generate_java_prototype ?(public=false) ?(privat=false) ?(native=false)
8071     ?(semicolon=true) name style =
8072   if privat then pr "private ";
8073   if public then pr "public ";
8074   if native then pr "native ";
8075
8076   (* return type *)
8077   (match fst style with
8078    | RErr -> pr "void ";
8079    | RInt _ -> pr "int ";
8080    | RInt64 _ -> pr "long ";
8081    | RBool _ -> pr "boolean ";
8082    | RConstString _ | RConstOptString _ | RString _
8083    | RBufferOut _ -> pr "String ";
8084    | RStringList _ -> pr "String[] ";
8085    | RStruct (_, typ) ->
8086        let name = java_name_of_struct typ in
8087        pr "%s " name;
8088    | RStructList (_, typ) ->
8089        let name = java_name_of_struct typ in
8090        pr "%s[] " name;
8091    | RHashtable _ -> pr "HashMap<String,String> ";
8092   );
8093
8094   if native then pr "_%s " name else pr "%s " name;
8095   pr "(";
8096   let needs_comma = ref false in
8097   if native then (
8098     pr "long g";
8099     needs_comma := true
8100   );
8101
8102   (* args *)
8103   List.iter (
8104     fun arg ->
8105       if !needs_comma then pr ", ";
8106       needs_comma := true;
8107
8108       match arg with
8109       | String n
8110       | OptString n
8111       | FileIn n
8112       | FileOut n ->
8113           pr "String %s" n
8114       | StringList n ->
8115           pr "String[] %s" n
8116       | Bool n ->
8117           pr "boolean %s" n
8118       | Int n ->
8119           pr "int %s" n
8120   ) (snd style);
8121
8122   pr ")\n";
8123   pr "    throws LibGuestFSException";
8124   if semicolon then pr ";"
8125
8126 and generate_java_struct jtyp cols =
8127   generate_header CStyle LGPLv2;
8128
8129   pr "\
8130 package com.redhat.et.libguestfs;
8131
8132 /**
8133  * Libguestfs %s structure.
8134  *
8135  * @author rjones
8136  * @see GuestFS
8137  */
8138 public class %s {
8139 " jtyp jtyp;
8140
8141   List.iter (
8142     function
8143     | name, FString
8144     | name, FUUID
8145     | name, FBuffer -> pr "  public String %s;\n" name
8146     | name, (FBytes|FUInt64|FInt64) -> pr "  public long %s;\n" name
8147     | name, (FUInt32|FInt32) -> pr "  public int %s;\n" name
8148     | name, FChar -> pr "  public char %s;\n" name
8149     | name, FOptPercent ->
8150         pr "  /* The next field is [0..100] or -1 meaning 'not present': */\n";
8151         pr "  public float %s;\n" name
8152   ) cols;
8153
8154   pr "}\n"
8155
8156 and generate_java_c () =
8157   generate_header CStyle LGPLv2;
8158
8159   pr "\
8160 #include <stdio.h>
8161 #include <stdlib.h>
8162 #include <string.h>
8163
8164 #include \"com_redhat_et_libguestfs_GuestFS.h\"
8165 #include \"guestfs.h\"
8166
8167 /* Note that this function returns.  The exception is not thrown
8168  * until after the wrapper function returns.
8169  */
8170 static void
8171 throw_exception (JNIEnv *env, const char *msg)
8172 {
8173   jclass cl;
8174   cl = (*env)->FindClass (env,
8175                           \"com/redhat/et/libguestfs/LibGuestFSException\");
8176   (*env)->ThrowNew (env, cl, msg);
8177 }
8178
8179 JNIEXPORT jlong JNICALL
8180 Java_com_redhat_et_libguestfs_GuestFS__1create
8181   (JNIEnv *env, jobject obj)
8182 {
8183   guestfs_h *g;
8184
8185   g = guestfs_create ();
8186   if (g == NULL) {
8187     throw_exception (env, \"GuestFS.create: failed to allocate handle\");
8188     return 0;
8189   }
8190   guestfs_set_error_handler (g, NULL, NULL);
8191   return (jlong) (long) g;
8192 }
8193
8194 JNIEXPORT void JNICALL
8195 Java_com_redhat_et_libguestfs_GuestFS__1close
8196   (JNIEnv *env, jobject obj, jlong jg)
8197 {
8198   guestfs_h *g = (guestfs_h *) (long) jg;
8199   guestfs_close (g);
8200 }
8201
8202 ";
8203
8204   List.iter (
8205     fun (name, style, _, _, _, _, _) ->
8206       pr "JNIEXPORT ";
8207       (match fst style with
8208        | RErr -> pr "void ";
8209        | RInt _ -> pr "jint ";
8210        | RInt64 _ -> pr "jlong ";
8211        | RBool _ -> pr "jboolean ";
8212        | RConstString _ | RConstOptString _ | RString _
8213        | RBufferOut _ -> pr "jstring ";
8214        | RStruct _ | RHashtable _ ->
8215            pr "jobject ";
8216        | RStringList _ | RStructList _ ->
8217            pr "jobjectArray ";
8218       );
8219       pr "JNICALL\n";
8220       pr "Java_com_redhat_et_libguestfs_GuestFS_";
8221       pr "%s" (replace_str ("_" ^ name) "_" "_1");
8222       pr "\n";
8223       pr "  (JNIEnv *env, jobject obj, jlong jg";
8224       List.iter (
8225         function
8226         | String n
8227         | OptString n
8228         | FileIn n
8229         | FileOut n ->
8230             pr ", jstring j%s" n
8231         | StringList n ->
8232             pr ", jobjectArray j%s" n
8233         | Bool n ->
8234             pr ", jboolean j%s" n
8235         | Int n ->
8236             pr ", jint j%s" n
8237       ) (snd style);
8238       pr ")\n";
8239       pr "{\n";
8240       pr "  guestfs_h *g = (guestfs_h *) (long) jg;\n";
8241       let error_code, no_ret =
8242         match fst style with
8243         | RErr -> pr "  int r;\n"; "-1", ""
8244         | RBool _
8245         | RInt _ -> pr "  int r;\n"; "-1", "0"
8246         | RInt64 _ -> pr "  int64_t r;\n"; "-1", "0"
8247         | RConstString _ -> pr "  const char *r;\n"; "NULL", "NULL"
8248         | RConstOptString _ -> pr "  const char *r;\n"; "NULL", "NULL"
8249         | RString _ ->
8250             pr "  jstring jr;\n";
8251             pr "  char *r;\n"; "NULL", "NULL"
8252         | RStringList _ ->
8253             pr "  jobjectArray jr;\n";
8254             pr "  int r_len;\n";
8255             pr "  jclass cl;\n";
8256             pr "  jstring jstr;\n";
8257             pr "  char **r;\n"; "NULL", "NULL"
8258         | RStruct (_, typ) ->
8259             pr "  jobject jr;\n";
8260             pr "  jclass cl;\n";
8261             pr "  jfieldID fl;\n";
8262             pr "  struct guestfs_%s *r;\n" typ; "NULL", "NULL"
8263         | RStructList (_, typ) ->
8264             pr "  jobjectArray jr;\n";
8265             pr "  jclass cl;\n";
8266             pr "  jfieldID fl;\n";
8267             pr "  jobject jfl;\n";
8268             pr "  struct guestfs_%s_list *r;\n" typ; "NULL", "NULL"
8269         | RHashtable _ -> pr "  char **r;\n"; "NULL", "NULL"
8270         | RBufferOut _ ->
8271             pr "  jstring jr;\n";
8272             pr "  char *r;\n";
8273             pr "  size_t size;\n";
8274             "NULL", "NULL" in
8275       List.iter (
8276         function
8277         | String n
8278         | OptString n
8279         | FileIn n
8280         | FileOut n ->
8281             pr "  const char *%s;\n" n
8282         | StringList n ->
8283             pr "  int %s_len;\n" n;
8284             pr "  const char **%s;\n" n
8285         | Bool n
8286         | Int n ->
8287             pr "  int %s;\n" n
8288       ) (snd style);
8289
8290       let needs_i =
8291         (match fst style with
8292          | RStringList _ | RStructList _ -> true
8293          | RErr | RBool _ | RInt _ | RInt64 _ | RConstString _
8294          | RConstOptString _
8295          | RString _ | RBufferOut _ | RStruct _ | RHashtable _ -> false) ||
8296           List.exists (function StringList _ -> true | _ -> false) (snd style) in
8297       if needs_i then
8298         pr "  int i;\n";
8299
8300       pr "\n";
8301
8302       (* Get the parameters. *)
8303       List.iter (
8304         function
8305         | String n
8306         | FileIn n
8307         | FileOut n ->
8308             pr "  %s = (*env)->GetStringUTFChars (env, j%s, NULL);\n" n n
8309         | OptString n ->
8310             (* This is completely undocumented, but Java null becomes
8311              * a NULL parameter.
8312              *)
8313             pr "  %s = j%s ? (*env)->GetStringUTFChars (env, j%s, NULL) : NULL;\n" n n n
8314         | StringList n ->
8315             pr "  %s_len = (*env)->GetArrayLength (env, j%s);\n" n n;
8316             pr "  %s = guestfs_safe_malloc (g, sizeof (char *) * (%s_len+1));\n" n n;
8317             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
8318             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
8319               n;
8320             pr "    %s[i] = (*env)->GetStringUTFChars (env, o, NULL);\n" n;
8321             pr "  }\n";
8322             pr "  %s[%s_len] = NULL;\n" n n;
8323         | Bool n
8324         | Int n ->
8325             pr "  %s = j%s;\n" n n
8326       ) (snd style);
8327
8328       (* Make the call. *)
8329       pr "  r = guestfs_%s " name;
8330       generate_c_call_args ~handle:"g" style;
8331       pr ";\n";
8332
8333       (* Release the parameters. *)
8334       List.iter (
8335         function
8336         | String n
8337         | FileIn n
8338         | FileOut n ->
8339             pr "  (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
8340         | OptString n ->
8341             pr "  if (j%s)\n" n;
8342             pr "    (*env)->ReleaseStringUTFChars (env, j%s, %s);\n" n n
8343         | StringList n ->
8344             pr "  for (i = 0; i < %s_len; ++i) {\n" n;
8345             pr "    jobject o = (*env)->GetObjectArrayElement (env, j%s, i);\n"
8346               n;
8347             pr "    (*env)->ReleaseStringUTFChars (env, o, %s[i]);\n" n;
8348             pr "  }\n";
8349             pr "  free (%s);\n" n
8350         | Bool n
8351         | Int n -> ()
8352       ) (snd style);
8353
8354       (* Check for errors. *)
8355       pr "  if (r == %s) {\n" error_code;
8356       pr "    throw_exception (env, guestfs_last_error (g));\n";
8357       pr "    return %s;\n" no_ret;
8358       pr "  }\n";
8359
8360       (* Return value. *)
8361       (match fst style with
8362        | RErr -> ()
8363        | RInt _ -> pr "  return (jint) r;\n"
8364        | RBool _ -> pr "  return (jboolean) r;\n"
8365        | RInt64 _ -> pr "  return (jlong) r;\n"
8366        | RConstString _ -> pr "  return (*env)->NewStringUTF (env, r);\n"
8367        | RConstOptString _ ->
8368            pr "  return (*env)->NewStringUTF (env, r); /* XXX r NULL? */\n"
8369        | RString _ ->
8370            pr "  jr = (*env)->NewStringUTF (env, r);\n";
8371            pr "  free (r);\n";
8372            pr "  return jr;\n"
8373        | RStringList _ ->
8374            pr "  for (r_len = 0; r[r_len] != NULL; ++r_len) ;\n";
8375            pr "  cl = (*env)->FindClass (env, \"java/lang/String\");\n";
8376            pr "  jstr = (*env)->NewStringUTF (env, \"\");\n";
8377            pr "  jr = (*env)->NewObjectArray (env, r_len, cl, jstr);\n";
8378            pr "  for (i = 0; i < r_len; ++i) {\n";
8379            pr "    jstr = (*env)->NewStringUTF (env, r[i]);\n";
8380            pr "    (*env)->SetObjectArrayElement (env, jr, i, jstr);\n";
8381            pr "    free (r[i]);\n";
8382            pr "  }\n";
8383            pr "  free (r);\n";
8384            pr "  return jr;\n"
8385        | RStruct (_, typ) ->
8386            let jtyp = java_name_of_struct typ in
8387            let cols = cols_of_struct typ in
8388            generate_java_struct_return typ jtyp cols
8389        | RStructList (_, typ) ->
8390            let jtyp = java_name_of_struct typ in
8391            let cols = cols_of_struct typ in
8392            generate_java_struct_list_return typ jtyp cols
8393        | RHashtable _ ->
8394            (* XXX *)
8395            pr "  throw_exception (env, \"%s: internal error: please let us know how to make a Java HashMap from JNI bindings!\");\n" name;
8396            pr "  return NULL;\n"
8397        | RBufferOut _ ->
8398            pr "  jr = (*env)->NewStringUTF (env, r); /* XXX size */\n";
8399            pr "  free (r);\n";
8400            pr "  return jr;\n"
8401       );
8402
8403       pr "}\n";
8404       pr "\n"
8405   ) all_functions
8406
8407 and generate_java_struct_return typ jtyp cols =
8408   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
8409   pr "  jr = (*env)->AllocObject (env, cl);\n";
8410   List.iter (
8411     function
8412     | name, FString ->
8413         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
8414         pr "  (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, r->%s));\n" name;
8415     | name, FUUID ->
8416         pr "  {\n";
8417         pr "    char s[33];\n";
8418         pr "    memcpy (s, r->%s, 32);\n" name;
8419         pr "    s[32] = 0;\n";
8420         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
8421         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
8422         pr "  }\n";
8423     | name, FBuffer ->
8424         pr "  {\n";
8425         pr "    int len = r->%s_len;\n" name;
8426         pr "    char s[len+1];\n";
8427         pr "    memcpy (s, r->%s, len);\n" name;
8428         pr "    s[len] = 0;\n";
8429         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
8430         pr "    (*env)->SetObjectField (env, jr, fl, (*env)->NewStringUTF (env, s));\n";
8431         pr "  }\n";
8432     | name, (FBytes|FUInt64|FInt64) ->
8433         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
8434         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
8435     | name, (FUInt32|FInt32) ->
8436         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
8437         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
8438     | name, FOptPercent ->
8439         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
8440         pr "  (*env)->SetFloatField (env, jr, fl, r->%s);\n" name;
8441     | name, FChar ->
8442         pr "  fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
8443         pr "  (*env)->SetLongField (env, jr, fl, r->%s);\n" name;
8444   ) cols;
8445   pr "  free (r);\n";
8446   pr "  return jr;\n"
8447
8448 and generate_java_struct_list_return typ jtyp cols =
8449   pr "  cl = (*env)->FindClass (env, \"com/redhat/et/libguestfs/%s\");\n" jtyp;
8450   pr "  jr = (*env)->NewObjectArray (env, r->len, cl, NULL);\n";
8451   pr "  for (i = 0; i < r->len; ++i) {\n";
8452   pr "    jfl = (*env)->AllocObject (env, cl);\n";
8453   List.iter (
8454     function
8455     | name, FString ->
8456         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
8457         pr "    (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, r->val[i].%s));\n" name;
8458     | name, FUUID ->
8459         pr "    {\n";
8460         pr "      char s[33];\n";
8461         pr "      memcpy (s, r->val[i].%s, 32);\n" name;
8462         pr "      s[32] = 0;\n";
8463         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
8464         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
8465         pr "    }\n";
8466     | name, FBuffer ->
8467         pr "    {\n";
8468         pr "      int len = r->val[i].%s_len;\n" name;
8469         pr "      char s[len+1];\n";
8470         pr "      memcpy (s, r->val[i].%s, len);\n" name;
8471         pr "      s[len] = 0;\n";
8472         pr "      fl = (*env)->GetFieldID (env, cl, \"%s\", \"Ljava/lang/String;\");\n" name;
8473         pr "      (*env)->SetObjectField (env, jfl, fl, (*env)->NewStringUTF (env, s));\n";
8474         pr "    }\n";
8475     | name, (FBytes|FUInt64|FInt64) ->
8476         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"J\");\n" name;
8477         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
8478     | name, (FUInt32|FInt32) ->
8479         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"I\");\n" name;
8480         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
8481     | name, FOptPercent ->
8482         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"F\");\n" name;
8483         pr "    (*env)->SetFloatField (env, jfl, fl, r->val[i].%s);\n" name;
8484     | name, FChar ->
8485         pr "    fl = (*env)->GetFieldID (env, cl, \"%s\", \"C\");\n" name;
8486         pr "    (*env)->SetLongField (env, jfl, fl, r->val[i].%s);\n" name;
8487   ) cols;
8488   pr "    (*env)->SetObjectArrayElement (env, jfl, i, jfl);\n";
8489   pr "  }\n";
8490   pr "  guestfs_free_%s_list (r);\n" typ;
8491   pr "  return jr;\n"
8492
8493 and generate_haskell_hs () =
8494   generate_header HaskellStyle LGPLv2;
8495
8496   (* XXX We only know how to generate partial FFI for Haskell
8497    * at the moment.  Please help out!
8498    *)
8499   let can_generate style =
8500     match style with
8501     | RErr, _
8502     | RInt _, _
8503     | RInt64 _, _ -> true
8504     | RBool _, _
8505     | RConstString _, _
8506     | RConstOptString _, _
8507     | RString _, _
8508     | RStringList _, _
8509     | RStruct _, _
8510     | RStructList _, _
8511     | RHashtable _, _
8512     | RBufferOut _, _ -> false in
8513
8514   pr "\
8515 {-# INCLUDE <guestfs.h> #-}
8516 {-# LANGUAGE ForeignFunctionInterface #-}
8517
8518 module Guestfs (
8519   create";
8520
8521   (* List out the names of the actions we want to export. *)
8522   List.iter (
8523     fun (name, style, _, _, _, _, _) ->
8524       if can_generate style then pr ",\n  %s" name
8525   ) all_functions;
8526
8527   pr "
8528   ) where
8529 import Foreign
8530 import Foreign.C
8531 import Foreign.C.Types
8532 import IO
8533 import Control.Exception
8534 import Data.Typeable
8535
8536 data GuestfsS = GuestfsS            -- represents the opaque C struct
8537 type GuestfsP = Ptr GuestfsS        -- guestfs_h *
8538 type GuestfsH = ForeignPtr GuestfsS -- guestfs_h * with attached finalizer
8539
8540 -- XXX define properly later XXX
8541 data PV = PV
8542 data VG = VG
8543 data LV = LV
8544 data IntBool = IntBool
8545 data Stat = Stat
8546 data StatVFS = StatVFS
8547 data Hashtable = Hashtable
8548
8549 foreign import ccall unsafe \"guestfs_create\" c_create
8550   :: IO GuestfsP
8551 foreign import ccall unsafe \"&guestfs_close\" c_close
8552   :: FunPtr (GuestfsP -> IO ())
8553 foreign import ccall unsafe \"guestfs_set_error_handler\" c_set_error_handler
8554   :: GuestfsP -> Ptr CInt -> Ptr CInt -> IO ()
8555
8556 create :: IO GuestfsH
8557 create = do
8558   p <- c_create
8559   c_set_error_handler p nullPtr nullPtr
8560   h <- newForeignPtr c_close p
8561   return h
8562
8563 foreign import ccall unsafe \"guestfs_last_error\" c_last_error
8564   :: GuestfsP -> IO CString
8565
8566 -- last_error :: GuestfsH -> IO (Maybe String)
8567 -- last_error h = do
8568 --   str <- withForeignPtr h (\\p -> c_last_error p)
8569 --   maybePeek peekCString str
8570
8571 last_error :: GuestfsH -> IO (String)
8572 last_error h = do
8573   str <- withForeignPtr h (\\p -> c_last_error p)
8574   if (str == nullPtr)
8575     then return \"no error\"
8576     else peekCString str
8577
8578 ";
8579
8580   (* Generate wrappers for each foreign function. *)
8581   List.iter (
8582     fun (name, style, _, _, _, _, _) ->
8583       if can_generate style then (
8584         pr "foreign import ccall unsafe \"guestfs_%s\" c_%s\n" name name;
8585         pr "  :: ";
8586         generate_haskell_prototype ~handle:"GuestfsP" style;
8587         pr "\n";
8588         pr "\n";
8589         pr "%s :: " name;
8590         generate_haskell_prototype ~handle:"GuestfsH" ~hs:true style;
8591         pr "\n";
8592         pr "%s %s = do\n" name
8593           (String.concat " " ("h" :: List.map name_of_argt (snd style)));
8594         pr "  r <- ";
8595         (* Convert pointer arguments using with* functions. *)
8596         List.iter (
8597           function
8598           | FileIn n
8599           | FileOut n
8600           | String n -> pr "withCString %s $ \\%s -> " n n
8601           | OptString n -> pr "maybeWith withCString %s $ \\%s -> " n n
8602           | StringList n -> pr "withMany withCString %s $ \\%s -> withArray0 nullPtr %s $ \\%s -> " n n n n
8603           | Bool _ | Int _ -> ()
8604         ) (snd style);
8605         (* Convert integer arguments. *)
8606         let args =
8607           List.map (
8608             function
8609             | Bool n -> sprintf "(fromBool %s)" n
8610             | Int n -> sprintf "(fromIntegral %s)" n
8611             | FileIn n | FileOut n | String n | OptString n | StringList n -> n
8612           ) (snd style) in
8613         pr "withForeignPtr h (\\p -> c_%s %s)\n" name
8614           (String.concat " " ("p" :: args));
8615         (match fst style with
8616          | RErr | RInt _ | RInt64 _ | RBool _ ->
8617              pr "  if (r == -1)\n";
8618              pr "    then do\n";
8619              pr "      err <- last_error h\n";
8620              pr "      fail err\n";
8621          | RConstString _ | RConstOptString _ | RString _
8622          | RStringList _ | RStruct _
8623          | RStructList _ | RHashtable _ | RBufferOut _ ->
8624              pr "  if (r == nullPtr)\n";
8625              pr "    then do\n";
8626              pr "      err <- last_error h\n";
8627              pr "      fail err\n";
8628         );
8629         (match fst style with
8630          | RErr ->
8631              pr "    else return ()\n"
8632          | RInt _ ->
8633              pr "    else return (fromIntegral r)\n"
8634          | RInt64 _ ->
8635              pr "    else return (fromIntegral r)\n"
8636          | RBool _ ->
8637              pr "    else return (toBool r)\n"
8638          | RConstString _
8639          | RConstOptString _
8640          | RString _
8641          | RStringList _
8642          | RStruct _
8643          | RStructList _
8644          | RHashtable _
8645          | RBufferOut _ ->
8646              pr "    else return ()\n" (* XXXXXXXXXXXXXXXXXXXX *)
8647         );
8648         pr "\n";
8649       )
8650   ) all_functions
8651
8652 and generate_haskell_prototype ~handle ?(hs = false) style =
8653   pr "%s -> " handle;
8654   let string = if hs then "String" else "CString" in
8655   let int = if hs then "Int" else "CInt" in
8656   let bool = if hs then "Bool" else "CInt" in
8657   let int64 = if hs then "Integer" else "Int64" in
8658   List.iter (
8659     fun arg ->
8660       (match arg with
8661        | String _ -> pr "%s" string
8662        | OptString _ -> if hs then pr "Maybe String" else pr "CString"
8663        | StringList _ -> if hs then pr "[String]" else pr "Ptr CString"
8664        | Bool _ -> pr "%s" bool
8665        | Int _ -> pr "%s" int
8666        | FileIn _ -> pr "%s" string
8667        | FileOut _ -> pr "%s" string
8668       );
8669       pr " -> ";
8670   ) (snd style);
8671   pr "IO (";
8672   (match fst style with
8673    | RErr -> if not hs then pr "CInt"
8674    | RInt _ -> pr "%s" int
8675    | RInt64 _ -> pr "%s" int64
8676    | RBool _ -> pr "%s" bool
8677    | RConstString _ -> pr "%s" string
8678    | RConstOptString _ -> pr "Maybe %s" string
8679    | RString _ -> pr "%s" string
8680    | RStringList _ -> pr "[%s]" string
8681    | RStruct (_, typ) ->
8682        let name = java_name_of_struct typ in
8683        pr "%s" name
8684    | RStructList (_, typ) ->
8685        let name = java_name_of_struct typ in
8686        pr "[%s]" name
8687    | RHashtable _ -> pr "Hashtable"
8688    | RBufferOut _ -> pr "%s" string
8689   );
8690   pr ")"
8691
8692 and generate_bindtests () =
8693   generate_header CStyle LGPLv2;
8694
8695   pr "\
8696 #include <stdio.h>
8697 #include <stdlib.h>
8698 #include <inttypes.h>
8699 #include <string.h>
8700
8701 #include \"guestfs.h\"
8702 #include \"guestfs_protocol.h\"
8703
8704 #define error guestfs_error
8705 #define safe_calloc guestfs_safe_calloc
8706 #define safe_malloc guestfs_safe_malloc
8707
8708 static void
8709 print_strings (char * const* const argv)
8710 {
8711   int argc;
8712
8713   printf (\"[\");
8714   for (argc = 0; argv[argc] != NULL; ++argc) {
8715     if (argc > 0) printf (\", \");
8716     printf (\"\\\"%%s\\\"\", argv[argc]);
8717   }
8718   printf (\"]\\n\");
8719 }
8720
8721 /* The test0 function prints its parameters to stdout. */
8722 ";
8723
8724   let test0, tests =
8725     match test_functions with
8726     | [] -> assert false
8727     | test0 :: tests -> test0, tests in
8728
8729   let () =
8730     let (name, style, _, _, _, _, _) = test0 in
8731     generate_prototype ~extern:false ~semicolon:false ~newline:true
8732       ~handle:"g" ~prefix:"guestfs_" name style;
8733     pr "{\n";
8734     List.iter (
8735       function
8736       | String n
8737       | FileIn n
8738       | FileOut n -> pr "  printf (\"%%s\\n\", %s);\n" n
8739       | OptString n -> pr "  printf (\"%%s\\n\", %s ? %s : \"null\");\n" n n
8740       | StringList n -> pr "  print_strings (%s);\n" n
8741       | Bool n -> pr "  printf (\"%%s\\n\", %s ? \"true\" : \"false\");\n" n
8742       | Int n -> pr "  printf (\"%%d\\n\", %s);\n" n
8743     ) (snd style);
8744     pr "  /* Java changes stdout line buffering so we need this: */\n";
8745     pr "  fflush (stdout);\n";
8746     pr "  return 0;\n";
8747     pr "}\n";
8748     pr "\n" in
8749
8750   List.iter (
8751     fun (name, style, _, _, _, _, _) ->
8752       if String.sub name (String.length name - 3) 3 <> "err" then (
8753         pr "/* Test normal return. */\n";
8754         generate_prototype ~extern:false ~semicolon:false ~newline:true
8755           ~handle:"g" ~prefix:"guestfs_" name style;
8756         pr "{\n";
8757         (match fst style with
8758          | RErr ->
8759              pr "  return 0;\n"
8760          | RInt _ ->
8761              pr "  int r;\n";
8762              pr "  sscanf (val, \"%%d\", &r);\n";
8763              pr "  return r;\n"
8764          | RInt64 _ ->
8765              pr "  int64_t r;\n";
8766              pr "  sscanf (val, \"%%\" SCNi64, &r);\n";
8767              pr "  return r;\n"
8768          | RBool _ ->
8769              pr "  return strcmp (val, \"true\") == 0;\n"
8770          | RConstString _
8771          | RConstOptString _ ->
8772              (* Can't return the input string here.  Return a static
8773               * string so we ensure we get a segfault if the caller
8774               * tries to free it.
8775               *)
8776              pr "  return \"static string\";\n"
8777          | RString _ ->
8778              pr "  return strdup (val);\n"
8779          | RStringList _ ->
8780              pr "  char **strs;\n";
8781              pr "  int n, i;\n";
8782              pr "  sscanf (val, \"%%d\", &n);\n";
8783              pr "  strs = safe_malloc (g, (n+1) * sizeof (char *));\n";
8784              pr "  for (i = 0; i < n; ++i) {\n";
8785              pr "    strs[i] = safe_malloc (g, 16);\n";
8786              pr "    snprintf (strs[i], 16, \"%%d\", i);\n";
8787              pr "  }\n";
8788              pr "  strs[n] = NULL;\n";
8789              pr "  return strs;\n"
8790          | RStruct (_, typ) ->
8791              pr "  struct guestfs_%s *r;\n" typ;
8792              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
8793              pr "  return r;\n"
8794          | RStructList (_, typ) ->
8795              pr "  struct guestfs_%s_list *r;\n" typ;
8796              pr "  r = safe_calloc (g, sizeof *r, 1);\n";
8797              pr "  sscanf (val, \"%%d\", &r->len);\n";
8798              pr "  r->val = safe_calloc (g, r->len, sizeof *r->val);\n";
8799              pr "  return r;\n"
8800          | RHashtable _ ->
8801              pr "  char **strs;\n";
8802              pr "  int n, i;\n";
8803              pr "  sscanf (val, \"%%d\", &n);\n";
8804              pr "  strs = safe_malloc (g, (n*2+1) * sizeof (*strs));\n";
8805              pr "  for (i = 0; i < n; ++i) {\n";
8806              pr "    strs[i*2] = safe_malloc (g, 16);\n";
8807              pr "    strs[i*2+1] = safe_malloc (g, 16);\n";
8808              pr "    snprintf (strs[i*2], 16, \"%%d\", i);\n";
8809              pr "    snprintf (strs[i*2+1], 16, \"%%d\", i);\n";
8810              pr "  }\n";
8811              pr "  strs[n*2] = NULL;\n";
8812              pr "  return strs;\n"
8813          | RBufferOut _ ->
8814              pr "  return strdup (val);\n"
8815         );
8816         pr "}\n";
8817         pr "\n"
8818       ) else (
8819         pr "/* Test error return. */\n";
8820         generate_prototype ~extern:false ~semicolon:false ~newline:true
8821           ~handle:"g" ~prefix:"guestfs_" name style;
8822         pr "{\n";
8823         pr "  error (g, \"error\");\n";
8824         (match fst style with
8825          | RErr | RInt _ | RInt64 _ | RBool _ ->
8826              pr "  return -1;\n"
8827          | RConstString _ | RConstOptString _
8828          | RString _ | RStringList _ | RStruct _
8829          | RStructList _
8830          | RHashtable _
8831          | RBufferOut _ ->
8832              pr "  return NULL;\n"
8833         );
8834         pr "}\n";
8835         pr "\n"
8836       )
8837   ) tests
8838
8839 and generate_ocaml_bindtests () =
8840   generate_header OCamlStyle GPLv2;
8841
8842   pr "\
8843 let () =
8844   let g = Guestfs.create () in
8845 ";
8846
8847   let mkargs args =
8848     String.concat " " (
8849       List.map (
8850         function
8851         | CallString s -> "\"" ^ s ^ "\""
8852         | CallOptString None -> "None"
8853         | CallOptString (Some s) -> sprintf "(Some \"%s\")" s
8854         | CallStringList xs ->
8855             "[|" ^ String.concat ";" (List.map (sprintf "\"%s\"") xs) ^ "|]"
8856         | CallInt i when i >= 0 -> string_of_int i
8857         | CallInt i (* when i < 0 *) -> "(" ^ string_of_int i ^ ")"
8858         | CallBool b -> string_of_bool b
8859       ) args
8860     )
8861   in
8862
8863   generate_lang_bindtests (
8864     fun f args -> pr "  Guestfs.%s g %s;\n" f (mkargs args)
8865   );
8866
8867   pr "print_endline \"EOF\"\n"
8868
8869 and generate_perl_bindtests () =
8870   pr "#!/usr/bin/perl -w\n";
8871   generate_header HashStyle GPLv2;
8872
8873   pr "\
8874 use strict;
8875
8876 use Sys::Guestfs;
8877
8878 my $g = Sys::Guestfs->new ();
8879 ";
8880
8881   let mkargs args =
8882     String.concat ", " (
8883       List.map (
8884         function
8885         | CallString s -> "\"" ^ s ^ "\""
8886         | CallOptString None -> "undef"
8887         | CallOptString (Some s) -> sprintf "\"%s\"" s
8888         | CallStringList xs ->
8889             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
8890         | CallInt i -> string_of_int i
8891         | CallBool b -> if b then "1" else "0"
8892       ) args
8893     )
8894   in
8895
8896   generate_lang_bindtests (
8897     fun f args -> pr "$g->%s (%s);\n" f (mkargs args)
8898   );
8899
8900   pr "print \"EOF\\n\"\n"
8901
8902 and generate_python_bindtests () =
8903   generate_header HashStyle GPLv2;
8904
8905   pr "\
8906 import guestfs
8907
8908 g = guestfs.GuestFS ()
8909 ";
8910
8911   let mkargs args =
8912     String.concat ", " (
8913       List.map (
8914         function
8915         | CallString s -> "\"" ^ s ^ "\""
8916         | CallOptString None -> "None"
8917         | CallOptString (Some s) -> sprintf "\"%s\"" s
8918         | CallStringList xs ->
8919             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
8920         | CallInt i -> string_of_int i
8921         | CallBool b -> if b then "1" else "0"
8922       ) args
8923     )
8924   in
8925
8926   generate_lang_bindtests (
8927     fun f args -> pr "g.%s (%s)\n" f (mkargs args)
8928   );
8929
8930   pr "print \"EOF\"\n"
8931
8932 and generate_ruby_bindtests () =
8933   generate_header HashStyle GPLv2;
8934
8935   pr "\
8936 require 'guestfs'
8937
8938 g = Guestfs::create()
8939 ";
8940
8941   let mkargs args =
8942     String.concat ", " (
8943       List.map (
8944         function
8945         | CallString s -> "\"" ^ s ^ "\""
8946         | CallOptString None -> "nil"
8947         | CallOptString (Some s) -> sprintf "\"%s\"" s
8948         | CallStringList xs ->
8949             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
8950         | CallInt i -> string_of_int i
8951         | CallBool b -> string_of_bool b
8952       ) args
8953     )
8954   in
8955
8956   generate_lang_bindtests (
8957     fun f args -> pr "g.%s(%s)\n" f (mkargs args)
8958   );
8959
8960   pr "print \"EOF\\n\"\n"
8961
8962 and generate_java_bindtests () =
8963   generate_header CStyle GPLv2;
8964
8965   pr "\
8966 import com.redhat.et.libguestfs.*;
8967
8968 public class Bindtests {
8969     public static void main (String[] argv)
8970     {
8971         try {
8972             GuestFS g = new GuestFS ();
8973 ";
8974
8975   let mkargs args =
8976     String.concat ", " (
8977       List.map (
8978         function
8979         | CallString s -> "\"" ^ s ^ "\""
8980         | CallOptString None -> "null"
8981         | CallOptString (Some s) -> sprintf "\"%s\"" s
8982         | CallStringList xs ->
8983             "new String[]{" ^
8984               String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "}"
8985         | CallInt i -> string_of_int i
8986         | CallBool b -> string_of_bool b
8987       ) args
8988     )
8989   in
8990
8991   generate_lang_bindtests (
8992     fun f args -> pr "            g.%s (%s);\n" f (mkargs args)
8993   );
8994
8995   pr "
8996             System.out.println (\"EOF\");
8997         }
8998         catch (Exception exn) {
8999             System.err.println (exn);
9000             System.exit (1);
9001         }
9002     }
9003 }
9004 "
9005
9006 and generate_haskell_bindtests () =
9007   generate_header HaskellStyle GPLv2;
9008
9009   pr "\
9010 module Bindtests where
9011 import qualified Guestfs
9012
9013 main = do
9014   g <- Guestfs.create
9015 ";
9016
9017   let mkargs args =
9018     String.concat " " (
9019       List.map (
9020         function
9021         | CallString s -> "\"" ^ s ^ "\""
9022         | CallOptString None -> "Nothing"
9023         | CallOptString (Some s) -> sprintf "(Just \"%s\")" s
9024         | CallStringList xs ->
9025             "[" ^ String.concat "," (List.map (sprintf "\"%s\"") xs) ^ "]"
9026         | CallInt i when i < 0 -> "(" ^ string_of_int i ^ ")"
9027         | CallInt i -> string_of_int i
9028         | CallBool true -> "True"
9029         | CallBool false -> "False"
9030       ) args
9031     )
9032   in
9033
9034   generate_lang_bindtests (
9035     fun f args -> pr "  Guestfs.%s g %s\n" f (mkargs args)
9036   );
9037
9038   pr "  putStrLn \"EOF\"\n"
9039
9040 (* Language-independent bindings tests - we do it this way to
9041  * ensure there is parity in testing bindings across all languages.
9042  *)
9043 and generate_lang_bindtests call =
9044   call "test0" [CallString "abc"; CallOptString (Some "def");
9045                 CallStringList []; CallBool false;
9046                 CallInt 0; CallString "123"; CallString "456"];
9047   call "test0" [CallString "abc"; CallOptString None;
9048                 CallStringList []; CallBool false;
9049                 CallInt 0; CallString "123"; CallString "456"];
9050   call "test0" [CallString ""; CallOptString (Some "def");
9051                 CallStringList []; CallBool false;
9052                 CallInt 0; CallString "123"; CallString "456"];
9053   call "test0" [CallString ""; CallOptString (Some "");
9054                 CallStringList []; CallBool false;
9055                 CallInt 0; CallString "123"; CallString "456"];
9056   call "test0" [CallString "abc"; CallOptString (Some "def");
9057                 CallStringList ["1"]; CallBool false;
9058                 CallInt 0; CallString "123"; CallString "456"];
9059   call "test0" [CallString "abc"; CallOptString (Some "def");
9060                 CallStringList ["1"; "2"]; CallBool false;
9061                 CallInt 0; CallString "123"; CallString "456"];
9062   call "test0" [CallString "abc"; CallOptString (Some "def");
9063                 CallStringList ["1"]; CallBool true;
9064                 CallInt 0; CallString "123"; CallString "456"];
9065   call "test0" [CallString "abc"; CallOptString (Some "def");
9066                 CallStringList ["1"]; CallBool false;
9067                 CallInt (-1); CallString "123"; CallString "456"];
9068   call "test0" [CallString "abc"; CallOptString (Some "def");
9069                 CallStringList ["1"]; CallBool false;
9070                 CallInt (-2); CallString "123"; CallString "456"];
9071   call "test0" [CallString "abc"; CallOptString (Some "def");
9072                 CallStringList ["1"]; CallBool false;
9073                 CallInt 1; CallString "123"; CallString "456"];
9074   call "test0" [CallString "abc"; CallOptString (Some "def");
9075                 CallStringList ["1"]; CallBool false;
9076                 CallInt 2; CallString "123"; CallString "456"];
9077   call "test0" [CallString "abc"; CallOptString (Some "def");
9078                 CallStringList ["1"]; CallBool false;
9079                 CallInt 4095; CallString "123"; CallString "456"];
9080   call "test0" [CallString "abc"; CallOptString (Some "def");
9081                 CallStringList ["1"]; CallBool false;
9082                 CallInt 0; CallString ""; CallString ""]
9083
9084 (* XXX Add here tests of the return and error functions. *)
9085
9086 (* This is used to generate the src/MAX_PROC_NR file which
9087  * contains the maximum procedure number, a surrogate for the
9088  * ABI version number.  See src/Makefile.am for the details.
9089  *)
9090 and generate_max_proc_nr () =
9091   let proc_nrs = List.map (
9092     fun (_, _, proc_nr, _, _, _, _) -> proc_nr
9093   ) daemon_functions in
9094
9095   let max_proc_nr = List.fold_left max 0 proc_nrs in
9096
9097   pr "%d\n" max_proc_nr
9098
9099 let output_to filename =
9100   let filename_new = filename ^ ".new" in
9101   chan := open_out filename_new;
9102   let close () =
9103     close_out !chan;
9104     chan := stdout;
9105
9106     (* Is the new file different from the current file? *)
9107     if Sys.file_exists filename && files_equal filename filename_new then
9108       Unix.unlink filename_new          (* same, so skip it *)
9109     else (
9110       (* different, overwrite old one *)
9111       (try Unix.chmod filename 0o644 with Unix.Unix_error _ -> ());
9112       Unix.rename filename_new filename;
9113       Unix.chmod filename 0o444;
9114       printf "written %s\n%!" filename;
9115     )
9116   in
9117   close
9118
9119 (* Main program. *)
9120 let () =
9121   check_functions ();
9122
9123   if not (Sys.file_exists "HACKING") then (
9124     eprintf "\
9125 You are probably running this from the wrong directory.
9126 Run it from the top source directory using the command
9127   src/generator.ml
9128 ";
9129     exit 1
9130   );
9131
9132   let close = output_to "src/guestfs_protocol.x" in
9133   generate_xdr ();
9134   close ();
9135
9136   let close = output_to "src/guestfs-structs.h" in
9137   generate_structs_h ();
9138   close ();
9139
9140   let close = output_to "src/guestfs-actions.h" in
9141   generate_actions_h ();
9142   close ();
9143
9144   let close = output_to "src/guestfs-actions.c" in
9145   generate_client_actions ();
9146   close ();
9147
9148   let close = output_to "daemon/actions.h" in
9149   generate_daemon_actions_h ();
9150   close ();
9151
9152   let close = output_to "daemon/stubs.c" in
9153   generate_daemon_actions ();
9154   close ();
9155
9156   let close = output_to "daemon/names.c" in
9157   generate_daemon_names ();
9158   close ();
9159
9160   let close = output_to "capitests/tests.c" in
9161   generate_tests ();
9162   close ();
9163
9164   let close = output_to "src/guestfs-bindtests.c" in
9165   generate_bindtests ();
9166   close ();
9167
9168   let close = output_to "fish/cmds.c" in
9169   generate_fish_cmds ();
9170   close ();
9171
9172   let close = output_to "fish/completion.c" in
9173   generate_fish_completion ();
9174   close ();
9175
9176   let close = output_to "guestfs-structs.pod" in
9177   generate_structs_pod ();
9178   close ();
9179
9180   let close = output_to "guestfs-actions.pod" in
9181   generate_actions_pod ();
9182   close ();
9183
9184   let close = output_to "guestfish-actions.pod" in
9185   generate_fish_actions_pod ();
9186   close ();
9187
9188   let close = output_to "ocaml/guestfs.mli" in
9189   generate_ocaml_mli ();
9190   close ();
9191
9192   let close = output_to "ocaml/guestfs.ml" in
9193   generate_ocaml_ml ();
9194   close ();
9195
9196   let close = output_to "ocaml/guestfs_c_actions.c" in
9197   generate_ocaml_c ();
9198   close ();
9199
9200   let close = output_to "ocaml/bindtests.ml" in
9201   generate_ocaml_bindtests ();
9202   close ();
9203
9204   let close = output_to "perl/Guestfs.xs" in
9205   generate_perl_xs ();
9206   close ();
9207
9208   let close = output_to "perl/lib/Sys/Guestfs.pm" in
9209   generate_perl_pm ();
9210   close ();
9211
9212   let close = output_to "perl/bindtests.pl" in
9213   generate_perl_bindtests ();
9214   close ();
9215
9216   let close = output_to "python/guestfs-py.c" in
9217   generate_python_c ();
9218   close ();
9219
9220   let close = output_to "python/guestfs.py" in
9221   generate_python_py ();
9222   close ();
9223
9224   let close = output_to "python/bindtests.py" in
9225   generate_python_bindtests ();
9226   close ();
9227
9228   let close = output_to "ruby/ext/guestfs/_guestfs.c" in
9229   generate_ruby_c ();
9230   close ();
9231
9232   let close = output_to "ruby/bindtests.rb" in
9233   generate_ruby_bindtests ();
9234   close ();
9235
9236   let close = output_to "java/com/redhat/et/libguestfs/GuestFS.java" in
9237   generate_java_java ();
9238   close ();
9239
9240   List.iter (
9241     fun (typ, jtyp) ->
9242       let cols = cols_of_struct typ in
9243       let filename = sprintf "java/com/redhat/et/libguestfs/%s.java" jtyp in
9244       let close = output_to filename in
9245       generate_java_struct jtyp cols;
9246       close ();
9247   ) java_structs;
9248
9249   let close = output_to "java/Makefile.inc" in
9250   pr "java_built_sources =";
9251   List.iter (
9252     fun (typ, jtyp) ->
9253         pr " com/redhat/et/libguestfs/%s.java" jtyp;
9254   ) java_structs;
9255   pr " com/redhat/et/libguestfs/GuestFS.java\n";
9256   close ();
9257
9258   let close = output_to "java/com_redhat_et_libguestfs_GuestFS.c" in
9259   generate_java_c ();
9260   close ();
9261
9262   let close = output_to "java/Bindtests.java" in
9263   generate_java_bindtests ();
9264   close ();
9265
9266   let close = output_to "haskell/Guestfs.hs" in
9267   generate_haskell_hs ();
9268   close ();
9269
9270   let close = output_to "haskell/Bindtests.hs" in
9271   generate_haskell_bindtests ();
9272   close ();
9273
9274   let close = output_to "src/MAX_PROC_NR" in
9275   generate_max_proc_nr ();
9276   close ();
9277
9278   (* Always generate this file last, and unconditionally.  It's used
9279    * by the Makefile to know when we must re-run the generator.
9280    *)
9281   let chan = open_out "src/stamp-generator" in
9282   fprintf chan "1\n";
9283   close_out chan