1 PLEASE LOOK AT THE TOP OF EACH FILE BEFORE EDITING TO SEE WHETHER IT
2 IS AUTOMATICALLY GENERATED OR NOT.
5 ----------------------------------------------------------------------
7 All action functions are generated automatically, so there are only
8 two files you need to edit:
10 (1) src/generator.ml: Add your new action, parameters, description,
11 etc. to the big list called 'functions' at the top of this file.
13 (2) Edit/create a C file in daemon/ subdirectory which implements your
14 'do_action' function. Take a look at one of the numerous examples
18 ----------------------------------------------------------------------
20 Try to use GNU / Emacs default formatting, following the convention
21 used elsewhere in the source.
23 Please make sure that the code compiles without warnings.
25 Please test any changes.
28 make syntax-check Checks the syntax of the C code.
29 make check Runs the test suite.
31 Enable warnings, and fix any you find:
32 ./configure --enable-gcc-warnings
35 ----------------------------------------------------------------------
36 Our C source code generally adheres to some basic code-formatting
37 conventions. The existing code base is not totally consistent on this
38 front, but we do prefer that contributed code be formatted similarly.
39 In short, use spaces-not-TABs for indentation, use 2 spaces for each
40 indentation level, and other than that, follow the K&R style.
42 If you use Emacs, add the following to one of one of your start-up files
43 (e.g., ~/.emacs), to help ensure that you get indentation right:
45 ;;; In libguestfs, indent with spaces everywhere (not TABs).
46 ;;; Exceptions: Makefile and ChangeLog modes.
47 (add-hook 'find-file-hook
48 '(lambda () (if (and buffer-file-name
49 (string-match "/libguestfs\\>" (buffer-file-name))
50 (not (string-equal mode-name "Change Log"))
51 (not (string-equal mode-name "Makefile")))
52 (setq indent-tabs-mode nil))))
54 ;;; When editing C sources in libguestfs, use this style.
55 (defun libguestfs-c-mode ()
56 "C mode with adjusted defaults for use with libguestfs."
59 (setq c-indent-level 2)
60 (setq c-basic-offset 2))
61 (add-hook 'c-mode-hook
62 '(lambda () (if (string-match "/libguestfs\\>" (buffer-file-name))
63 (libguestfs-c-mode))))
66 ----------------------------------------------------------------------
69 The qemu appliance, build scripts and so on.
72 Automated tests of the C API.
75 Outside contributions, experimental parts.
78 Experimental C# bindings.
81 The daemon that runs inside the guest and carries out actions.
87 Guestfish (the command-line program / shell)
90 FUSE (userspace filesystem) built on top of libguestfs.
95 hivex/ [removed in 1.0.85]
96 This used to contain the hivex library for reading and
97 writing Windows Registry binary hive files. This is now
98 available as a separate upstream project.
101 Some guest images to test against. These are gzipped to save
102 space. You have to unzip them before use.
104 Also contains some files used by the test suite.
107 Virtual machine image inspector (virt-inspector).
113 M4 macros used by autoconf.
134 Command line tools like virt-cat, virt-df, virt-edit and more.
135 In versions <= 1.0.73 these were all in separate directories
136 like cat/, df/, edit/, but since then we moved them all into
137 one directory to simplify builds.
140 Source code to the C library.
141 Also contains the crucial generator program.
144 Interactive qemu/kernel test tool.
147 ----------------------------------------------------------------------
149 It's a good idea to use guestfish to try out new commands.
151 Debugging the daemon is a problem because it runs inside a minimal
152 qemu environment. However you can print messages from the daemon, and
153 they will show up if you use 'guestfish -v'.
156 ----------------------------------------------------------------------
158 Submit patches to the mailing list:
159 http://www.redhat.com/mailman/listinfo/libguestfs
160 and CC to rjones@redhat.com
163 ----------------------------------------------------------------------
165 We support i18n (gettext anyhow) in the library.
167 However many messages come from the daemon, and we don't translate
168 those at the moment. One reason is that the appliance generally has
169 all locale files removed from it, because they take up a lot of space.
170 So we'd have to readd some of those, as well as copying our PO files
173 Debugging messages are never translated, since they are intended for
177 ----------------------------------------------------------------------
179 In the daemon code we have created custom printf formatters %Q and %R,
180 which are used to do shell quoting.
182 %Q => Simple shell quoted string. Any spaces or other shell characters
185 %R => Same as %Q except the string is treated as a path which is prefixed
190 asprintf (&cmd, "cat %R", path);
191 ==> "cat /sysroot/some\ path\ with\ spaces"
193 Note: Do NOT use these when you are passing parameters to the
194 command{,r,v,rv}() functions. These parameters do NOT need to be
195 quoted because they are not passed via the shell (instead, straight to
196 exec). You probably want to use the sysroot_path() function however.