3 * Copyright (C) 2009 Red Hat Inc.
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.
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.
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
20 (* This script generates a large amount of code and documentation for
21 * all the daemon actions.
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.
27 * After editing this file, run it (./src/generator.ml) to regenerate
28 * all the output files.
30 * IMPORTANT: This script should NOT print any warnings. If it prints
31 * warnings, you should treat them as errors.
32 * [Need to add -warn-error to ocaml command line]
40 type style = ret * args
42 (* "RErr" as a return value means an int used as a simple error
43 * indication, ie. 0 or -1.
46 (* "RInt" as a return value means an int which is -1 for error
47 * or any value >= 0 on success. Only use this for smallish
48 * positive ints (0 <= i < 2^30).
51 (* "RInt64" is the same as RInt, but is guaranteed to be able
52 * to return a full 64 bit value, _except_ that -1 means error
53 * (so -1 cannot be a valid, non-error return value).
56 (* "RBool" is a bool return value which can be true/false or
60 (* "RConstString" is a string that refers to a constant value.
61 * Try to avoid using this. In particular you cannot use this
62 * for values returned from the daemon, because there is no
63 * thread-safe way to return them in the C API.
65 | RConstString of string
66 (* "RString" and "RStringList" are caller-frees. *)
68 | RStringList of string
69 (* Some limited tuples are possible: *)
70 | RIntBool of string * string
71 (* LVM PVs, VGs and LVs. *)
78 (* Key-value pairs of untyped strings. Turns into a hashtable or
79 * dictionary in languages which support it. DON'T use this as a
80 * general "bucket" for results. Prefer a stronger typed return
81 * value if one is available, or write a custom struct. Don't use
82 * this if the list could potentially be very long, since it is
83 * inefficient. Keys should be unique. NULLs are not permitted.
85 | RHashtable of string
87 and args = argt list (* Function parameters, guestfs handle is implicit. *)
89 (* Note in future we should allow a "variable args" parameter as
90 * the final parameter, to allow commands like
91 * chmod mode file [file(s)...]
92 * This is not implemented yet, but many commands (such as chmod)
93 * are currently defined with the argument order keeping this future
94 * possibility in mind.
97 | String of string (* const char *name, cannot be NULL *)
98 | OptString of string (* const char *name, may be NULL *)
99 | StringList of string(* list of strings (each string cannot be NULL) *)
100 | Bool of string (* boolean *)
101 | Int of string (* int (smallish ints, signed, <= 31 bits) *)
102 (* These are treated as filenames (simple string parameters) in
103 * the C API and bindings. But in the RPC protocol, we transfer
104 * the actual file content up to or down from the daemon.
105 * FileIn: local machine -> daemon (in request)
106 * FileOut: daemon -> local machine (in reply)
107 * In guestfish (only), the special name "-" means read from
108 * stdin or write to stdout.
114 | ProtocolLimitWarning (* display warning about protocol size limits *)
115 | DangerWillRobinson (* flags particularly dangerous commands *)
116 | FishAlias of string (* provide an alias for this cmd in guestfish *)
117 | FishAction of string (* call this function in guestfish *)
118 | NotInFish (* do not export via guestfish *)
120 let protocol_limit_warning =
121 "Because of the message protocol, there is a transfer limit
122 of somewhere between 2MB and 4MB. To transfer large files you should use
125 let danger_will_robinson =
126 "B<This command is dangerous. Without careful use you
127 can easily destroy all your data>."
129 (* You can supply zero or as many tests as you want per API call.
131 * Note that the test environment has 3 block devices, of size 500MB,
132 * 50MB and 10MB (respectively /dev/sda, /dev/sdb, /dev/sdc).
133 * Note for partitioning purposes, the 500MB device has 63 cylinders.
135 * To be able to run the tests in a reasonable amount of time,
136 * the virtual machine and block devices are reused between tests.
137 * So don't try testing kill_subprocess :-x
139 * Between each test we umount-all and lvm-remove-all (except InitNone).
141 * Don't assume anything about the previous contents of the block
142 * devices. Use 'Init*' to create some initial scenarios.
144 type tests = (test_init * test) list
146 (* Run the command sequence and just expect nothing to fail. *)
148 (* Run the command sequence and expect the output of the final
149 * command to be the string.
151 | TestOutput of seq * string
152 (* Run the command sequence and expect the output of the final
153 * command to be the list of strings.
155 | TestOutputList of seq * string list
156 (* Run the command sequence and expect the output of the final
157 * command to be the integer.
159 | TestOutputInt of seq * int
160 (* Run the command sequence and expect the output of the final
161 * command to be a true value (!= 0 or != NULL).
163 | TestOutputTrue of seq
164 (* Run the command sequence and expect the output of the final
165 * command to be a false value (== 0 or == NULL, but not an error).
167 | TestOutputFalse of seq
168 (* Run the command sequence and expect the output of the final
169 * command to be a list of the given length (but don't care about
172 | TestOutputLength of seq * int
173 (* Run the command sequence and expect the output of the final
174 * command to be a structure.
176 | TestOutputStruct of seq * test_field_compare list
177 (* Run the command sequence and expect the final command (only)
180 | TestLastFail of seq
182 and test_field_compare =
183 | CompareWithInt of string * int
184 | CompareWithString of string * string
185 | CompareFieldsIntEq of string * string
186 | CompareFieldsStrEq of string * string
188 (* Some initial scenarios for testing. *)
190 (* Do nothing, block devices could contain random stuff including
191 * LVM PVs, and some filesystems might be mounted. This is usually
195 (* Block devices are empty and no filesystems are mounted. *)
197 (* /dev/sda contains a single partition /dev/sda1, which is formatted
198 * as ext2, empty [except for lost+found] and mounted on /.
199 * /dev/sdb and /dev/sdc may have random content.
204 * /dev/sda1 (is a PV):
205 * /dev/VG/LV (size 8MB):
206 * formatted as ext2, empty [except for lost+found], mounted on /
207 * /dev/sdb and /dev/sdc may have random content.
211 (* Sequence of commands for testing. *)
213 and cmd = string list
215 (* Note about long descriptions: When referring to another
216 * action, use the format C<guestfs_other> (ie. the full name of
217 * the C function). This will be replaced as appropriate in other
220 * Apart from that, long descriptions are just perldoc paragraphs.
223 let non_daemon_functions = [
224 ("launch", (RErr, []), -1, [FishAlias "run"; FishAction "launch"],
226 "launch the qemu subprocess",
228 Internally libguestfs is implemented by running a virtual machine
231 You should call this after configuring the handle
232 (eg. adding drives) but before performing any actions.");
234 ("wait_ready", (RErr, []), -1, [NotInFish],
236 "wait until the qemu subprocess launches",
238 Internally libguestfs is implemented by running a virtual machine
241 You should call this after C<guestfs_launch> to wait for the launch
244 ("kill_subprocess", (RErr, []), -1, [],
246 "kill the qemu subprocess",
248 This kills the qemu subprocess. You should never need to call this.");
250 ("add_drive", (RErr, [String "filename"]), -1, [FishAlias "add"],
252 "add an image to examine or modify",
254 This function adds a virtual machine disk image C<filename> to the
255 guest. The first time you call this function, the disk appears as IDE
256 disk 0 (C</dev/sda>) in the guest, the second time as C</dev/sdb>, and
259 You don't necessarily need to be root when using libguestfs. However
260 you obviously do need sufficient permissions to access the filename
261 for whatever operations you want to perform (ie. read access if you
262 just want to read the image or write access if you want to modify the
265 This is equivalent to the qemu parameter C<-drive file=filename>.");
267 ("add_cdrom", (RErr, [String "filename"]), -1, [FishAlias "cdrom"],
269 "add a CD-ROM disk image to examine",
271 This function adds a virtual CD-ROM disk image to the guest.
273 This is equivalent to the qemu parameter C<-cdrom filename>.");
275 ("config", (RErr, [String "qemuparam"; OptString "qemuvalue"]), -1, [],
277 "add qemu parameters",
279 This can be used to add arbitrary qemu command line parameters
280 of the form C<-param value>. Actually it's not quite arbitrary - we
281 prevent you from setting some parameters which would interfere with
282 parameters that we use.
284 The first character of C<param> string must be a C<-> (dash).
286 C<value> can be NULL.");
288 ("set_qemu", (RErr, [String "qemu"]), -1, [FishAlias "qemu"],
290 "set the qemu binary",
292 Set the qemu binary that we will use.
294 The default is chosen when the library was compiled by the
297 You can also override this by setting the C<LIBGUESTFS_QEMU>
298 environment variable.
300 The string C<qemu> is stashed in the libguestfs handle, so the caller
301 must make sure it remains valid for the lifetime of the handle.
303 Setting C<qemu> to C<NULL> restores the default qemu binary.");
305 ("get_qemu", (RConstString "qemu", []), -1, [],
307 "get the qemu binary",
309 Return the current qemu binary.
311 This is always non-NULL. If it wasn't set already, then this will
312 return the default qemu binary name.");
314 ("set_path", (RErr, [String "path"]), -1, [FishAlias "path"],
316 "set the search path",
318 Set the path that libguestfs searches for kernel and initrd.img.
320 The default is C<$libdir/guestfs> unless overridden by setting
321 C<LIBGUESTFS_PATH> environment variable.
323 The string C<path> is stashed in the libguestfs handle, so the caller
324 must make sure it remains valid for the lifetime of the handle.
326 Setting C<path> to C<NULL> restores the default path.");
328 ("get_path", (RConstString "path", []), -1, [],
330 "get the search path",
332 Return the current search path.
334 This is always non-NULL. If it wasn't set already, then this will
335 return the default path.");
337 ("set_autosync", (RErr, [Bool "autosync"]), -1, [FishAlias "autosync"],
341 If C<autosync> is true, this enables autosync. Libguestfs will make a
342 best effort attempt to run C<guestfs_sync> when the handle is closed
343 (also if the program exits without closing handles).");
345 ("get_autosync", (RBool "autosync", []), -1, [],
349 Get the autosync flag.");
351 ("set_verbose", (RErr, [Bool "verbose"]), -1, [FishAlias "verbose"],
355 If C<verbose> is true, this turns on verbose messages (to C<stderr>).
357 Verbose messages are disabled unless the environment variable
358 C<LIBGUESTFS_DEBUG> is defined and set to C<1>.");
360 ("get_verbose", (RBool "verbose", []), -1, [],
364 This returns the verbose messages flag.");
366 ("is_ready", (RBool "ready", []), -1, [],
368 "is ready to accept commands",
370 This returns true iff this handle is ready to accept commands
371 (in the C<READY> state).
373 For more information on states, see L<guestfs(3)>.");
375 ("is_config", (RBool "config", []), -1, [],
377 "is in configuration state",
379 This returns true iff this handle is being configured
380 (in the C<CONFIG> state).
382 For more information on states, see L<guestfs(3)>.");
384 ("is_launching", (RBool "launching", []), -1, [],
386 "is launching subprocess",
388 This returns true iff this handle is launching the subprocess
389 (in the C<LAUNCHING> state).
391 For more information on states, see L<guestfs(3)>.");
393 ("is_busy", (RBool "busy", []), -1, [],
395 "is busy processing a command",
397 This returns true iff this handle is busy processing a command
398 (in the C<BUSY> state).
400 For more information on states, see L<guestfs(3)>.");
402 ("get_state", (RInt "state", []), -1, [],
404 "get the current state",
406 This returns the current state as an opaque integer. This is
407 only useful for printing debug and internal error messages.
409 For more information on states, see L<guestfs(3)>.");
411 ("set_busy", (RErr, []), -1, [NotInFish],
415 This sets the state to C<BUSY>. This is only used when implementing
416 actions using the low-level API.
418 For more information on states, see L<guestfs(3)>.");
420 ("set_ready", (RErr, []), -1, [NotInFish],
422 "set state to ready",
424 This sets the state to C<READY>. This is only used when implementing
425 actions using the low-level API.
427 For more information on states, see L<guestfs(3)>.");
431 let daemon_functions = [
432 ("mount", (RErr, [String "device"; String "mountpoint"]), 1, [],
433 [InitEmpty, TestOutput (
434 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
435 ["mkfs"; "ext2"; "/dev/sda1"];
436 ["mount"; "/dev/sda1"; "/"];
437 ["write_file"; "/new"; "new file contents"; "0"];
438 ["cat"; "/new"]], "new file contents")],
439 "mount a guest disk at a position in the filesystem",
441 Mount a guest disk at a position in the filesystem. Block devices
442 are named C</dev/sda>, C</dev/sdb> and so on, as they were added to
443 the guest. If those block devices contain partitions, they will have
444 the usual names (eg. C</dev/sda1>). Also LVM C</dev/VG/LV>-style
447 The rules are the same as for L<mount(2)>: A filesystem must
448 first be mounted on C</> before others can be mounted. Other
449 filesystems can only be mounted on directories which already
452 The mounted filesystem is writable, if we have sufficient permissions
453 on the underlying device.
455 The filesystem options C<sync> and C<noatime> are set with this
456 call, in order to improve reliability.");
458 ("sync", (RErr, []), 2, [],
459 [ InitEmpty, TestRun [["sync"]]],
460 "sync disks, writes are flushed through to the disk image",
462 This syncs the disk, so that any writes are flushed through to the
463 underlying disk image.
465 You should always call this if you have modified a disk image, before
466 closing the handle.");
468 ("touch", (RErr, [String "path"]), 3, [],
469 [InitBasicFS, TestOutputTrue (
471 ["exists"; "/new"]])],
472 "update file timestamps or create a new file",
474 Touch acts like the L<touch(1)> command. It can be used to
475 update the timestamps on a file, or, if the file does not exist,
476 to create a new zero-length file.");
478 ("cat", (RString "content", [String "path"]), 4, [ProtocolLimitWarning],
479 [InitBasicFS, TestOutput (
480 [["write_file"; "/new"; "new file contents"; "0"];
481 ["cat"; "/new"]], "new file contents")],
482 "list the contents of a file",
484 Return the contents of the file named C<path>.
486 Note that this function cannot correctly handle binary files
487 (specifically, files containing C<\\0> character which is treated
488 as end of string). For those you need to use the C<guestfs_download>
489 function which has a more complex interface.");
491 ("ll", (RString "listing", [String "directory"]), 5, [],
492 [], (* XXX Tricky to test because it depends on the exact format
493 * of the 'ls -l' command, which changes between F10 and F11.
495 "list the files in a directory (long format)",
497 List the files in C<directory> (relative to the root directory,
498 there is no cwd) in the format of 'ls -la'.
500 This command is mostly useful for interactive sessions. It
501 is I<not> intended that you try to parse the output string.");
503 ("ls", (RStringList "listing", [String "directory"]), 6, [],
504 [InitBasicFS, TestOutputList (
507 ["touch"; "/newest"];
508 ["ls"; "/"]], ["lost+found"; "new"; "newer"; "newest"])],
509 "list the files in a directory",
511 List the files in C<directory> (relative to the root directory,
512 there is no cwd). The '.' and '..' entries are not returned, but
513 hidden files are shown.
515 This command is mostly useful for interactive sessions. Programs
516 should probably use C<guestfs_readdir> instead.");
518 ("list_devices", (RStringList "devices", []), 7, [],
519 [InitEmpty, TestOutputList (
520 [["list_devices"]], ["/dev/sda"; "/dev/sdb"; "/dev/sdc"])],
521 "list the block devices",
523 List all the block devices.
525 The full block device names are returned, eg. C</dev/sda>");
527 ("list_partitions", (RStringList "partitions", []), 8, [],
528 [InitBasicFS, TestOutputList (
529 [["list_partitions"]], ["/dev/sda1"]);
530 InitEmpty, TestOutputList (
531 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
532 ["list_partitions"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
533 "list the partitions",
535 List all the partitions detected on all block devices.
537 The full partition device names are returned, eg. C</dev/sda1>
539 This does not return logical volumes. For that you will need to
540 call C<guestfs_lvs>.");
542 ("pvs", (RStringList "physvols", []), 9, [],
543 [InitBasicFSonLVM, TestOutputList (
544 [["pvs"]], ["/dev/sda1"]);
545 InitEmpty, TestOutputList (
546 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
547 ["pvcreate"; "/dev/sda1"];
548 ["pvcreate"; "/dev/sda2"];
549 ["pvcreate"; "/dev/sda3"];
550 ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
551 "list the LVM physical volumes (PVs)",
553 List all the physical volumes detected. This is the equivalent
554 of the L<pvs(8)> command.
556 This returns a list of just the device names that contain
557 PVs (eg. C</dev/sda2>).
559 See also C<guestfs_pvs_full>.");
561 ("vgs", (RStringList "volgroups", []), 10, [],
562 [InitBasicFSonLVM, TestOutputList (
564 InitEmpty, TestOutputList (
565 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
566 ["pvcreate"; "/dev/sda1"];
567 ["pvcreate"; "/dev/sda2"];
568 ["pvcreate"; "/dev/sda3"];
569 ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
570 ["vgcreate"; "VG2"; "/dev/sda3"];
571 ["vgs"]], ["VG1"; "VG2"])],
572 "list the LVM volume groups (VGs)",
574 List all the volumes groups detected. This is the equivalent
575 of the L<vgs(8)> command.
577 This returns a list of just the volume group names that were
578 detected (eg. C<VolGroup00>).
580 See also C<guestfs_vgs_full>.");
582 ("lvs", (RStringList "logvols", []), 11, [],
583 [InitBasicFSonLVM, TestOutputList (
584 [["lvs"]], ["/dev/VG/LV"]);
585 InitEmpty, TestOutputList (
586 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
587 ["pvcreate"; "/dev/sda1"];
588 ["pvcreate"; "/dev/sda2"];
589 ["pvcreate"; "/dev/sda3"];
590 ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
591 ["vgcreate"; "VG2"; "/dev/sda3"];
592 ["lvcreate"; "LV1"; "VG1"; "50"];
593 ["lvcreate"; "LV2"; "VG1"; "50"];
594 ["lvcreate"; "LV3"; "VG2"; "50"];
595 ["lvs"]], ["/dev/VG1/LV1"; "/dev/VG1/LV2"; "/dev/VG2/LV3"])],
596 "list the LVM logical volumes (LVs)",
598 List all the logical volumes detected. This is the equivalent
599 of the L<lvs(8)> command.
601 This returns a list of the logical volume device names
602 (eg. C</dev/VolGroup00/LogVol00>).
604 See also C<guestfs_lvs_full>.");
606 ("pvs_full", (RPVList "physvols", []), 12, [],
607 [], (* XXX how to test? *)
608 "list the LVM physical volumes (PVs)",
610 List all the physical volumes detected. This is the equivalent
611 of the L<pvs(8)> command. The \"full\" version includes all fields.");
613 ("vgs_full", (RVGList "volgroups", []), 13, [],
614 [], (* XXX how to test? *)
615 "list the LVM volume groups (VGs)",
617 List all the volumes groups detected. This is the equivalent
618 of the L<vgs(8)> command. The \"full\" version includes all fields.");
620 ("lvs_full", (RLVList "logvols", []), 14, [],
621 [], (* XXX how to test? *)
622 "list the LVM logical volumes (LVs)",
624 List all the logical volumes detected. This is the equivalent
625 of the L<lvs(8)> command. The \"full\" version includes all fields.");
627 ("read_lines", (RStringList "lines", [String "path"]), 15, [],
628 [InitBasicFS, TestOutputList (
629 [["write_file"; "/new"; "line1\r\nline2\nline3"; "0"];
630 ["read_lines"; "/new"]], ["line1"; "line2"; "line3"]);
631 InitBasicFS, TestOutputList (
632 [["write_file"; "/new"; ""; "0"];
633 ["read_lines"; "/new"]], [])],
634 "read file as lines",
636 Return the contents of the file named C<path>.
638 The file contents are returned as a list of lines. Trailing
639 C<LF> and C<CRLF> character sequences are I<not> returned.
641 Note that this function cannot correctly handle binary files
642 (specifically, files containing C<\\0> character which is treated
643 as end of line). For those you need to use the C<guestfs_read_file>
644 function which has a more complex interface.");
646 ("aug_init", (RErr, [String "root"; Int "flags"]), 16, [],
647 [], (* XXX Augeas code needs tests. *)
648 "create a new Augeas handle",
650 Create a new Augeas handle for editing configuration files.
651 If there was any previous Augeas handle associated with this
652 guestfs session, then it is closed.
654 You must call this before using any other C<guestfs_aug_*>
657 C<root> is the filesystem root. C<root> must not be NULL,
660 The flags are the same as the flags defined in
661 E<lt>augeas.hE<gt>, the logical I<or> of the following
666 =item C<AUG_SAVE_BACKUP> = 1
668 Keep the original file with a C<.augsave> extension.
670 =item C<AUG_SAVE_NEWFILE> = 2
672 Save changes into a file with extension C<.augnew>, and
673 do not overwrite original. Overrides C<AUG_SAVE_BACKUP>.
675 =item C<AUG_TYPE_CHECK> = 4
677 Typecheck lenses (can be expensive).
679 =item C<AUG_NO_STDINC> = 8
681 Do not use standard load path for modules.
683 =item C<AUG_SAVE_NOOP> = 16
685 Make save a no-op, just record what would have been changed.
687 =item C<AUG_NO_LOAD> = 32
689 Do not load the tree in C<guestfs_aug_init>.
693 To close the handle, you can call C<guestfs_aug_close>.
695 To find out more about Augeas, see L<http://augeas.net/>.");
697 ("aug_close", (RErr, []), 26, [],
698 [], (* XXX Augeas code needs tests. *)
699 "close the current Augeas handle",
701 Close the current Augeas handle and free up any resources
702 used by it. After calling this, you have to call
703 C<guestfs_aug_init> again before you can use any other
706 ("aug_defvar", (RInt "nrnodes", [String "name"; OptString "expr"]), 17, [],
707 [], (* XXX Augeas code needs tests. *)
708 "define an Augeas variable",
710 Defines an Augeas variable C<name> whose value is the result
711 of evaluating C<expr>. If C<expr> is NULL, then C<name> is
714 On success this returns the number of nodes in C<expr>, or
715 C<0> if C<expr> evaluates to something which is not a nodeset.");
717 ("aug_defnode", (RIntBool ("nrnodes", "created"), [String "name"; String "expr"; String "val"]), 18, [],
718 [], (* XXX Augeas code needs tests. *)
719 "define an Augeas node",
721 Defines a variable C<name> whose value is the result of
724 If C<expr> evaluates to an empty nodeset, a node is created,
725 equivalent to calling C<guestfs_aug_set> C<expr>, C<value>.
726 C<name> will be the nodeset containing that single node.
728 On success this returns a pair containing the
729 number of nodes in the nodeset, and a boolean flag
730 if a node was created.");
732 ("aug_get", (RString "val", [String "path"]), 19, [],
733 [], (* XXX Augeas code needs tests. *)
734 "look up the value of an Augeas path",
736 Look up the value associated with C<path>. If C<path>
737 matches exactly one node, the C<value> is returned.");
739 ("aug_set", (RErr, [String "path"; String "val"]), 20, [],
740 [], (* XXX Augeas code needs tests. *)
741 "set Augeas path to value",
743 Set the value associated with C<path> to C<value>.");
745 ("aug_insert", (RErr, [String "path"; String "label"; Bool "before"]), 21, [],
746 [], (* XXX Augeas code needs tests. *)
747 "insert a sibling Augeas node",
749 Create a new sibling C<label> for C<path>, inserting it into
750 the tree before or after C<path> (depending on the boolean
753 C<path> must match exactly one existing node in the tree, and
754 C<label> must be a label, ie. not contain C</>, C<*> or end
755 with a bracketed index C<[N]>.");
757 ("aug_rm", (RInt "nrnodes", [String "path"]), 22, [],
758 [], (* XXX Augeas code needs tests. *)
759 "remove an Augeas path",
761 Remove C<path> and all of its children.
763 On success this returns the number of entries which were removed.");
765 ("aug_mv", (RErr, [String "src"; String "dest"]), 23, [],
766 [], (* XXX Augeas code needs tests. *)
769 Move the node C<src> to C<dest>. C<src> must match exactly
770 one node. C<dest> is overwritten if it exists.");
772 ("aug_match", (RStringList "matches", [String "path"]), 24, [],
773 [], (* XXX Augeas code needs tests. *)
774 "return Augeas nodes which match path",
776 Returns a list of paths which match the path expression C<path>.
777 The returned paths are sufficiently qualified so that they match
778 exactly one node in the current tree.");
780 ("aug_save", (RErr, []), 25, [],
781 [], (* XXX Augeas code needs tests. *)
782 "write all pending Augeas changes to disk",
784 This writes all pending changes to disk.
786 The flags which were passed to C<guestfs_aug_init> affect exactly
787 how files are saved.");
789 ("aug_load", (RErr, []), 27, [],
790 [], (* XXX Augeas code needs tests. *)
791 "load files into the tree",
793 Load files into the tree.
795 See C<aug_load> in the Augeas documentation for the full gory
798 ("aug_ls", (RStringList "matches", [String "path"]), 28, [],
799 [], (* XXX Augeas code needs tests. *)
800 "list Augeas nodes under a path",
802 This is just a shortcut for listing C<guestfs_aug_match>
803 C<path/*> and sorting the resulting nodes into alphabetical order.");
805 ("rm", (RErr, [String "path"]), 29, [],
806 [InitBasicFS, TestRun
809 InitBasicFS, TestLastFail
811 InitBasicFS, TestLastFail
816 Remove the single file C<path>.");
818 ("rmdir", (RErr, [String "path"]), 30, [],
819 [InitBasicFS, TestRun
822 InitBasicFS, TestLastFail
824 InitBasicFS, TestLastFail
827 "remove a directory",
829 Remove the single directory C<path>.");
831 ("rm_rf", (RErr, [String "path"]), 31, [],
832 [InitBasicFS, TestOutputFalse
834 ["mkdir"; "/new/foo"];
835 ["touch"; "/new/foo/bar"];
837 ["exists"; "/new"]]],
838 "remove a file or directory recursively",
840 Remove the file or directory C<path>, recursively removing the
841 contents if its a directory. This is like the C<rm -rf> shell
844 ("mkdir", (RErr, [String "path"]), 32, [],
845 [InitBasicFS, TestOutputTrue
848 InitBasicFS, TestLastFail
849 [["mkdir"; "/new/foo/bar"]]],
850 "create a directory",
852 Create a directory named C<path>.");
854 ("mkdir_p", (RErr, [String "path"]), 33, [],
855 [InitBasicFS, TestOutputTrue
856 [["mkdir_p"; "/new/foo/bar"];
857 ["is_dir"; "/new/foo/bar"]];
858 InitBasicFS, TestOutputTrue
859 [["mkdir_p"; "/new/foo/bar"];
860 ["is_dir"; "/new/foo"]];
861 InitBasicFS, TestOutputTrue
862 [["mkdir_p"; "/new/foo/bar"];
863 ["is_dir"; "/new"]]],
864 "create a directory and parents",
866 Create a directory named C<path>, creating any parent directories
867 as necessary. This is like the C<mkdir -p> shell command.");
869 ("chmod", (RErr, [Int "mode"; String "path"]), 34, [],
870 [], (* XXX Need stat command to test *)
873 Change the mode (permissions) of C<path> to C<mode>. Only
874 numeric modes are supported.");
876 ("chown", (RErr, [Int "owner"; Int "group"; String "path"]), 35, [],
877 [], (* XXX Need stat command to test *)
878 "change file owner and group",
880 Change the file owner to C<owner> and group to C<group>.
882 Only numeric uid and gid are supported. If you want to use
883 names, you will need to locate and parse the password file
884 yourself (Augeas support makes this relatively easy).");
886 ("exists", (RBool "existsflag", [String "path"]), 36, [],
887 [InitBasicFS, TestOutputTrue (
889 ["exists"; "/new"]]);
890 InitBasicFS, TestOutputTrue (
892 ["exists"; "/new"]])],
893 "test if file or directory exists",
895 This returns C<true> if and only if there is a file, directory
896 (or anything) with the given C<path> name.
898 See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>.");
900 ("is_file", (RBool "fileflag", [String "path"]), 37, [],
901 [InitBasicFS, TestOutputTrue (
903 ["is_file"; "/new"]]);
904 InitBasicFS, TestOutputFalse (
906 ["is_file"; "/new"]])],
907 "test if file exists",
909 This returns C<true> if and only if there is a file
910 with the given C<path> name. Note that it returns false for
911 other objects like directories.
913 See also C<guestfs_stat>.");
915 ("is_dir", (RBool "dirflag", [String "path"]), 38, [],
916 [InitBasicFS, TestOutputFalse (
918 ["is_dir"; "/new"]]);
919 InitBasicFS, TestOutputTrue (
921 ["is_dir"; "/new"]])],
922 "test if file exists",
924 This returns C<true> if and only if there is a directory
925 with the given C<path> name. Note that it returns false for
926 other objects like files.
928 See also C<guestfs_stat>.");
930 ("pvcreate", (RErr, [String "device"]), 39, [],
931 [InitEmpty, TestOutputList (
932 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
933 ["pvcreate"; "/dev/sda1"];
934 ["pvcreate"; "/dev/sda2"];
935 ["pvcreate"; "/dev/sda3"];
936 ["pvs"]], ["/dev/sda1"; "/dev/sda2"; "/dev/sda3"])],
937 "create an LVM physical volume",
939 This creates an LVM physical volume on the named C<device>,
940 where C<device> should usually be a partition name such
943 ("vgcreate", (RErr, [String "volgroup"; StringList "physvols"]), 40, [],
944 [InitEmpty, TestOutputList (
945 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
946 ["pvcreate"; "/dev/sda1"];
947 ["pvcreate"; "/dev/sda2"];
948 ["pvcreate"; "/dev/sda3"];
949 ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
950 ["vgcreate"; "VG2"; "/dev/sda3"];
951 ["vgs"]], ["VG1"; "VG2"])],
952 "create an LVM volume group",
954 This creates an LVM volume group called C<volgroup>
955 from the non-empty list of physical volumes C<physvols>.");
957 ("lvcreate", (RErr, [String "logvol"; String "volgroup"; Int "mbytes"]), 41, [],
958 [InitEmpty, TestOutputList (
959 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ",10 ,20 ,"];
960 ["pvcreate"; "/dev/sda1"];
961 ["pvcreate"; "/dev/sda2"];
962 ["pvcreate"; "/dev/sda3"];
963 ["vgcreate"; "VG1"; "/dev/sda1 /dev/sda2"];
964 ["vgcreate"; "VG2"; "/dev/sda3"];
965 ["lvcreate"; "LV1"; "VG1"; "50"];
966 ["lvcreate"; "LV2"; "VG1"; "50"];
967 ["lvcreate"; "LV3"; "VG2"; "50"];
968 ["lvcreate"; "LV4"; "VG2"; "50"];
969 ["lvcreate"; "LV5"; "VG2"; "50"];
971 ["/dev/VG1/LV1"; "/dev/VG1/LV2";
972 "/dev/VG2/LV3"; "/dev/VG2/LV4"; "/dev/VG2/LV5"])],
973 "create an LVM volume group",
975 This creates an LVM volume group called C<logvol>
976 on the volume group C<volgroup>, with C<size> megabytes.");
978 ("mkfs", (RErr, [String "fstype"; String "device"]), 42, [],
979 [InitEmpty, TestOutput (
980 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
981 ["mkfs"; "ext2"; "/dev/sda1"];
982 ["mount"; "/dev/sda1"; "/"];
983 ["write_file"; "/new"; "new file contents"; "0"];
984 ["cat"; "/new"]], "new file contents")],
987 This creates a filesystem on C<device> (usually a partition
988 of LVM logical volume). The filesystem type is C<fstype>, for
991 ("sfdisk", (RErr, [String "device";
992 Int "cyls"; Int "heads"; Int "sectors";
993 StringList "lines"]), 43, [DangerWillRobinson],
995 "create partitions on a block device",
997 This is a direct interface to the L<sfdisk(8)> program for creating
998 partitions on block devices.
1000 C<device> should be a block device, for example C</dev/sda>.
1002 C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads
1003 and sectors on the device, which are passed directly to sfdisk as
1004 the I<-C>, I<-H> and I<-S> parameters. If you pass C<0> for any
1005 of these, then the corresponding parameter is omitted. Usually for
1006 'large' disks, you can just pass C<0> for these, but for small
1007 (floppy-sized) disks, sfdisk (or rather, the kernel) cannot work
1008 out the right geometry and you will need to tell it.
1010 C<lines> is a list of lines that we feed to C<sfdisk>. For more
1011 information refer to the L<sfdisk(8)> manpage.
1013 To create a single partition occupying the whole disk, you would
1014 pass C<lines> as a single element list, when the single element being
1015 the string C<,> (comma).");
1017 ("write_file", (RErr, [String "path"; String "content"; Int "size"]), 44, [ProtocolLimitWarning],
1018 [InitBasicFS, TestOutput (
1019 [["write_file"; "/new"; "new file contents"; "0"];
1020 ["cat"; "/new"]], "new file contents");
1021 InitBasicFS, TestOutput (
1022 [["write_file"; "/new"; "\nnew file contents\n"; "0"];
1023 ["cat"; "/new"]], "\nnew file contents\n");
1024 InitBasicFS, TestOutput (
1025 [["write_file"; "/new"; "\n\n"; "0"];
1026 ["cat"; "/new"]], "\n\n");
1027 InitBasicFS, TestOutput (
1028 [["write_file"; "/new"; ""; "0"];
1029 ["cat"; "/new"]], "");
1030 InitBasicFS, TestOutput (
1031 [["write_file"; "/new"; "\n\n\n"; "0"];
1032 ["cat"; "/new"]], "\n\n\n");
1033 InitBasicFS, TestOutput (
1034 [["write_file"; "/new"; "\n"; "0"];
1035 ["cat"; "/new"]], "\n")],
1038 This call creates a file called C<path>. The contents of the
1039 file is the string C<content> (which can contain any 8 bit data),
1040 with length C<size>.
1042 As a special case, if C<size> is C<0>
1043 then the length is calculated using C<strlen> (so in this case
1044 the content cannot contain embedded ASCII NULs).");
1046 ("umount", (RErr, [String "pathordevice"]), 45, [FishAlias "unmount"],
1047 [InitEmpty, TestOutputList (
1048 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1049 ["mkfs"; "ext2"; "/dev/sda1"];
1050 ["mount"; "/dev/sda1"; "/"];
1051 ["mounts"]], ["/dev/sda1"]);
1052 InitEmpty, TestOutputList (
1053 [["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
1054 ["mkfs"; "ext2"; "/dev/sda1"];
1055 ["mount"; "/dev/sda1"; "/"];
1058 "unmount a filesystem",
1060 This unmounts the given filesystem. The filesystem may be
1061 specified either by its mountpoint (path) or the device which
1062 contains the filesystem.");
1064 ("mounts", (RStringList "devices", []), 46, [],
1065 [InitBasicFS, TestOutputList (
1066 [["mounts"]], ["/dev/sda1"])],
1067 "show mounted filesystems",
1069 This returns the list of currently mounted filesystems. It returns
1070 the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>).
1072 Some internal mounts are not shown.");
1074 ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"],
1075 [InitBasicFS, TestOutputList (
1078 "unmount all filesystems",
1080 This unmounts all mounted filesystems.
1082 Some internal mounts are not unmounted by this call.");
1084 ("lvm_remove_all", (RErr, []), 48, [DangerWillRobinson],
1086 "remove all LVM LVs, VGs and PVs",
1088 This command removes all LVM logical volumes, volume groups
1089 and physical volumes.");
1091 ("file", (RString "description", [String "path"]), 49, [],
1092 [InitBasicFS, TestOutput (
1094 ["file"; "/new"]], "empty");
1095 InitBasicFS, TestOutput (
1096 [["write_file"; "/new"; "some content\n"; "0"];
1097 ["file"; "/new"]], "ASCII text");
1098 InitBasicFS, TestLastFail (
1099 [["file"; "/nofile"]])],
1100 "determine file type",
1102 This call uses the standard L<file(1)> command to determine
1103 the type or contents of the file. This also works on devices,
1104 for example to find out whether a partition contains a filesystem.
1106 The exact command which runs is C<file -bsL path>. Note in
1107 particular that the filename is not prepended to the output
1108 (the C<-b> option).");
1110 ("command", (RString "output", [StringList "arguments"]), 50, [],
1111 [], (* XXX how to test? *)
1112 "run a command from the guest filesystem",
1114 This call runs a command from the guest filesystem. The
1115 filesystem must be mounted, and must contain a compatible
1116 operating system (ie. something Linux, with the same
1117 or compatible processor architecture).
1119 The single parameter is an argv-style list of arguments.
1120 The first element is the name of the program to run.
1121 Subsequent elements are parameters. The list must be
1122 non-empty (ie. must contain a program name).
1124 The C<$PATH> environment variable will contain at least
1125 C</usr/bin> and C</bin>. If you require a program from
1126 another location, you should provide the full path in the
1129 Shared libraries and data files required by the program
1130 must be available on filesystems which are mounted in the
1131 correct places. It is the caller's responsibility to ensure
1132 all filesystems that are needed are mounted at the right
1135 ("command_lines", (RStringList "lines", [StringList "arguments"]), 51, [],
1136 [], (* XXX how to test? *)
1137 "run a command, returning lines",
1139 This is the same as C<guestfs_command>, but splits the
1140 result into a list of lines.");
1142 ("stat", (RStat "statbuf", [String "path"]), 52, [],
1143 [InitBasicFS, TestOutputStruct (
1145 ["stat"; "/new"]], [CompareWithInt ("size", 0)])],
1146 "get file information",
1148 Returns file information for the given C<path>.
1150 This is the same as the C<stat(2)> system call.");
1152 ("lstat", (RStat "statbuf", [String "path"]), 53, [],
1153 [InitBasicFS, TestOutputStruct (
1155 ["lstat"; "/new"]], [CompareWithInt ("size", 0)])],
1156 "get file information for a symbolic link",
1158 Returns file information for the given C<path>.
1160 This is the same as C<guestfs_stat> except that if C<path>
1161 is a symbolic link, then the link is stat-ed, not the file it
1164 This is the same as the C<lstat(2)> system call.");
1166 ("statvfs", (RStatVFS "statbuf", [String "path"]), 54, [],
1167 [InitBasicFS, TestOutputStruct (
1168 [["statvfs"; "/"]], [CompareWithInt ("bfree", 487702);
1169 CompareWithInt ("blocks", 490020);
1170 CompareWithInt ("bsize", 1024)])],
1171 "get file system statistics",
1173 Returns file system statistics for any mounted file system.
1174 C<path> should be a file or directory in the mounted file system
1175 (typically it is the mount point itself, but it doesn't need to be).
1177 This is the same as the C<statvfs(2)> system call.");
1179 ("tune2fs_l", (RHashtable "superblock", [String "device"]), 55, [],
1181 "get ext2/ext3/ext4 superblock details",
1183 This returns the contents of the ext2, ext3 or ext4 filesystem
1184 superblock on C<device>.
1186 It is the same as running C<tune2fs -l device>. See L<tune2fs(8)>
1187 manpage for more details. The list of fields returned isn't
1188 clearly defined, and depends on both the version of C<tune2fs>
1189 that libguestfs was built against, and the filesystem itself.");
1191 ("blockdev_setro", (RErr, [String "device"]), 56, [],
1192 [InitEmpty, TestOutputTrue (
1193 [["blockdev_setro"; "/dev/sda"];
1194 ["blockdev_getro"; "/dev/sda"]])],
1195 "set block device to read-only",
1197 Sets the block device named C<device> to read-only.
1199 This uses the L<blockdev(8)> command.");
1201 ("blockdev_setrw", (RErr, [String "device"]), 57, [],
1202 [InitEmpty, TestOutputFalse (
1203 [["blockdev_setrw"; "/dev/sda"];
1204 ["blockdev_getro"; "/dev/sda"]])],
1205 "set block device to read-write",
1207 Sets the block device named C<device> to read-write.
1209 This uses the L<blockdev(8)> command.");
1211 ("blockdev_getro", (RBool "ro", [String "device"]), 58, [],
1212 [InitEmpty, TestOutputTrue (
1213 [["blockdev_setro"; "/dev/sda"];
1214 ["blockdev_getro"; "/dev/sda"]])],
1215 "is block device set to read-only",
1217 Returns a boolean indicating if the block device is read-only
1218 (true if read-only, false if not).
1220 This uses the L<blockdev(8)> command.");
1222 ("blockdev_getss", (RInt "sectorsize", [String "device"]), 59, [],
1223 [InitEmpty, TestOutputInt (
1224 [["blockdev_getss"; "/dev/sda"]], 512)],
1225 "get sectorsize of block device",
1227 This returns the size of sectors on a block device.
1228 Usually 512, but can be larger for modern devices.
1230 (Note, this is not the size in sectors, use C<guestfs_blockdev_getsz>
1233 This uses the L<blockdev(8)> command.");
1235 ("blockdev_getbsz", (RInt "blocksize", [String "device"]), 60, [],
1236 [InitEmpty, TestOutputInt (
1237 [["blockdev_getbsz"; "/dev/sda"]], 4096)],
1238 "get blocksize of block device",
1240 This returns the block size of a device.
1242 (Note this is different from both I<size in blocks> and
1243 I<filesystem block size>).
1245 This uses the L<blockdev(8)> command.");
1247 ("blockdev_setbsz", (RErr, [String "device"; Int "blocksize"]), 61, [],
1249 "set blocksize of block device",
1251 This sets the block size of a device.
1253 (Note this is different from both I<size in blocks> and
1254 I<filesystem block size>).
1256 This uses the L<blockdev(8)> command.");
1258 ("blockdev_getsz", (RInt64 "sizeinsectors", [String "device"]), 62, [],
1259 [InitEmpty, TestOutputInt (
1260 [["blockdev_getsz"; "/dev/sda"]], 1024000)],
1261 "get total size of device in 512-byte sectors",
1263 This returns the size of the device in units of 512-byte sectors
1264 (even if the sectorsize isn't 512 bytes ... weird).
1266 See also C<guestfs_blockdev_getss> for the real sector size of
1267 the device, and C<guestfs_blockdev_getsize64> for the more
1268 useful I<size in bytes>.
1270 This uses the L<blockdev(8)> command.");
1272 ("blockdev_getsize64", (RInt64 "sizeinbytes", [String "device"]), 63, [],
1273 [InitEmpty, TestOutputInt (
1274 [["blockdev_getsize64"; "/dev/sda"]], 524288000)],
1275 "get total size of device in bytes",
1277 This returns the size of the device in bytes.
1279 See also C<guestfs_blockdev_getsz>.
1281 This uses the L<blockdev(8)> command.");
1283 ("blockdev_flushbufs", (RErr, [String "device"]), 64, [],
1285 [["blockdev_flushbufs"; "/dev/sda"]]],
1286 "flush device buffers",
1288 This tells the kernel to flush internal buffers associated
1291 This uses the L<blockdev(8)> command.");
1293 ("blockdev_rereadpt", (RErr, [String "device"]), 65, [],
1295 [["blockdev_rereadpt"; "/dev/sda"]]],
1296 "reread partition table",
1298 Reread the partition table on C<device>.
1300 This uses the L<blockdev(8)> command.");
1302 ("upload", (RErr, [FileIn "filename"; String "remotefilename"]), 66, [],
1303 [InitBasicFS, TestOutput (
1304 (* Pick a file from cwd which isn't likely to change. *)
1305 [["upload"; "COPYING.LIB"; "/COPYING.LIB"];
1306 ["checksum"; "md5"; "/COPYING.LIB"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1307 "upload a file from the local machine",
1309 Upload local file C<filename> to C<remotefilename> on the
1312 C<filename> can also be a named pipe.
1314 See also C<guestfs_download>.");
1316 ("download", (RErr, [String "remotefilename"; FileOut "filename"]), 67, [],
1317 [InitBasicFS, TestOutput (
1318 (* Pick a file from cwd which isn't likely to change. *)
1319 [["upload"; "COPYING.LIB"; "/COPYING.LIB"];
1320 ["download"; "/COPYING.LIB"; "testdownload.tmp"];
1321 ["upload"; "testdownload.tmp"; "/upload"];
1322 ["checksum"; "md5"; "/upload"]], "e3eda01d9815f8d24aae2dbd89b68b06")],
1323 "download a file to the local machine",
1325 Download file C<remotefilename> and save it as C<filename>
1326 on the local machine.
1328 C<filename> can also be a named pipe.
1330 See also C<guestfs_upload>, C<guestfs_cat>.");
1332 ("checksum", (RString "checksum", [String "csumtype"; String "path"]), 68, [],
1333 [InitBasicFS, TestOutput (
1334 [["write_file"; "/new"; "test\n"; "0"];
1335 ["checksum"; "crc"; "/new"]], "935282863");
1336 InitBasicFS, TestLastFail (
1337 [["checksum"; "crc"; "/new"]]);
1338 InitBasicFS, TestOutput (
1339 [["write_file"; "/new"; "test\n"; "0"];
1340 ["checksum"; "md5"; "/new"]], "d8e8fca2dc0f896fd7cb4cb0031ba249");
1341 InitBasicFS, TestOutput (
1342 [["write_file"; "/new"; "test\n"; "0"];
1343 ["checksum"; "sha1"; "/new"]], "4e1243bd22c66e76c2ba9eddc1f91394e57f9f83");
1344 InitBasicFS, TestOutput (
1345 [["write_file"; "/new"; "test\n"; "0"];
1346 ["checksum"; "sha224"; "/new"]], "52f1bf093f4b7588726035c176c0cdb4376cfea53819f1395ac9e6ec");
1347 InitBasicFS, TestOutput (
1348 [["write_file"; "/new"; "test\n"; "0"];
1349 ["checksum"; "sha256"; "/new"]], "f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2");
1350 InitBasicFS, TestOutput (
1351 [["write_file"; "/new"; "test\n"; "0"];
1352 ["checksum"; "sha384"; "/new"]], "109bb6b5b6d5547c1ce03c7a8bd7d8f80c1cb0957f50c4f7fda04692079917e4f9cad52b878f3d8234e1a170b154b72d");
1353 InitBasicFS, TestOutput (
1354 [["write_file"; "/new"; "test\n"; "0"];
1355 ["checksum"; "sha512"; "/new"]], "0e3e75234abc68f4378a86b3f4b32a198ba301845b0cd6e50106e874345700cc6663a86c1ea125dc5e92be17c98f9a0f85ca9d5f595db2012f7cc3571945c123")],
1356 "compute MD5, SHAx or CRC checksum of file",
1358 This call computes the MD5, SHAx or CRC checksum of the
1361 The type of checksum to compute is given by the C<csumtype>
1362 parameter which must have one of the following values:
1368 Compute the cyclic redundancy check (CRC) specified by POSIX
1369 for the C<cksum> command.
1373 Compute the MD5 hash (using the C<md5sum> program).
1377 Compute the SHA1 hash (using the C<sha1sum> program).
1381 Compute the SHA224 hash (using the C<sha224sum> program).
1385 Compute the SHA256 hash (using the C<sha256sum> program).
1389 Compute the SHA384 hash (using the C<sha384sum> program).
1393 Compute the SHA512 hash (using the C<sha512sum> program).
1397 The checksum is returned as a printable string.");
1399 ("tar_in", (RErr, [FileIn "tarfile"; String "directory"]), 69, [],
1400 [InitBasicFS, TestOutput (
1401 [["tar_in"; "images/helloworld.tar"; "/"];
1402 ["cat"; "/hello"]], "hello\n")],
1403 "unpack tarfile to directory",
1405 This command uploads and unpacks local file C<tarfile> (an
1406 I<uncompressed> tar file) into C<directory>.
1408 To upload a compressed tarball, use C<guestfs_tgz_in>.");
1410 ("tar_out", (RErr, [String "directory"; FileOut "tarfile"]), 70, [],
1412 "pack directory into tarfile",
1414 This command packs the contents of C<directory> and downloads
1415 it to local file C<tarfile>.
1417 To download a compressed tarball, use C<guestfs_tgz_out>.");
1419 ("tgz_in", (RErr, [FileIn "tarball"; String "directory"]), 71, [],
1420 [InitBasicFS, TestOutput (
1421 [["tgz_in"; "images/helloworld.tar.gz"; "/"];
1422 ["cat"; "/hello"]], "hello\n")],
1423 "unpack compressed tarball to directory",
1425 This command uploads and unpacks local file C<tarball> (a
1426 I<gzip compressed> tar file) into C<directory>.
1428 To upload an uncompressed tarball, use C<guestfs_tar_in>.");
1430 ("tgz_out", (RErr, [String "directory"; FileOut "tarball"]), 72, [],
1432 "pack directory into compressed tarball",
1434 This command packs the contents of C<directory> and downloads
1435 it to local file C<tarball>.
1437 To download an uncompressed tarball, use C<guestfs_tar_out>.");
1439 ("mount_ro", (RErr, [String "device"; String "mountpoint"]), 73, [],
1440 [InitBasicFS, TestLastFail (
1442 ["mount_ro"; "/dev/sda1"; "/"];
1443 ["touch"; "/new"]]);
1444 InitBasicFS, TestOutput (
1445 [["write_file"; "/new"; "data"; "0"];
1447 ["mount_ro"; "/dev/sda1"; "/"];
1448 ["cat"; "/new"]], "data")],
1449 "mount a guest disk, read-only",
1451 This is the same as the C<guestfs_mount> command, but it
1452 mounts the filesystem with the read-only (I<-o ro>) flag.");
1454 ("mount_options", (RErr, [String "options"; String "device"; String "mountpoint"]), 74, [],
1456 "mount a guest disk with mount options",
1458 This is the same as the C<guestfs_mount> command, but it
1459 allows you to set the mount options as for the
1460 L<mount(8)> I<-o> flag.");
1462 ("mount_vfs", (RErr, [String "options"; String "vfstype"; String "device"; String "mountpoint"]), 75, [],
1464 "mount a guest disk with mount options and vfstype",
1466 This is the same as the C<guestfs_mount> command, but it
1467 allows you to set both the mount options and the vfstype
1468 as for the L<mount(8)> I<-o> and I<-t> flags.");
1470 ("debug", (RString "result", [String "subcmd"; StringList "extraargs"]), 76, [],
1472 "debugging and internals",
1474 The C<guestfs_debug> command exposes some internals of
1475 C<guestfsd> (the guestfs daemon) that runs inside the
1478 There is no comprehensive help for this command. You have
1479 to look at the file C<daemon/debug.c> in the libguestfs source
1480 to find out what you can do.");
1482 ("lvremove", (RErr, [String "device"]), 77, [],
1483 [InitEmpty, TestOutputList (
1484 [["pvcreate"; "/dev/sda"];
1485 ["vgcreate"; "VG"; "/dev/sda"];
1486 ["lvcreate"; "LV1"; "VG"; "50"];
1487 ["lvcreate"; "LV2"; "VG"; "50"];
1488 ["lvremove"; "/dev/VG/LV1"];
1489 ["lvs"]], ["/dev/VG/LV2"]);
1490 InitEmpty, TestOutputList (
1491 [["pvcreate"; "/dev/sda"];
1492 ["vgcreate"; "VG"; "/dev/sda"];
1493 ["lvcreate"; "LV1"; "VG"; "50"];
1494 ["lvcreate"; "LV2"; "VG"; "50"];
1495 ["lvremove"; "/dev/VG"];
1497 InitEmpty, TestOutputList (
1498 [["pvcreate"; "/dev/sda"];
1499 ["vgcreate"; "VG"; "/dev/sda"];
1500 ["lvcreate"; "LV1"; "VG"; "50"];
1501 ["lvcreate"; "LV2"; "VG"; "50"];
1502 ["lvremove"; "/dev/VG"];
1504 "remove an LVM logical volume",
1506 Remove an LVM logical volume C<device>, where C<device> is
1507 the path to the LV, such as C</dev/VG/LV>.
1509 You can also remove all LVs in a volume group by specifying
1510 the VG name, C</dev/VG>.");
1512 ("vgremove", (RErr, [String "vgname"]), 78, [],
1513 [InitEmpty, TestOutputList (
1514 [["pvcreate"; "/dev/sda"];
1515 ["vgcreate"; "VG"; "/dev/sda"];
1516 ["lvcreate"; "LV1"; "VG"; "50"];
1517 ["lvcreate"; "LV2"; "VG"; "50"];
1520 InitEmpty, TestOutputList (
1521 [["pvcreate"; "/dev/sda"];
1522 ["vgcreate"; "VG"; "/dev/sda"];
1523 ["lvcreate"; "LV1"; "VG"; "50"];
1524 ["lvcreate"; "LV2"; "VG"; "50"];
1527 "remove an LVM volume group",
1529 Remove an LVM volume group C<vgname>, (for example C<VG>).
1531 This also forcibly removes all logical volumes in the volume
1534 ("pvremove", (RErr, [String "device"]), 79, [],
1535 [InitEmpty, TestOutputList (
1536 [["pvcreate"; "/dev/sda"];
1537 ["vgcreate"; "VG"; "/dev/sda"];
1538 ["lvcreate"; "LV1"; "VG"; "50"];
1539 ["lvcreate"; "LV2"; "VG"; "50"];
1541 ["pvremove"; "/dev/sda"];
1543 InitEmpty, TestOutputList (
1544 [["pvcreate"; "/dev/sda"];
1545 ["vgcreate"; "VG"; "/dev/sda"];
1546 ["lvcreate"; "LV1"; "VG"; "50"];
1547 ["lvcreate"; "LV2"; "VG"; "50"];
1549 ["pvremove"; "/dev/sda"];
1551 InitEmpty, TestOutputList (
1552 [["pvcreate"; "/dev/sda"];
1553 ["vgcreate"; "VG"; "/dev/sda"];
1554 ["lvcreate"; "LV1"; "VG"; "50"];
1555 ["lvcreate"; "LV2"; "VG"; "50"];
1557 ["pvremove"; "/dev/sda"];
1559 "remove an LVM physical volume",
1561 This wipes a physical volume C<device> so that LVM will no longer
1564 The implementation uses the C<pvremove> command which refuses to
1565 wipe physical volumes that contain any volume groups, so you have
1566 to remove those first.");
1568 ("set_e2label", (RErr, [String "device"; String "label"]), 80, [],
1569 [InitBasicFS, TestOutput (
1570 [["set_e2label"; "/dev/sda1"; "testlabel"];
1571 ["get_e2label"; "/dev/sda1"]], "testlabel")],
1572 "set the ext2/3/4 filesystem label",
1574 This sets the ext2/3/4 filesystem label of the filesystem on
1575 C<device> to C<label>. Filesystem labels are limited to
1578 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label>
1579 to return the existing label on a filesystem.");
1581 ("get_e2label", (RString "label", [String "device"]), 81, [],
1583 "get the ext2/3/4 filesystem label",
1585 This returns the ext2/3/4 filesystem label of the filesystem on
1588 ("set_e2uuid", (RErr, [String "device"; String "uuid"]), 82, [],
1589 [InitBasicFS, TestOutput (
1590 [["set_e2uuid"; "/dev/sda1"; "a3a61220-882b-4f61-89f4-cf24dcc7297d"];
1591 ["get_e2uuid"; "/dev/sda1"]], "a3a61220-882b-4f61-89f4-cf24dcc7297d");
1592 InitBasicFS, TestOutput (
1593 [["set_e2uuid"; "/dev/sda1"; "clear"];
1594 ["get_e2uuid"; "/dev/sda1"]], "");
1595 (* We can't predict what UUIDs will be, so just check the commands run. *)
1596 InitBasicFS, TestRun (
1597 [["set_e2uuid"; "/dev/sda1"; "random"]]);
1598 InitBasicFS, TestRun (
1599 [["set_e2uuid"; "/dev/sda1"; "time"]])],
1600 "set the ext2/3/4 filesystem UUID",
1602 This sets the ext2/3/4 filesystem UUID of the filesystem on
1603 C<device> to C<uuid>. The format of the UUID and alternatives
1604 such as C<clear>, C<random> and C<time> are described in the
1605 L<tune2fs(8)> manpage.
1607 You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid>
1608 to return the existing UUID of a filesystem.");
1610 ("get_e2uuid", (RString "uuid", [String "device"]), 83, [],
1612 "get the ext2/3/4 filesystem UUID",
1614 This returns the ext2/3/4 filesystem UUID of the filesystem on
1619 let all_functions = non_daemon_functions @ daemon_functions
1621 (* In some places we want the functions to be displayed sorted
1622 * alphabetically, so this is useful:
1624 let all_functions_sorted =
1625 List.sort (fun (n1,_,_,_,_,_,_) (n2,_,_,_,_,_,_) ->
1626 compare n1 n2) all_functions
1628 (* Column names and types from LVM PVs/VGs/LVs. *)
1637 "pv_attr", `String (* XXX *);
1638 "pv_pe_count", `Int;
1639 "pv_pe_alloc_count", `Int;
1642 "pv_mda_count", `Int;
1643 "pv_mda_free", `Bytes;
1644 (* Not in Fedora 10:
1645 "pv_mda_size", `Bytes;
1652 "vg_attr", `String (* XXX *);
1655 "vg_sysid", `String;
1656 "vg_extent_size", `Bytes;
1657 "vg_extent_count", `Int;
1658 "vg_free_count", `Int;
1666 "vg_mda_count", `Int;
1667 "vg_mda_free", `Bytes;
1668 (* Not in Fedora 10:
1669 "vg_mda_size", `Bytes;
1675 "lv_attr", `String (* XXX *);
1678 "lv_kernel_major", `Int;
1679 "lv_kernel_minor", `Int;
1683 "snap_percent", `OptPercent;
1684 "copy_percent", `OptPercent;
1687 "mirror_log", `String;
1691 (* Column names and types from stat structures.
1692 * NB. Can't use things like 'st_atime' because glibc header files
1693 * define some of these as macros. Ugh.
1710 let statvfs_cols = [
1724 (* Useful functions.
1725 * Note we don't want to use any external OCaml libraries which
1726 * makes this a bit harder than it should be.
1728 let failwithf fs = ksprintf failwith fs
1730 let replace_char s c1 c2 =
1731 let s2 = String.copy s in
1732 let r = ref false in
1733 for i = 0 to String.length s2 - 1 do
1734 if String.unsafe_get s2 i = c1 then (
1735 String.unsafe_set s2 i c2;
1739 if not !r then s else s2
1743 (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
1745 let triml ?(test = isspace) str =
1747 let n = ref (String.length str) in
1748 while !n > 0 && test str.[!i]; do
1753 else String.sub str !i !n
1755 let trimr ?(test = isspace) str =
1756 let n = ref (String.length str) in
1757 while !n > 0 && test str.[!n-1]; do
1760 if !n = String.length str then str
1761 else String.sub str 0 !n
1763 let trim ?(test = isspace) str =
1764 trimr ~test (triml ~test str)
1766 let rec find s sub =
1767 let len = String.length s in
1768 let sublen = String.length sub in
1770 if i <= len-sublen then (
1772 if j < sublen then (
1773 if s.[i+j] = sub.[j] then loop2 (j+1)
1779 if r = -1 then loop (i+1) else r
1785 let rec replace_str s s1 s2 =
1786 let len = String.length s in
1787 let sublen = String.length s1 in
1788 let i = find s s1 in
1791 let s' = String.sub s 0 i in
1792 let s'' = String.sub s (i+sublen) (len-i-sublen) in
1793 s' ^ s2 ^ replace_str s'' s1 s2
1796 let rec string_split sep str =
1797 let len = String.length str in
1798 let seplen = String.length sep in
1799 let i = find str sep in
1800 if i = -1 then [str]
1802 let s' = String.sub str 0 i in
1803 let s'' = String.sub str (i+seplen) (len-i-seplen) in
1804 s' :: string_split sep s''
1807 let rec find_map f = function
1808 | [] -> raise Not_found
1812 | None -> find_map f xs
1815 let rec loop i = function
1817 | x :: xs -> f i x; loop (i+1) xs
1822 let rec loop i = function
1824 | x :: xs -> let r = f i x in r :: loop (i+1) xs
1828 let name_of_argt = function
1829 | String n | OptString n | StringList n | Bool n | Int n
1830 | FileIn n | FileOut n -> n
1832 let seq_of_test = function
1833 | TestRun s | TestOutput (s, _) | TestOutputList (s, _)
1834 | TestOutputInt (s, _) | TestOutputTrue s | TestOutputFalse s
1835 | TestOutputLength (s, _) | TestOutputStruct (s, _)
1836 | TestLastFail s -> s
1838 (* Check function names etc. for consistency. *)
1839 let check_functions () =
1840 let contains_uppercase str =
1841 let len = String.length str in
1843 if i >= len then false
1846 if c >= 'A' && c <= 'Z' then true
1853 (* Check function names. *)
1855 fun (name, _, _, _, _, _, _) ->
1856 if String.length name >= 7 && String.sub name 0 7 = "guestfs" then
1857 failwithf "function name %s does not need 'guestfs' prefix" name;
1858 if contains_uppercase name then
1859 failwithf "function name %s should not contain uppercase chars" name;
1860 if String.contains name '-' then
1861 failwithf "function name %s should not contain '-', use '_' instead."
1865 (* Check function parameter/return names. *)
1867 fun (name, style, _, _, _, _, _) ->
1868 let check_arg_ret_name n =
1869 if contains_uppercase n then
1870 failwithf "%s param/ret %s should not contain uppercase chars"
1872 if String.contains n '-' || String.contains n '_' then
1873 failwithf "%s param/ret %s should not contain '-' or '_'"
1876 failwithf "%s has a param/ret called 'value', which causes conflicts in the OCaml bindings, use something like 'val' or a more descriptive name" n;
1877 if n = "argv" || n = "args" then
1878 failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" n
1881 (match fst style with
1883 | RInt n | RInt64 n | RBool n | RConstString n | RString n
1884 | RStringList n | RPVList n | RVGList n | RLVList n
1885 | RStat n | RStatVFS n
1887 check_arg_ret_name n
1889 check_arg_ret_name n;
1890 check_arg_ret_name m
1892 List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
1895 (* Check short descriptions. *)
1897 fun (name, _, _, _, _, shortdesc, _) ->
1898 if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
1899 failwithf "short description of %s should begin with lowercase." name;
1900 let c = shortdesc.[String.length shortdesc-1] in
1901 if c = '\n' || c = '.' then
1902 failwithf "short description of %s should not end with . or \\n." name
1905 (* Check long dscriptions. *)
1907 fun (name, _, _, _, _, _, longdesc) ->
1908 if longdesc.[String.length longdesc-1] = '\n' then
1909 failwithf "long description of %s should not end with \\n." name
1912 (* Check proc_nrs. *)
1914 fun (name, _, proc_nr, _, _, _, _) ->
1915 if proc_nr <= 0 then
1916 failwithf "daemon function %s should have proc_nr > 0" name
1920 fun (name, _, proc_nr, _, _, _, _) ->
1921 if proc_nr <> -1 then
1922 failwithf "non-daemon function %s should have proc_nr -1" name
1923 ) non_daemon_functions;
1926 List.map (fun (name, _, proc_nr, _, _, _, _) -> name, proc_nr)
1929 List.sort (fun (_,nr1) (_,nr2) -> compare nr1 nr2) proc_nrs in
1930 let rec loop = function
1933 | (name1,nr1) :: ((name2,nr2) :: _ as rest) when nr1 < nr2 ->
1935 | (name1,nr1) :: (name2,nr2) :: _ ->
1936 failwithf "%s and %s have conflicting procedure numbers (%d, %d)"
1944 (* Ignore functions that have no tests. We generate a
1945 * warning when the user does 'make check' instead.
1947 | name, _, _, _, [], _, _ -> ()
1948 | name, _, _, _, tests, _, _ ->
1952 match seq_of_test test with
1954 failwithf "%s has a test containing an empty sequence" name
1955 | cmds -> List.map List.hd cmds
1957 let funcs = List.flatten funcs in
1959 let tested = List.mem name funcs in
1962 failwithf "function %s has tests but does not test itself" name
1965 (* 'pr' prints to the current output file. *)
1966 let chan = ref stdout
1967 let pr fs = ksprintf (output_string !chan) fs
1969 (* Generate a header block in a number of standard styles. *)
1970 type comment_style = CStyle | HashStyle | OCamlStyle
1971 type license = GPLv2 | LGPLv2
1973 let generate_header comment license =
1974 let c = match comment with
1975 | CStyle -> pr "/* "; " *"
1976 | HashStyle -> pr "# "; "#"
1977 | OCamlStyle -> pr "(* "; " *" in
1978 pr "libguestfs generated file\n";
1979 pr "%s WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.\n" c;
1980 pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
1982 pr "%s Copyright (C) 2009 Red Hat Inc.\n" c;
1986 pr "%s This program is free software; you can redistribute it and/or modify\n" c;
1987 pr "%s it under the terms of the GNU General Public License as published by\n" c;
1988 pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
1989 pr "%s (at your option) any later version.\n" c;
1991 pr "%s This program is distributed in the hope that it will be useful,\n" c;
1992 pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
1993 pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" c;
1994 pr "%s GNU General Public License for more details.\n" c;
1996 pr "%s You should have received a copy of the GNU General Public License along\n" c;
1997 pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
1998 pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
2001 pr "%s This library is free software; you can redistribute it and/or\n" c;
2002 pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
2003 pr "%s License as published by the Free Software Foundation; either\n" c;
2004 pr "%s version 2 of the License, or (at your option) any later version.\n" c;
2006 pr "%s This library is distributed in the hope that it will be useful,\n" c;
2007 pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
2008 pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" c;
2009 pr "%s Lesser General Public License for more details.\n" c;
2011 pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
2012 pr "%s License along with this library; if not, write to the Free Software\n" c;
2013 pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
2016 | CStyle -> pr " */\n"
2018 | OCamlStyle -> pr " *)\n"
2022 (* Start of main code generation functions below this line. *)
2024 (* Generate the pod documentation for the C API. *)
2025 let rec generate_actions_pod () =
2027 fun (shortname, style, _, flags, _, _, longdesc) ->
2028 let name = "guestfs_" ^ shortname in
2029 pr "=head2 %s\n\n" name;
2031 generate_prototype ~extern:false ~handle:"handle" name style;
2033 pr "%s\n\n" longdesc;
2034 (match fst style with
2036 pr "This function returns 0 on success or -1 on error.\n\n"
2038 pr "On error this function returns -1.\n\n"
2040 pr "On error this function returns -1.\n\n"
2042 pr "This function returns a C truth value on success or -1 on error.\n\n"
2044 pr "This function returns a string, or NULL on error.
2045 The string is owned by the guest handle and must I<not> be freed.\n\n"
2047 pr "This function returns a string, or NULL on error.
2048 I<The caller must free the returned string after use>.\n\n"
2050 pr "This function returns a NULL-terminated array of strings
2051 (like L<environ(3)>), or NULL if there was an error.
2052 I<The caller must free the strings and the array after use>.\n\n"
2054 pr "This function returns a C<struct guestfs_int_bool *>,
2055 or NULL if there was an error.
2056 I<The caller must call C<guestfs_free_int_bool> after use>.\n\n"
2058 pr "This function returns a C<struct guestfs_lvm_pv_list *>
2059 (see E<lt>guestfs-structs.hE<gt>),
2060 or NULL if there was an error.
2061 I<The caller must call C<guestfs_free_lvm_pv_list> after use>.\n\n"
2063 pr "This function returns a C<struct guestfs_lvm_vg_list *>
2064 (see E<lt>guestfs-structs.hE<gt>),
2065 or NULL if there was an error.
2066 I<The caller must call C<guestfs_free_lvm_vg_list> after use>.\n\n"
2068 pr "This function returns a C<struct guestfs_lvm_lv_list *>
2069 (see E<lt>guestfs-structs.hE<gt>),
2070 or NULL if there was an error.
2071 I<The caller must call C<guestfs_free_lvm_lv_list> after use>.\n\n"
2073 pr "This function returns a C<struct guestfs_stat *>
2074 (see L<stat(2)> and E<lt>guestfs-structs.hE<gt>),
2075 or NULL if there was an error.
2076 I<The caller must call C<free> after use>.\n\n"
2078 pr "This function returns a C<struct guestfs_statvfs *>
2079 (see L<statvfs(2)> and E<lt>guestfs-structs.hE<gt>),
2080 or NULL if there was an error.
2081 I<The caller must call C<free> after use>.\n\n"
2083 pr "This function returns a NULL-terminated array of
2084 strings, or NULL if there was an error.
2085 The array of strings will always have length C<2n+1>, where
2086 C<n> keys and values alternate, followed by the trailing NULL entry.
2087 I<The caller must free the strings and the array after use>.\n\n"
2089 if List.mem ProtocolLimitWarning flags then
2090 pr "%s\n\n" protocol_limit_warning;
2091 if List.mem DangerWillRobinson flags then
2092 pr "%s\n\n" danger_will_robinson;
2093 ) all_functions_sorted
2095 and generate_structs_pod () =
2096 (* LVM structs documentation. *)
2099 pr "=head2 guestfs_lvm_%s\n" typ;
2101 pr " struct guestfs_lvm_%s {\n" typ;
2104 | name, `String -> pr " char *%s;\n" name
2106 pr " /* The next field is NOT nul-terminated, be careful when printing it: */\n";
2107 pr " char %s[32];\n" name
2108 | name, `Bytes -> pr " uint64_t %s;\n" name
2109 | name, `Int -> pr " int64_t %s;\n" name
2110 | name, `OptPercent ->
2111 pr " /* The next field is [0..100] or -1 meaning 'not present': */\n";
2112 pr " float %s;\n" name
2115 pr " struct guestfs_lvm_%s_list {\n" typ;
2116 pr " uint32_t len; /* Number of elements in list. */\n";
2117 pr " struct guestfs_lvm_%s *val; /* Elements. */\n" typ;
2120 pr " void guestfs_free_lvm_%s_list (struct guestfs_free_lvm_%s_list *);\n"
2123 ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
2125 (* Generate the protocol (XDR) file, 'guestfs_protocol.x' and
2126 * indirectly 'guestfs_protocol.h' and 'guestfs_protocol.c'.
2128 * We have to use an underscore instead of a dash because otherwise
2129 * rpcgen generates incorrect code.
2131 * This header is NOT exported to clients, but see also generate_structs_h.
2133 and generate_xdr () =
2134 generate_header CStyle LGPLv2;
2136 (* This has to be defined to get around a limitation in Sun's rpcgen. *)
2137 pr "typedef string str<>;\n";
2140 (* LVM internal structures. *)
2144 pr "struct guestfs_lvm_int_%s {\n" typ;
2146 | name, `String -> pr " string %s<>;\n" name
2147 | name, `UUID -> pr " opaque %s[32];\n" name
2148 | name, `Bytes -> pr " hyper %s;\n" name
2149 | name, `Int -> pr " hyper %s;\n" name
2150 | name, `OptPercent -> pr " float %s;\n" name
2154 pr "typedef struct guestfs_lvm_int_%s guestfs_lvm_int_%s_list<>;\n" typ typ;
2156 ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
2158 (* Stat internal structures. *)
2162 pr "struct guestfs_int_%s {\n" typ;
2164 | name, `Int -> pr " hyper %s;\n" name
2168 ) ["stat", stat_cols; "statvfs", statvfs_cols];
2171 fun (shortname, style, _, _, _, _, _) ->
2172 let name = "guestfs_" ^ shortname in
2174 (match snd style with
2177 pr "struct %s_args {\n" name;
2180 | String n -> pr " string %s<>;\n" n
2181 | OptString n -> pr " str *%s;\n" n
2182 | StringList n -> pr " str %s<>;\n" n
2183 | Bool n -> pr " bool %s;\n" n
2184 | Int n -> pr " int %s;\n" n
2185 | FileIn _ | FileOut _ -> ()
2189 (match fst style with
2192 pr "struct %s_ret {\n" name;
2196 pr "struct %s_ret {\n" name;
2197 pr " hyper %s;\n" n;
2200 pr "struct %s_ret {\n" name;
2204 failwithf "RConstString cannot be returned from a daemon function"
2206 pr "struct %s_ret {\n" name;
2207 pr " string %s<>;\n" n;
2210 pr "struct %s_ret {\n" name;
2211 pr " str %s<>;\n" n;
2214 pr "struct %s_ret {\n" name;
2219 pr "struct %s_ret {\n" name;
2220 pr " guestfs_lvm_int_pv_list %s;\n" n;
2223 pr "struct %s_ret {\n" name;
2224 pr " guestfs_lvm_int_vg_list %s;\n" n;
2227 pr "struct %s_ret {\n" name;
2228 pr " guestfs_lvm_int_lv_list %s;\n" n;
2231 pr "struct %s_ret {\n" name;
2232 pr " guestfs_int_stat %s;\n" n;
2235 pr "struct %s_ret {\n" name;
2236 pr " guestfs_int_statvfs %s;\n" n;
2239 pr "struct %s_ret {\n" name;
2240 pr " str %s<>;\n" n;
2245 (* Table of procedure numbers. *)
2246 pr "enum guestfs_procedure {\n";
2248 fun (shortname, _, proc_nr, _, _, _, _) ->
2249 pr " GUESTFS_PROC_%s = %d,\n" (String.uppercase shortname) proc_nr
2251 pr " GUESTFS_PROC_NR_PROCS\n";
2255 (* Having to choose a maximum message size is annoying for several
2256 * reasons (it limits what we can do in the API), but it (a) makes
2257 * the protocol a lot simpler, and (b) provides a bound on the size
2258 * of the daemon which operates in limited memory space. For large
2259 * file transfers you should use FTP.
2261 pr "const GUESTFS_MESSAGE_MAX = %d;\n" (4 * 1024 * 1024);
2264 (* Message header, etc. *)
2266 /* The communication protocol is now documented in the guestfs(3)
2270 const GUESTFS_PROGRAM = 0x2000F5F5;
2271 const GUESTFS_PROTOCOL_VERSION = 1;
2273 /* These constants must be larger than any possible message length. */
2274 const GUESTFS_LAUNCH_FLAG = 0xf5f55ff5;
2275 const GUESTFS_CANCEL_FLAG = 0xffffeeee;
2277 enum guestfs_message_direction {
2278 GUESTFS_DIRECTION_CALL = 0, /* client -> daemon */
2279 GUESTFS_DIRECTION_REPLY = 1 /* daemon -> client */
2282 enum guestfs_message_status {
2283 GUESTFS_STATUS_OK = 0,
2284 GUESTFS_STATUS_ERROR = 1
2287 const GUESTFS_ERROR_LEN = 256;
2289 struct guestfs_message_error {
2290 string error_message<GUESTFS_ERROR_LEN>;
2293 struct guestfs_message_header {
2294 unsigned prog; /* GUESTFS_PROGRAM */
2295 unsigned vers; /* GUESTFS_PROTOCOL_VERSION */
2296 guestfs_procedure proc; /* GUESTFS_PROC_x */
2297 guestfs_message_direction direction;
2298 unsigned serial; /* message serial number */
2299 guestfs_message_status status;
2302 const GUESTFS_MAX_CHUNK_SIZE = 8192;
2304 struct guestfs_chunk {
2305 int cancel; /* if non-zero, transfer is cancelled */
2306 /* data size is 0 bytes if the transfer has finished successfully */
2307 opaque data<GUESTFS_MAX_CHUNK_SIZE>;
2311 (* Generate the guestfs-structs.h file. *)
2312 and generate_structs_h () =
2313 generate_header CStyle LGPLv2;
2315 (* This is a public exported header file containing various
2316 * structures. The structures are carefully written to have
2317 * exactly the same in-memory format as the XDR structures that
2318 * we use on the wire to the daemon. The reason for creating
2319 * copies of these structures here is just so we don't have to
2320 * export the whole of guestfs_protocol.h (which includes much
2321 * unrelated and XDR-dependent stuff that we don't want to be
2322 * public, or required by clients).
2324 * To reiterate, we will pass these structures to and from the
2325 * client with a simple assignment or memcpy, so the format
2326 * must be identical to what rpcgen / the RFC defines.
2329 (* guestfs_int_bool structure. *)
2330 pr "struct guestfs_int_bool {\n";
2336 (* LVM public structures. *)
2340 pr "struct guestfs_lvm_%s {\n" typ;
2343 | name, `String -> pr " char *%s;\n" name
2344 | name, `UUID -> pr " char %s[32]; /* this is NOT nul-terminated, be careful when printing */\n" name
2345 | name, `Bytes -> pr " uint64_t %s;\n" name
2346 | name, `Int -> pr " int64_t %s;\n" name
2347 | name, `OptPercent -> pr " float %s; /* [0..100] or -1 */\n" name
2351 pr "struct guestfs_lvm_%s_list {\n" typ;
2352 pr " uint32_t len;\n";
2353 pr " struct guestfs_lvm_%s *val;\n" typ;
2356 ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols];
2358 (* Stat structures. *)
2362 pr "struct guestfs_%s {\n" typ;
2365 | name, `Int -> pr " int64_t %s;\n" name
2369 ) ["stat", stat_cols; "statvfs", statvfs_cols]
2371 (* Generate the guestfs-actions.h file. *)
2372 and generate_actions_h () =
2373 generate_header CStyle LGPLv2;
2375 fun (shortname, style, _, _, _, _, _) ->
2376 let name = "guestfs_" ^ shortname in
2377 generate_prototype ~single_line:true ~newline:true ~handle:"handle"
2381 (* Generate the client-side dispatch stubs. *)
2382 and generate_client_actions () =
2383 generate_header CStyle LGPLv2;
2389 #include \"guestfs.h\"
2390 #include \"guestfs_protocol.h\"
2392 #define error guestfs_error
2393 #define perrorf guestfs_perrorf
2394 #define safe_malloc guestfs_safe_malloc
2395 #define safe_realloc guestfs_safe_realloc
2396 #define safe_strdup guestfs_safe_strdup
2397 #define safe_memdup guestfs_safe_memdup
2399 /* Check the return message from a call for validity. */
2401 check_reply_header (guestfs_h *g,
2402 const struct guestfs_message_header *hdr,
2403 int proc_nr, int serial)
2405 if (hdr->prog != GUESTFS_PROGRAM) {
2406 error (g, \"wrong program (%%d/%%d)\", hdr->prog, GUESTFS_PROGRAM);
2409 if (hdr->vers != GUESTFS_PROTOCOL_VERSION) {
2410 error (g, \"wrong protocol version (%%d/%%d)\",
2411 hdr->vers, GUESTFS_PROTOCOL_VERSION);
2414 if (hdr->direction != GUESTFS_DIRECTION_REPLY) {
2415 error (g, \"unexpected message direction (%%d/%%d)\",
2416 hdr->direction, GUESTFS_DIRECTION_REPLY);
2419 if (hdr->proc != proc_nr) {
2420 error (g, \"unexpected procedure number (%%d/%%d)\", hdr->proc, proc_nr);
2423 if (hdr->serial != serial) {
2424 error (g, \"unexpected serial (%%d/%%d)\", hdr->serial, serial);
2431 /* Check we are in the right state to run a high-level action. */
2433 check_state (guestfs_h *g, const char *caller)
2435 if (!guestfs_is_ready (g)) {
2436 if (guestfs_is_config (g))
2437 error (g, \"%%s: call launch() before using this function\",
2439 else if (guestfs_is_launching (g))
2440 error (g, \"%%s: call wait_ready() before using this function\",
2443 error (g, \"%%s called from the wrong state, %%d != READY\",
2444 caller, guestfs_get_state (g));
2452 (* Client-side stubs for each function. *)
2454 fun (shortname, style, _, _, _, _, _) ->
2455 let name = "guestfs_" ^ shortname in
2457 (* Generate the context struct which stores the high-level
2458 * state between callback functions.
2460 pr "struct %s_ctx {\n" shortname;
2461 pr " /* This flag is set by the callbacks, so we know we've done\n";
2462 pr " * the callbacks as expected, and in the right sequence.\n";
2463 pr " * 0 = not called, 1 = reply_cb called.\n";
2465 pr " int cb_sequence;\n";
2466 pr " struct guestfs_message_header hdr;\n";
2467 pr " struct guestfs_message_error err;\n";
2468 (match fst style with
2471 failwithf "RConstString cannot be returned from a daemon function"
2473 | RBool _ | RString _ | RStringList _
2475 | RPVList _ | RVGList _ | RLVList _
2476 | RStat _ | RStatVFS _
2478 pr " struct %s_ret ret;\n" name
2483 (* Generate the reply callback function. *)
2484 pr "static void %s_reply_cb (guestfs_h *g, void *data, XDR *xdr)\n" shortname;
2486 pr " guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
2487 pr " struct %s_ctx *ctx = (struct %s_ctx *) data;\n" shortname shortname;
2489 pr " /* This should definitely not happen. */\n";
2490 pr " if (ctx->cb_sequence != 0) {\n";
2491 pr " ctx->cb_sequence = 9999;\n";
2492 pr " error (g, \"%%s: internal error: reply callback called twice\", \"%s\");\n" name;
2496 pr " ml->main_loop_quit (ml, g);\n";
2498 pr " if (!xdr_guestfs_message_header (xdr, &ctx->hdr)) {\n";
2499 pr " error (g, \"%%s: failed to parse reply header\", \"%s\");\n" name;
2502 pr " if (ctx->hdr.status == GUESTFS_STATUS_ERROR) {\n";
2503 pr " if (!xdr_guestfs_message_error (xdr, &ctx->err)) {\n";
2504 pr " error (g, \"%%s: failed to parse reply error\", \"%s\");\n"
2511 (match fst style with
2514 failwithf "RConstString cannot be returned from a daemon function"
2516 | RBool _ | RString _ | RStringList _
2518 | RPVList _ | RVGList _ | RLVList _
2519 | RStat _ | RStatVFS _
2521 pr " if (!xdr_%s_ret (xdr, &ctx->ret)) {\n" name;
2522 pr " error (g, \"%%s: failed to parse reply\", \"%s\");\n" name;
2528 pr " ctx->cb_sequence = 1;\n";
2531 (* Generate the action stub. *)
2532 generate_prototype ~extern:false ~semicolon:false ~newline:true
2533 ~handle:"g" name style;
2536 match fst style with
2537 | RErr | RInt _ | RInt64 _ | RBool _ -> "-1"
2539 failwithf "RConstString cannot be returned from a daemon function"
2540 | RString _ | RStringList _ | RIntBool _
2541 | RPVList _ | RVGList _ | RLVList _
2542 | RStat _ | RStatVFS _
2548 (match snd style with
2550 | _ -> pr " struct %s_args args;\n" name
2553 pr " struct %s_ctx ctx;\n" shortname;
2554 pr " guestfs_main_loop *ml = guestfs_get_main_loop (g);\n";
2555 pr " int serial;\n";
2557 pr " if (check_state (g, \"%s\") == -1) return %s;\n" name error_code;
2558 pr " guestfs_set_busy (g);\n";
2560 pr " memset (&ctx, 0, sizeof ctx);\n";
2563 (* Send the main header and arguments. *)
2564 (match snd style with
2566 pr " serial = guestfs__send_sync (g, GUESTFS_PROC_%s, NULL, NULL);\n"
2567 (String.uppercase shortname)
2572 pr " args.%s = (char *) %s;\n" n n
2574 pr " args.%s = %s ? (char **) &%s : NULL;\n" n n n
2576 pr " args.%s.%s_val = (char **) %s;\n" n n n;
2577 pr " for (args.%s.%s_len = 0; %s[args.%s.%s_len]; args.%s.%s_len++) ;\n" n n n n n n n;
2579 pr " args.%s = %s;\n" n n
2581 pr " args.%s = %s;\n" n n
2582 | FileIn _ | FileOut _ -> ()
2584 pr " serial = guestfs__send_sync (g, GUESTFS_PROC_%s,\n"
2585 (String.uppercase shortname);
2586 pr " (xdrproc_t) xdr_%s_args, (char *) &args);\n"
2589 pr " if (serial == -1) {\n";
2590 pr " guestfs_set_ready (g);\n";
2591 pr " return %s;\n" error_code;
2595 (* Send any additional files (FileIn) requested. *)
2596 let need_read_reply_label = ref false in
2603 pr " r = guestfs__send_file_sync (g, %s);\n" n;
2604 pr " if (r == -1) {\n";
2605 pr " guestfs_set_ready (g);\n";
2606 pr " return %s;\n" error_code;
2608 pr " if (r == -2) /* daemon cancelled */\n";
2609 pr " goto read_reply;\n";
2610 need_read_reply_label := true;
2616 (* Wait for the reply from the remote end. *)
2617 if !need_read_reply_label then pr " read_reply:\n";
2618 pr " guestfs__switch_to_receiving (g);\n";
2619 pr " ctx.cb_sequence = 0;\n";
2620 pr " guestfs_set_reply_callback (g, %s_reply_cb, &ctx);\n" shortname;
2621 pr " (void) ml->main_loop_run (ml, g);\n";
2622 pr " guestfs_set_reply_callback (g, NULL, NULL);\n";
2623 pr " if (ctx.cb_sequence != 1) {\n";
2624 pr " error (g, \"%%s reply failed, see earlier error messages\", \"%s\");\n" name;
2625 pr " guestfs_set_ready (g);\n";
2626 pr " return %s;\n" error_code;
2630 pr " if (check_reply_header (g, &ctx.hdr, GUESTFS_PROC_%s, serial) == -1) {\n"
2631 (String.uppercase shortname);
2632 pr " guestfs_set_ready (g);\n";
2633 pr " return %s;\n" error_code;
2637 pr " if (ctx.hdr.status == GUESTFS_STATUS_ERROR) {\n";
2638 pr " error (g, \"%%s\", ctx.err.error_message);\n";
2639 pr " guestfs_set_ready (g);\n";
2640 pr " return %s;\n" error_code;
2644 (* Expecting to receive further files (FileOut)? *)
2648 pr " if (guestfs__receive_file_sync (g, %s) == -1) {\n" n;
2649 pr " guestfs_set_ready (g);\n";
2650 pr " return %s;\n" error_code;
2656 pr " guestfs_set_ready (g);\n";
2658 (match fst style with
2659 | RErr -> pr " return 0;\n"
2660 | RInt n | RInt64 n | RBool n ->
2661 pr " return ctx.ret.%s;\n" n
2663 failwithf "RConstString cannot be returned from a daemon function"
2665 pr " return ctx.ret.%s; /* caller will free */\n" n
2666 | RStringList n | RHashtable n ->
2667 pr " /* caller will free this, but we need to add a NULL entry */\n";
2668 pr " ctx.ret.%s.%s_val =\n" n n;
2669 pr " safe_realloc (g, ctx.ret.%s.%s_val,\n" n n;
2670 pr " sizeof (char *) * (ctx.ret.%s.%s_len + 1));\n"
2672 pr " ctx.ret.%s.%s_val[ctx.ret.%s.%s_len] = NULL;\n" n n n n;
2673 pr " return ctx.ret.%s.%s_val;\n" n n
2675 pr " /* caller with free this */\n";
2676 pr " return safe_memdup (g, &ctx.ret, sizeof (ctx.ret));\n"
2677 | RPVList n | RVGList n | RLVList n
2678 | RStat n | RStatVFS n ->
2679 pr " /* caller will free this */\n";
2680 pr " return safe_memdup (g, &ctx.ret.%s, sizeof (ctx.ret.%s));\n" n n
2686 (* Generate daemon/actions.h. *)
2687 and generate_daemon_actions_h () =
2688 generate_header CStyle GPLv2;
2690 pr "#include \"../src/guestfs_protocol.h\"\n";
2694 fun (name, style, _, _, _, _, _) ->
2696 ~single_line:true ~newline:true ~in_daemon:true ~prefix:"do_"
2700 (* Generate the server-side stubs. *)
2701 and generate_daemon_actions () =
2702 generate_header CStyle GPLv2;
2704 pr "#include <config.h>\n";
2706 pr "#include <stdio.h>\n";
2707 pr "#include <stdlib.h>\n";
2708 pr "#include <string.h>\n";
2709 pr "#include <inttypes.h>\n";
2710 pr "#include <ctype.h>\n";
2711 pr "#include <rpc/types.h>\n";
2712 pr "#include <rpc/xdr.h>\n";
2714 pr "#include \"daemon.h\"\n";
2715 pr "#include \"../src/guestfs_protocol.h\"\n";
2716 pr "#include \"actions.h\"\n";
2720 fun (name, style, _, _, _, _, _) ->
2721 (* Generate server-side stubs. *)
2722 pr "static void %s_stub (XDR *xdr_in)\n" name;
2725 match fst style with
2726 | RErr | RInt _ -> pr " int r;\n"; "-1"
2727 | RInt64 _ -> pr " int64_t r;\n"; "-1"
2728 | RBool _ -> pr " int r;\n"; "-1"
2730 failwithf "RConstString cannot be returned from a daemon function"
2731 | RString _ -> pr " char *r;\n"; "NULL"
2732 | RStringList _ | RHashtable _ -> pr " char **r;\n"; "NULL"
2733 | RIntBool _ -> pr " guestfs_%s_ret *r;\n" name; "NULL"
2734 | RPVList _ -> pr " guestfs_lvm_int_pv_list *r;\n"; "NULL"
2735 | RVGList _ -> pr " guestfs_lvm_int_vg_list *r;\n"; "NULL"
2736 | RLVList _ -> pr " guestfs_lvm_int_lv_list *r;\n"; "NULL"
2737 | RStat _ -> pr " guestfs_int_stat *r;\n"; "NULL"
2738 | RStatVFS _ -> pr " guestfs_int_statvfs *r;\n"; "NULL" in
2740 (match snd style with
2743 pr " struct guestfs_%s_args args;\n" name;
2747 | OptString n -> pr " const char *%s;\n" n
2748 | StringList n -> pr " char **%s;\n" n
2749 | Bool n -> pr " int %s;\n" n
2750 | Int n -> pr " int %s;\n" n
2751 | FileIn _ | FileOut _ -> ()
2756 (match snd style with
2759 pr " memset (&args, 0, sizeof args);\n";
2761 pr " if (!xdr_guestfs_%s_args (xdr_in, &args)) {\n" name;
2762 pr " reply_with_error (\"%%s: daemon failed to decode procedure arguments\", \"%s\");\n" name;
2767 | String n -> pr " %s = args.%s;\n" n n
2768 | OptString n -> pr " %s = args.%s ? *args.%s : NULL;\n" n n n
2770 pr " args.%s.%s_val = realloc (args.%s.%s_val, sizeof (char *) * (args.%s.%s_len+1));\n" n n n n n n;
2771 pr " args.%s.%s_val[args.%s.%s_len] = NULL;\n" n n n n;
2772 pr " %s = args.%s.%s_val;\n" n n n
2773 | Bool n -> pr " %s = args.%s;\n" n n
2774 | Int n -> pr " %s = args.%s;\n" n n
2775 | FileIn _ | FileOut _ -> ()
2780 (* Don't want to call the impl with any FileIn or FileOut
2781 * parameters, since these go "outside" the RPC protocol.
2784 List.filter (function FileIn _ | FileOut _ -> false | _ -> true)
2786 pr " r = do_%s " name;
2787 generate_call_args argsnofile;
2790 pr " if (r == %s)\n" error_code;
2791 pr " /* do_%s has already called reply_with_error */\n" name;
2795 (* If there are any FileOut parameters, then the impl must
2796 * send its own reply.
2799 List.exists (function FileOut _ -> true | _ -> false) (snd style) in
2801 pr " /* do_%s has already sent a reply */\n" name
2803 match fst style with
2804 | RErr -> pr " reply (NULL, NULL);\n"
2805 | RInt n | RInt64 n | RBool n ->
2806 pr " struct guestfs_%s_ret ret;\n" name;
2807 pr " ret.%s = r;\n" n;
2808 pr " reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
2811 failwithf "RConstString cannot be returned from a daemon function"
2813 pr " struct guestfs_%s_ret ret;\n" name;
2814 pr " ret.%s = r;\n" n;
2815 pr " reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
2818 | RStringList n | RHashtable n ->
2819 pr " struct guestfs_%s_ret ret;\n" name;
2820 pr " ret.%s.%s_len = count_strings (r);\n" n n;
2821 pr " ret.%s.%s_val = r;\n" n n;
2822 pr " reply ((xdrproc_t) &xdr_guestfs_%s_ret, (char *) &ret);\n"
2824 pr " free_strings (r);\n"
2826 pr " reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n"
2828 pr " xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) r);\n" name
2829 | RPVList n | RVGList n | RLVList n
2830 | RStat n | RStatVFS n ->
2831 pr " struct guestfs_%s_ret ret;\n" name;
2832 pr " ret.%s = *r;\n" n;
2833 pr " reply ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
2835 pr " xdr_free ((xdrproc_t) xdr_guestfs_%s_ret, (char *) &ret);\n"
2839 (* Free the args. *)
2840 (match snd style with
2845 pr " xdr_free ((xdrproc_t) xdr_guestfs_%s_args, (char *) &args);\n"
2852 (* Dispatch function. *)
2853 pr "void dispatch_incoming_message (XDR *xdr_in)\n";
2855 pr " switch (proc_nr) {\n";
2858 fun (name, style, _, _, _, _, _) ->
2859 pr " case GUESTFS_PROC_%s:\n" (String.uppercase name);
2860 pr " %s_stub (xdr_in);\n" name;
2865 pr " reply_with_error (\"dispatch_incoming_message: unknown procedure number %%d\", proc_nr);\n";
2870 (* LVM columns and tokenization functions. *)
2871 (* XXX This generates crap code. We should rethink how we
2877 pr "static const char *lvm_%s_cols = \"%s\";\n"
2878 typ (String.concat "," (List.map fst cols));
2881 pr "static int lvm_tokenize_%s (char *str, struct guestfs_lvm_int_%s *r)\n" typ typ;
2883 pr " char *tok, *p, *next;\n";
2887 pr " fprintf (stderr, \"%%s: <<%%s>>\\n\", __func__, str);\n";
2890 pr " if (!str) {\n";
2891 pr " fprintf (stderr, \"%%s: failed: passed a NULL string\\n\", __func__);\n";
2894 pr " if (!*str || isspace (*str)) {\n";
2895 pr " fprintf (stderr, \"%%s: failed: passed a empty string or one beginning with whitespace\\n\", __func__);\n";
2900 fun (name, coltype) ->
2901 pr " if (!tok) {\n";
2902 pr " fprintf (stderr, \"%%s: failed: string finished early, around token %%s\\n\", __func__, \"%s\");\n" name;
2905 pr " p = strchrnul (tok, ',');\n";
2906 pr " if (*p) next = p+1; else next = NULL;\n";
2907 pr " *p = '\\0';\n";
2910 pr " r->%s = strdup (tok);\n" name;
2911 pr " if (r->%s == NULL) {\n" name;
2912 pr " perror (\"strdup\");\n";
2916 pr " for (i = j = 0; i < 32; ++j) {\n";
2917 pr " if (tok[j] == '\\0') {\n";
2918 pr " fprintf (stderr, \"%%s: failed to parse UUID from '%%s'\\n\", __func__, tok);\n";
2920 pr " } else if (tok[j] != '-')\n";
2921 pr " r->%s[i++] = tok[j];\n" name;
2924 pr " if (sscanf (tok, \"%%\"SCNu64, &r->%s) != 1) {\n" name;
2925 pr " fprintf (stderr, \"%%s: failed to parse size '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
2929 pr " if (sscanf (tok, \"%%\"SCNi64, &r->%s) != 1) {\n" name;
2930 pr " fprintf (stderr, \"%%s: failed to parse int '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
2934 pr " if (tok[0] == '\\0')\n";
2935 pr " r->%s = -1;\n" name;
2936 pr " else if (sscanf (tok, \"%%f\", &r->%s) != 1) {\n" name;
2937 pr " fprintf (stderr, \"%%s: failed to parse float '%%s' from token %%s\\n\", __func__, tok, \"%s\");\n" name;
2941 pr " tok = next;\n";
2944 pr " if (tok != NULL) {\n";
2945 pr " fprintf (stderr, \"%%s: failed: extra tokens at end of string\\n\", __func__);\n";
2952 pr "guestfs_lvm_int_%s_list *\n" typ;
2953 pr "parse_command_line_%ss (void)\n" typ;
2955 pr " char *out, *err;\n";
2956 pr " char *p, *pend;\n";
2958 pr " guestfs_lvm_int_%s_list *ret;\n" typ;
2959 pr " void *newp;\n";
2961 pr " ret = malloc (sizeof *ret);\n";
2962 pr " if (!ret) {\n";
2963 pr " reply_with_perror (\"malloc\");\n";
2964 pr " return NULL;\n";
2967 pr " ret->guestfs_lvm_int_%s_list_len = 0;\n" typ;
2968 pr " ret->guestfs_lvm_int_%s_list_val = NULL;\n" typ;
2970 pr " r = command (&out, &err,\n";
2971 pr " \"/sbin/lvm\", \"%ss\",\n" typ;
2972 pr " \"-o\", lvm_%s_cols, \"--unbuffered\", \"--noheadings\",\n" typ;
2973 pr " \"--nosuffix\", \"--separator\", \",\", \"--units\", \"b\", NULL);\n";
2974 pr " if (r == -1) {\n";
2975 pr " reply_with_error (\"%%s\", err);\n";
2976 pr " free (out);\n";
2977 pr " free (err);\n";
2978 pr " free (ret);\n";
2979 pr " return NULL;\n";
2982 pr " free (err);\n";
2984 pr " /* Tokenize each line of the output. */\n";
2987 pr " while (p) {\n";
2988 pr " pend = strchr (p, '\\n'); /* Get the next line of output. */\n";
2989 pr " if (pend) {\n";
2990 pr " *pend = '\\0';\n";
2994 pr " while (*p && isspace (*p)) /* Skip any leading whitespace. */\n";
2997 pr " if (!*p) { /* Empty line? Skip it. */\n";
3002 pr " /* Allocate some space to store this next entry. */\n";
3003 pr " newp = realloc (ret->guestfs_lvm_int_%s_list_val,\n" typ;
3004 pr " sizeof (guestfs_lvm_int_%s) * (i+1));\n" typ;
3005 pr " if (newp == NULL) {\n";
3006 pr " reply_with_perror (\"realloc\");\n";
3007 pr " free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
3008 pr " free (ret);\n";
3009 pr " free (out);\n";
3010 pr " return NULL;\n";
3012 pr " ret->guestfs_lvm_int_%s_list_val = newp;\n" typ;
3014 pr " /* Tokenize the next entry. */\n";
3015 pr " r = lvm_tokenize_%s (p, &ret->guestfs_lvm_int_%s_list_val[i]);\n" typ typ;
3016 pr " if (r == -1) {\n";
3017 pr " reply_with_error (\"failed to parse output of '%ss' command\");\n" typ;
3018 pr " free (ret->guestfs_lvm_int_%s_list_val);\n" typ;
3019 pr " free (ret);\n";
3020 pr " free (out);\n";
3021 pr " return NULL;\n";
3028 pr " ret->guestfs_lvm_int_%s_list_len = i;\n" typ;
3030 pr " free (out);\n";
3031 pr " return ret;\n";
3034 ) ["pv", pv_cols; "vg", vg_cols; "lv", lv_cols]
3036 (* Generate the tests. *)
3037 and generate_tests () =
3038 generate_header CStyle GPLv2;
3045 #include <sys/types.h>
3048 #include \"guestfs.h\"
3050 static guestfs_h *g;
3051 static int suppress_error = 0;
3053 static void print_error (guestfs_h *g, void *data, const char *msg)
3055 if (!suppress_error)
3056 fprintf (stderr, \"%%s\\n\", msg);
3059 static void print_strings (char * const * const argv)
3063 for (argc = 0; argv[argc] != NULL; ++argc)
3064 printf (\"\\t%%s\\n\", argv[argc]);
3068 static void print_table (char * const * const argv)
3072 for (i = 0; argv[i] != NULL; i += 2)
3073 printf (\"%%s: %%s\\n\", argv[i], argv[i+1]);
3077 static void no_test_warnings (void)
3083 | name, _, _, _, [], _, _ ->
3084 pr " fprintf (stderr, \"warning: \\\"guestfs_%s\\\" has no tests\\n\");\n" name
3085 | name, _, _, _, tests, _, _ -> ()
3091 (* Generate the actual tests. Note that we generate the tests
3092 * in reverse order, deliberately, so that (in general) the
3093 * newest tests run first. This makes it quicker and easier to
3098 fun (name, _, _, _, tests, _, _) ->
3099 mapi (generate_one_test name) tests
3100 ) (List.rev all_functions) in
3101 let test_names = List.concat test_names in
3102 let nr_tests = List.length test_names in
3105 int main (int argc, char *argv[])
3110 const char *filename;
3112 int nr_tests, test_num = 0;
3114 no_test_warnings ();
3116 g = guestfs_create ();
3118 printf (\"guestfs_create FAILED\\n\");
3122 guestfs_set_error_handler (g, print_error, NULL);
3124 srcdir = getenv (\"srcdir\");
3125 if (!srcdir) srcdir = \".\";
3127 guestfs_set_path (g, \".\");
3129 filename = \"test1.img\";
3130 fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
3135 if (lseek (fd, %d, SEEK_SET) == -1) {
3141 if (write (fd, &c, 1) == -1) {
3147 if (close (fd) == -1) {
3152 if (guestfs_add_drive (g, filename) == -1) {
3153 printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
3157 filename = \"test2.img\";
3158 fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
3163 if (lseek (fd, %d, SEEK_SET) == -1) {
3169 if (write (fd, &c, 1) == -1) {
3175 if (close (fd) == -1) {
3180 if (guestfs_add_drive (g, filename) == -1) {
3181 printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
3185 filename = \"test3.img\";
3186 fd = open (filename, O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK|O_TRUNC, 0666);
3191 if (lseek (fd, %d, SEEK_SET) == -1) {
3197 if (write (fd, &c, 1) == -1) {
3203 if (close (fd) == -1) {
3208 if (guestfs_add_drive (g, filename) == -1) {
3209 printf (\"guestfs_add_drive %%s FAILED\\n\", filename);
3213 if (guestfs_launch (g) == -1) {
3214 printf (\"guestfs_launch FAILED\\n\");
3217 if (guestfs_wait_ready (g) == -1) {
3218 printf (\"guestfs_wait_ready FAILED\\n\");
3224 " (500 * 1024 * 1024) (50 * 1024 * 1024) (10 * 1024 * 1024) nr_tests;
3228 pr " test_num++;\n";
3229 pr " printf (\"%%3d/%%3d %s\\n\", test_num, nr_tests);\n" test_name;
3230 pr " if (%s () == -1) {\n" test_name;
3231 pr " printf (\"%s FAILED\\n\");\n" test_name;
3237 pr " guestfs_close (g);\n";
3238 pr " unlink (\"test1.img\");\n";
3239 pr " unlink (\"test2.img\");\n";
3240 pr " unlink (\"test3.img\");\n";
3243 pr " if (failed > 0) {\n";
3244 pr " printf (\"***** %%d / %%d tests FAILED *****\\n\", failed, nr_tests);\n";
3252 and generate_one_test name i (init, test) =
3253 let test_name = sprintf "test_%s_%d" name i in
3255 pr "static int %s (void)\n" test_name;
3261 pr " /* InitEmpty for %s (%d) */\n" name i;
3262 List.iter (generate_test_command_call test_name)
3266 pr " /* InitBasicFS for %s (%d): create ext2 on /dev/sda1 */\n" name i;
3267 List.iter (generate_test_command_call test_name)
3270 ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
3271 ["mkfs"; "ext2"; "/dev/sda1"];
3272 ["mount"; "/dev/sda1"; "/"]]
3273 | InitBasicFSonLVM ->
3274 pr " /* InitBasicFSonLVM for %s (%d): create ext2 on /dev/VG/LV */\n"
3276 List.iter (generate_test_command_call test_name)
3279 ["sfdisk"; "/dev/sda"; "0"; "0"; "0"; ","];
3280 ["pvcreate"; "/dev/sda1"];
3281 ["vgcreate"; "VG"; "/dev/sda1"];
3282 ["lvcreate"; "LV"; "VG"; "8"];
3283 ["mkfs"; "ext2"; "/dev/VG/LV"];
3284 ["mount"; "/dev/VG/LV"; "/"]]
3287 let get_seq_last = function
3289 failwithf "%s: you cannot use [] (empty list) when expecting a command"
3292 let seq = List.rev seq in
3293 List.rev (List.tl seq), List.hd seq
3298 pr " /* TestRun for %s (%d) */\n" name i;
3299 List.iter (generate_test_command_call test_name) seq
3300 | TestOutput (seq, expected) ->
3301 pr " /* TestOutput for %s (%d) */\n" name i;
3302 let seq, last = get_seq_last seq in
3304 pr " if (strcmp (r, \"%s\") != 0) {\n" (c_quote expected);
3305 pr " fprintf (stderr, \"%s: expected \\\"%s\\\" but got \\\"%%s\\\"\\n\", r);\n" test_name (c_quote expected);
3309 List.iter (generate_test_command_call test_name) seq;
3310 generate_test_command_call ~test test_name last
3311 | TestOutputList (seq, expected) ->
3312 pr " /* TestOutputList for %s (%d) */\n" name i;
3313 let seq, last = get_seq_last seq in
3317 pr " if (!r[%d]) {\n" i;
3318 pr " fprintf (stderr, \"%s: short list returned from command\\n\");\n" test_name;
3319 pr " print_strings (r);\n";
3322 pr " if (strcmp (r[%d], \"%s\") != 0) {\n" i (c_quote str);
3323 pr " fprintf (stderr, \"%s: expected \\\"%s\\\" but got \\\"%%s\\\"\\n\", r[%d]);\n" test_name (c_quote str) i;
3327 pr " if (r[%d] != NULL) {\n" (List.length expected);
3328 pr " fprintf (stderr, \"%s: extra elements returned from command\\n\");\n"
3330 pr " print_strings (r);\n";
3334 List.iter (generate_test_command_call test_name) seq;
3335 generate_test_command_call ~test test_name last
3336 | TestOutputInt (seq, expected) ->
3337 pr " /* TestOutputInt for %s (%d) */\n" name i;
3338 let seq, last = get_seq_last seq in
3340 pr " if (r != %d) {\n" expected;
3341 pr " fprintf (stderr, \"%s: expected %d but got %%d\\n\","
3347 List.iter (generate_test_command_call test_name) seq;
3348 generate_test_command_call ~test test_name last
3349 | TestOutputTrue seq ->
3350 pr " /* TestOutputTrue for %s (%d) */\n" name i;
3351 let seq, last = get_seq_last seq in
3354 pr " fprintf (stderr, \"%s: expected true, got false\\n\");\n"
3359 List.iter (generate_test_command_call test_name) seq;
3360 generate_test_command_call ~test test_name last
3361 | TestOutputFalse seq ->
3362 pr " /* TestOutputFalse for %s (%d) */\n" name i;
3363 let seq, last = get_seq_last seq in
3366 pr " fprintf (stderr, \"%s: expected false, got true\\n\");\n"
3371 List.iter (generate_test_command_call test_name) seq;
3372 generate_test_command_call ~test test_name last
3373 | TestOutputLength (seq, expected) ->
3374 pr " /* TestOutputLength for %s (%d) */\n" name i;
3375 let seq, last = get_seq_last seq in
3378 pr " for (j = 0; j < %d; ++j)\n" expected;
3379 pr " if (r[j] == NULL) {\n";
3380 pr " fprintf (stderr, \"%s: short list returned\\n\");\n"
3382 pr " print_strings (r);\n";
3385 pr " if (r[j] != NULL) {\n";
3386 pr " fprintf (stderr, \"%s: long list returned\\n\");\n"
3388 pr " print_strings (r);\n";
3392 List.iter (generate_test_command_call test_name) seq;
3393 generate_test_command_call ~test test_name last
3394 | TestOutputStruct (seq, checks) ->
3395 pr " /* TestOutputStruct for %s (%d) */\n" name i;
3396 let seq, last = get_seq_last seq in
3400 | CompareWithInt (field, expected) ->
3401 pr " if (r->%s != %d) {\n" field expected;
3402 pr " fprintf (stderr, \"%s: %s was %%d, expected %d\\n\",\n"
3403 test_name field expected;
3404 pr " (int) r->%s);\n" field;
3407 | CompareWithString (field, expected) ->
3408 pr " if (strcmp (r->%s, \"%s\") != 0) {\n" field expected;
3409 pr " fprintf (stderr, \"%s: %s was \"%%s\", expected \"%s\"\\n\",\n"
3410 test_name field expected;
3411 pr " r->%s);\n" field;
3414 | CompareFieldsIntEq (field1, field2) ->
3415 pr " if (r->%s != r->%s) {\n" field1 field2;
3416 pr " fprintf (stderr, \"%s: %s (%%d) <> %s (%%d)\\n\",\n"
3417 test_name field1 field2;
3418 pr " (int) r->%s, (int) r->%s);\n" field1 field2;
3421 | CompareFieldsStrEq (field1, field2) ->
3422 pr " if (strcmp (r->%s, r->%s) != 0) {\n" field1 field2;
3423 pr " fprintf (stderr, \"%s: %s (\"%%s\") <> %s (\"%%s\")\\n\",\n"
3424 test_name field1 field2;
3425 pr " r->%s, r->%s);\n" field1 field2;
3430 List.iter (generate_test_command_call test_name) seq;
3431 generate_test_command_call ~test test_name last
3432 | TestLastFail seq ->
3433 pr " /* TestLastFail for %s (%d) */\n" name i;
3434 let seq, last = get_seq_last seq in
3435 List.iter (generate_test_command_call test_name) seq;
3436 generate_test_command_call test_name ~expect_error:true last
3444 (* Generate the code to run a command, leaving the result in 'r'.
3445 * If you expect to get an error then you should set expect_error:true.
3447 and generate_test_command_call ?(expect_error = false) ?test test_name cmd =
3449 | [] -> assert false
3451 (* Look up the command to find out what args/ret it has. *)
3454 let _, style, _, _, _, _, _ =
3455 List.find (fun (n, _, _, _, _, _, _) -> n = name) all_functions in
3458 failwithf "%s: in test, command %s was not found" test_name name in
3460 if List.length (snd style) <> List.length args then
3461 failwithf "%s: in test, wrong number of args given to %s"
3472 | FileIn _, _ | FileOut _, _ -> ()
3473 | StringList n, arg ->
3474 pr " char *%s[] = {\n" n;
3475 let strs = string_split " " arg in
3477 fun str -> pr " \"%s\",\n" (c_quote str)
3481 ) (List.combine (snd style) args);
3484 match fst style with
3485 | RErr | RInt _ | RBool _ -> pr " int r;\n"; "-1"
3486 | RInt64 _ -> pr " int64_t r;\n"; "-1"
3487 | RConstString _ -> pr " const char *r;\n"; "NULL"
3488 | RString _ -> pr " char *r;\n"; "NULL"
3489 | RStringList _ | RHashtable _ ->
3494 pr " struct guestfs_int_bool *r;\n"; "NULL"
3496 pr " struct guestfs_lvm_pv_list *r;\n"; "NULL"
3498 pr " struct guestfs_lvm_vg_list *r;\n"; "NULL"
3500 pr " struct guestfs_lvm_lv_list *r;\n"; "NULL"
3502 pr " struct guestfs_stat *r;\n"; "NULL"
3504 pr " struct guestfs_statvfs *r;\n"; "NULL" in
3506 pr " suppress_error = %d;\n" (if expect_error then 1 else 0);
3507 pr " r = guestfs_%s (g" name;
3509 (* Generate the parameters. *)
3513 | FileIn _, arg | FileOut _, arg ->
3514 pr ", \"%s\"" (c_quote arg)
3515 | OptString _, arg ->
3516 if arg = "NULL" then pr ", NULL" else pr ", \"%s\"" (c_quote arg)
3517 | StringList n, _ ->
3521 try int_of_string arg
3522 with Failure "int_of_string" ->
3523 failwithf "%s: expecting an int, but got '%s'" test_name arg in
3526 let b = bool_of_string arg in pr ", %d" (if b then 1 else 0)
3527 ) (List.combine (snd style) args);
3530 if not expect_error then
3531 pr " if (r == %s)\n" error_code
3533 pr " if (r != %s)\n" error_code;
3536 (* Insert the test code. *)
3542 (match fst style with
3543 | RErr | RInt _ | RInt64 _ | RBool _ | RConstString _ -> ()
3544 | RString _ -> pr " free (r);\n"
3545 | RStringList _ | RHashtable _ ->
3546 pr " for (i = 0; r[i] != NULL; ++i)\n";
3547 pr " free (r[i]);\n";
3550 pr " guestfs_free_int_bool (r);\n"
3552 pr " guestfs_free_lvm_pv_list (r);\n"
3554 pr " guestfs_free_lvm_vg_list (r);\n"
3556 pr " guestfs_free_lvm_lv_list (r);\n"
3557 | RStat _ | RStatVFS _ ->
3564 let str = replace_str str "\r" "\\r" in
3565 let str = replace_str str "\n" "\\n" in
3566 let str = replace_str str "\t" "\\t" in
3569 (* Generate a lot of different functions for guestfish. *)
3570 and generate_fish_cmds () =
3571 generate_header CStyle GPLv2;
3575 fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
3577 let all_functions_sorted =
3579 fun (_, _, _, flags, _, _, _) -> not (List.mem NotInFish flags)
3580 ) all_functions_sorted in
3582 pr "#include <stdio.h>\n";
3583 pr "#include <stdlib.h>\n";
3584 pr "#include <string.h>\n";
3585 pr "#include <inttypes.h>\n";
3587 pr "#include <guestfs.h>\n";
3588 pr "#include \"fish.h\"\n";
3591 (* list_commands function, which implements guestfish -h *)
3592 pr "void list_commands (void)\n";
3594 pr " printf (\" %%-16s %%s\\n\", \"Command\", \"Description\");\n";
3595 pr " list_builtin_commands ();\n";
3597 fun (name, _, _, flags, _, shortdesc, _) ->
3598 let name = replace_char name '_' '-' in
3599 pr " printf (\"%%-20s %%s\\n\", \"%s\", \"%s\");\n"
3601 ) all_functions_sorted;
3602 pr " printf (\" Use -h <cmd> / help <cmd> to show detailed help for a command.\\n\");\n";
3606 (* display_command function, which implements guestfish -h cmd *)
3607 pr "void display_command (const char *cmd)\n";
3610 fun (name, style, _, flags, _, shortdesc, longdesc) ->
3611 let name2 = replace_char name '_' '-' in
3613 try find_map (function FishAlias n -> Some n | _ -> None) flags
3614 with Not_found -> name in
3615 let longdesc = replace_str longdesc "C<guestfs_" "C<" in
3617 match snd style with
3621 name2 (String.concat "> <" (List.map name_of_argt args)) in
3624 if List.mem ProtocolLimitWarning flags then
3625 ("\n\n" ^ protocol_limit_warning)
3628 (* For DangerWillRobinson commands, we should probably have
3629 * guestfish prompt before allowing you to use them (especially
3630 * in interactive mode). XXX
3634 if List.mem DangerWillRobinson flags then
3635 ("\n\n" ^ danger_will_robinson)