5 .. contents:: Table of Contents
7 Please use the script checkpatch.pl in the scripts directory to check
8 patches before submitting.
13 Of course, the most important aspect in any coding style is whitespace.
14 Crusty old coders who have trouble spotting the glasses on their noses
15 can tell the difference between a tab and eight spaces from a distance
16 of approximately fifteen parsecs. Many a flamewar has been fought and
19 QEMU indents are four spaces. Tabs are never used, except in Makefiles
20 where they have been irreversibly coded into the syntax.
21 Spaces of course are superior to tabs because:
23 * You have just one way to specify whitespace, not two. Ambiguity breeds
25 * The confusion surrounding 'use tabs to indent, spaces to justify' is gone.
26 * Tab indents push your code to the right, making your screen seriously
28 * Tabs will be rendered incorrectly on editors who are misconfigured not
29 to use tab stops of eight positions.
30 * Tabs are rendered badly in patches, causing off-by-one errors in almost
32 * It is the QEMU coding style.
34 Do not leave whitespace dangling off the ends of lines.
39 There are several places where indent is necessary:
43 * function definition & call
45 When breaking up a long line to fit within line width, we need a proper indent
46 for the following lines.
48 In case of if/else, while/for, align the secondary lines just after the
49 opening parenthesis of the first.
61 In case of function, there are several variants:
63 * 4 spaces indent from the beginning
64 * align the secondary lines just after the opening parenthesis of the first
76 do_something(x, do_another(y,
82 Lines should be 80 characters; try not to make them longer.
84 Sometimes it is hard to do, especially when dealing with QEMU subsystems
85 that use long function or symbol names. Even in that case, do not make
86 lines much longer than 80 characters.
90 * Some people like to tile their 24" screens with a 6x4 matrix of 80x24
91 xterms and use vi in all of them. The best way to punish them is to
92 let them keep doing it.
93 * Code and especially patches is much more readable if limited to a sane
94 line length. Eighty is traditional.
95 * The four-space indentation makes the most common excuse ("But look
96 at all that white space on the left!") moot.
97 * It is the QEMU coding style.
102 Variables are lower_case_with_underscores; easy to type and read. Structured
103 type names are in CamelCase; harder to type but standing out. Enum type
104 names and function type names should also be in CamelCase. Scalar type
105 names are lower_case_with_underscores_ending_with_a_t, like the POSIX
106 uint64_t and family. Note that this last convention contradicts POSIX
107 and is therefore likely to be changed.
109 When wrapping standard library functions, use the prefix ``qemu_`` to alert
110 readers that they are seeing a wrapped version; otherwise avoid this prefix.
115 Every indented statement is braced; even if the block contains just one
116 statement. The opening brace is on the line that contains the control
117 flow statement that introduces the new block; the closing brace is on the
118 same line as the else keyword, or on a line by itself if there is no else
124 printf("a was 5.\n");
126 printf("a was 6.\n");
128 printf("a was something else entirely.\n");
131 Note that 'else if' is considered a single statement; otherwise a long if/
132 else if/else if/.../else sequence would need an indent for every else
135 An exception is the opening brace for a function; for reasons of tradition
136 and clarity it comes on a line by itself:
140 void a_function(void)
145 Rationale: a consistent (except for functions...) bracing style reduces
146 ambiguity and avoids needless churn when lines are added or removed.
147 Furthermore, it is the QEMU coding style.
152 Mixed declarations (interleaving statements and declarations within
153 blocks) are generally not allowed; declarations should be at the beginning
156 Every now and then, an exception is made for declarations inside a
157 #ifdef or #ifndef block: if the code looks nicer, such declarations can
158 be placed at the top of the block even if there are statements above.
159 On the other hand, however, it's often best to move that #ifdef/#ifndef
160 block to a separate function altogether.
162 Conditional statements
163 ======================
165 When comparing a variable for (in)equality with a constant, list the
166 constant on the right, as in:
171 /* Reads like: "If a equals 1" */
175 Rationale: Yoda conditions (as in 'if (1 == a)') are awkward to read.
176 Besides, good compilers already warn users when '==' is mis-typed as '=',
177 even when the constant is on the right.
182 We use traditional C-style /``*`` ``*``/ comments and avoid // comments.
184 Rationale: The // form is valid in C99, so this is purely a matter of
185 consistency of style. The checkpatch script will warn you about this.
187 Multiline comment blocks should have a row of stars on the left,
188 and the initial /``*`` and terminating ``*``/ both on their own lines:
197 This is the same format required by the Linux kernel coding style.
199 (Some of the existing comments in the codebase use the GNU Coding
200 Standards form which does not have stars on the left, or other
201 variations; avoid these when writing new comments, but don't worry
202 about converting to the preferred form unless you're editing that
205 Rationale: Consistency, and ease of visually picking out a multiline
206 comment from the surrounding code.
214 For variadic macros, stick with this C99-like syntax:
218 #define DPRINTF(fmt, ...) \
219 do { printf("IRQ: " fmt, ## __VA_ARGS__); } while (0)
224 Order include directives as follows:
228 #include "qemu/osdep.h" /* Always first... */
229 #include <...> /* then system headers... */
230 #include "..." /* and finally QEMU headers. */
232 The "qemu/osdep.h" header contains preprocessor macros that affect the behavior
233 of core system headers like <stdint.h>. It must be the first include so that
234 core system headers included by external libraries get the preprocessor macros
235 that QEMU depends on.
237 Do not include "qemu/osdep.h" from header files since the .c file will have
243 It should be common sense to use the right type, but we have collected
244 a few useful guidelines here.
249 If you're using "int" or "long", odds are good that there's a better type.
250 If a variable is counting something, it should be declared with an
253 If it's host memory-size related, size_t should be a good choice (use
254 ssize_t only if required). Guest RAM memory offsets must use ram_addr_t,
255 but only for RAM, it may not cover whole guest address space.
257 If it's file-size related, use off_t.
258 If it's file-offset related (i.e., signed), use off_t.
259 If it's just counting small numbers use "unsigned int";
260 (on all but oddball embedded systems, you can assume that that
261 type is at least four bytes wide).
263 In the event that you require a specific width, use a standard type
264 like int32_t, uint32_t, uint64_t, etc. The specific types are
265 mandatory for VMState fields.
267 Don't use Linux kernel internal types like u32, __u32 or __le32.
269 Use hwaddr for guest physical addresses except pcibus_t
270 for PCI addresses. In addition, ram_addr_t is a QEMU internal address
271 space that maps guest RAM physical addresses into an intermediate
272 address space that can map to host virtual address spaces. Generally
273 speaking, the size of guest memory can always fit into ram_addr_t but
274 it would not be correct to store an actual guest physical address in a
277 For CPU virtual addresses there are several possible types.
278 vaddr is the best type to use to hold a CPU virtual address in
279 target-independent code. It is guaranteed to be large enough to hold a
280 virtual address for any target, and it does not change size from target
281 to target. It is always unsigned.
282 target_ulong is a type the size of a virtual address on the CPU; this means
283 it may be 32 or 64 bits depending on which target is being built. It should
284 therefore be used only in target-specific code, and in some
285 performance-critical built-per-target core code such as the TLB code.
286 There is also a signed version, target_long.
287 abi_ulong is for the ``*``-user targets, and represents a type the size of
288 'void ``*``' in that target's ABI. (This may not be the same as the size of a
289 full CPU virtual address in the case of target ABIs which use 32 bit pointers
290 on 64 bit CPUs, like sparc32plus.) Definitions of structures that must match
291 the target's ABI must use this type for anything that on the target is defined
292 to be an 'unsigned long' or a pointer type.
293 There is also a signed version, abi_long.
295 Of course, take all of the above with a grain of salt. If you're about
296 to use some system interface that requires a type like size_t, pid_t or
297 off_t, use matching types for any corresponding variables.
299 Also, if you try to use e.g., "unsigned int" as a type, and that
300 conflicts with the signedness of a related variable, sometimes
301 it's best just to use the *wrong* type, if "pulling the thread"
302 and fixing all related variables would be too invasive.
304 Finally, while using descriptive types is important, be careful not to
305 go overboard. If whatever you're doing causes warnings, or requires
306 casts, then reconsider or ask for help.
311 Ensure that all of your pointers are "const-correct".
312 Unless a pointer is used to modify the pointed-to storage,
313 give it the "const" attribute. That way, the reader knows
314 up-front that this is a read-only pointer. Perhaps more
315 importantly, if we're diligent about this, when you see a non-const
316 pointer, you're guaranteed that it is used to modify the storage
317 it points to, or it is aliased to another pointer that is.
322 Typedefs are used to eliminate the redundant 'struct' keyword, since type
323 names have a different style than other identifiers ("CamelCase" versus
324 "snake_case"). Each named struct type should have a CamelCase name and a
325 corresponding typedef.
327 Since certain C compilers choke on duplicated typedefs, you should avoid
328 them and declare a typedef only in one header file. For common types,
329 you can use "include/qemu/typedefs.h" for example. However, as a matter
330 of convenience it is also perfectly fine to use forward struct
331 definitions instead of typedefs in headers and function prototypes; this
332 avoids problems with duplicated typedefs and reduces the need to include
333 headers from other headers.
335 Reserved namespaces in C and POSIX
336 ----------------------------------
338 Underscore capital, double underscore, and underscore 't' suffixes should be
341 Low level memory management
342 ===========================
344 Use of the malloc/free/realloc/calloc/valloc/memalign/posix_memalign
345 APIs is not allowed in the QEMU codebase. Instead of these routines,
346 use the GLib memory allocation routines g_malloc/g_malloc0/g_new/
347 g_new0/g_realloc/g_free or QEMU's qemu_memalign/qemu_blockalign/qemu_vfree
350 Please note that g_malloc will exit on allocation failure, so there
351 is no need to test for failure (as you would have to with malloc).
352 Calling g_malloc with a zero size is valid and will return NULL.
354 Prefer g_new(T, n) instead of g_malloc(sizeof(T) ``*`` n) for the following
357 * It catches multiplication overflowing size_t;
358 * It returns T ``*`` instead of void ``*``, letting compiler catch more type errors.
364 T *v = g_malloc(sizeof(*v))
366 are acceptable, though.
368 Memory allocated by qemu_memalign or qemu_blockalign must be freed with
369 qemu_vfree, since breaking this will cause problems on Win32.
374 Do not use the strncpy function. As mentioned in the man page, it does *not*
375 guarantee a NULL-terminated buffer, which makes it extremely dangerous to use.
376 It also zeros trailing destination bytes out to the specified length. Instead,
377 use this similar function when possible, but note its different signature:
381 void pstrcpy(char *dest, int dest_buf_size, const char *src)
383 Don't use strcat because it can't check for buffer overflows, but:
387 char *pstrcat(char *buf, int buf_size, const char *s)
389 The same limitation exists with sprintf and vsprintf, so use snprintf and
392 QEMU provides other useful string functions:
396 int strstart(const char *str, const char *val, const char **ptr)
397 int stristart(const char *str, const char *val, const char **ptr)
398 int qemu_strnlen(const char *s, int max_len)
400 There are also replacement character processing macros for isxyz and toxyz,
401 so instead of e.g. isalnum you should use qemu_isalnum.
403 Because of the memory management rules, you must use g_strdup/g_strndup
404 instead of plain strdup/strndup.
406 Printf-style functions
407 ======================
409 Whenever you add a new printf-style function, i.e., one with a format
410 string argument and following "..." in its prototype, be sure to use
411 gcc's printf attribute directive in the prototype.
413 This makes it so gcc's -Wformat and -Wformat-security options can do
414 their jobs and cross-check format strings with the number and types
417 C standard, implementation defined and undefined behaviors
418 ==========================================================
420 C code in QEMU should be written to the C99 language specification. A copy
421 of the final version of the C99 standard with corrigenda TC1, TC2, and TC3
422 included, formatted as a draft, can be downloaded from:
424 `<http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf>`_
426 The C language specification defines regions of undefined behavior and
427 implementation defined behavior (to give compiler authors enough leeway to
428 produce better code). In general, code in QEMU should follow the language
429 specification and avoid both undefined and implementation defined
430 constructs. ("It works fine on the gcc I tested it with" is not a valid
431 argument...) However there are a few areas where we allow ourselves to
432 assume certain behaviors because in practice all the platforms we care about
433 behave in the same way and writing strictly conformant code would be
436 * you may assume that integers are 2s complement representation
437 * you may assume that right shift of a signed integer duplicates
438 the sign bit (ie it is an arithmetic shift, not a logical shift)
440 In addition, QEMU assumes that the compiler does not use the latitude
441 given in C99 and C11 to treat aspects of signed '<<' as undefined, as
442 documented in the GNU Compiler Collection manual starting at version 4.0.
444 Automatic memory deallocation
445 =============================
447 QEMU has a mandatory dependency either the GCC or CLang compiler. As
448 such it has the freedom to make use of a C language extension for
449 automatically running a cleanup function when a stack variable goes
450 out of scope. This can be used to simplify function cleanup paths,
451 often allowing many goto jumps to be eliminated, through automatic
454 The GLib2 library provides a number of functions/macros for enabling
457 `<https://developer.gnome.org/glib/stable/glib-Miscellaneous-Macros.html>`_
461 * g_autofree - will invoke g_free() on the variable going out of scope
463 * g_autoptr - for structs / objects, will invoke the cleanup func created
464 by a previous use of G_DEFINE_AUTOPTR_CLEANUP_FUNC. This is
465 supported for most GLib data types and GObjects
467 For example, instead of
473 char *foo = g_strdup_printf("foo%", "wibble");
488 Using g_autofree/g_autoptr enables the code to be written as:
493 g_autofree char *foo = g_strdup_printf("foo%", "wibble");
494 g_autoptr (GList) bar = .....
503 While this generally results in simpler, less leak-prone code, there
504 are still some caveats to beware of
506 * Variables declared with g_auto* MUST always be initialized,
507 otherwise the cleanup function will use uninitialized stack memory
509 * If a variable declared with g_auto* holds a value which must
510 live beyond the life of the function, that value must be saved
511 and the original variable NULL'd out. This can be simpler using
517 char *somefunc(void) {
518 g_autofree char *foo = g_strdup_printf("foo%", "wibble");
519 g_autoptr (GList) bar = .....
525 return g_steal_pointer(&foo);
529 Error handling and reporting
530 ============================
532 Reporting errors to the human user
533 ----------------------------------
535 Do not use printf(), fprintf() or monitor_printf(). Instead, use
536 error_report() or error_vreport() from error-report.h. This ensures the
537 error is reported in the right place (current monitor or stderr), and in
540 Use error_printf() & friends to print additional information.
542 error_report() prints the current location. In certain common cases
543 like command line parsing, the current location is tracked
544 automatically. To manipulate it manually, use the loc_``*``() from
550 An error can't always be reported to the user right where it's detected,
551 but often needs to be propagated up the call chain to a place that can
552 handle it. This can be done in various ways.
554 The most flexible one is Error objects. See error.h for usage
557 Use the simplest suitable method to communicate success / failure to
558 callers. Stick to common methods: non-negative on success / -1 on
559 error, non-negative / -errno, non-null / null, or Error objects.
561 Example: when a function returns a non-null pointer on success, and it
562 can fail only in one way (as far as the caller is concerned), returning
563 null on failure is just fine, and certainly simpler and a lot easier on
564 the eyes than propagating an Error object through an Error ``*````*`` parameter.
566 Example: when a function's callers need to report details on failure
567 only the function really knows, use Error ``*````*``, and set suitable errors.
569 Do not report an error to the user when you're also returning an error
570 for somebody else to handle. Leave the reporting to the place that
571 consumes the error returned.
576 Calling exit() is fine when handling configuration errors during
577 startup. It's problematic during normal operation. In particular,
578 monitor commands should never exit().
580 Do not call exit() or abort() to handle an error that can be triggered
581 by the guest (e.g., some unimplemented corner case in guest code
582 translation or device emulation). Guests should not be able to
585 Note that &error_fatal is just another way to exit(1), and &error_abort
586 is just another way to abort().
595 In trace-events files, use a '0x' prefix to specify hex numbers, as in:
599 some_trace(unsigned x, uint64_t y) "x 0x%x y 0x" PRIx64
601 An exception is made for groups of numbers that are hexadecimal by
602 convention and separated by the symbols '.', '/', ':', or ' ' (such as
607 another_trace(int cssid, int ssid, int dev_num) "bus id: %x.%x.%04x"
609 However, you can use '0x' for such groups if you want. Anyway, be sure that
610 it is obvious that numbers are in hex, ex.:
614 data_dump(uint8_t c1, uint8_t c2, uint8_t c3) "bytes (in hex): %02x %02x %02x"
616 Rationale: hex numbers are hard to read in logs when there is no 0x prefix,
617 especially when (occasionally) the representation doesn't contain any letters
618 and especially in one line with other decimal numbers. Number groups are allowed
619 to not use '0x' because for some things notations like %x.%x.%x are used not
620 only in Qemu. Also dumping raw data bytes with '0x' is less readable.
625 Do not use printf flag '#', like '%#x'.
627 Rationale: there are two ways to add a '0x' prefix to printed number: '0x%...'
628 and '%#...'. For consistency the only one way should be used. Arguments for
632 * '%#' omits the 0x for the value 0 which makes output inconsistent