]> git.ipfire.org Git - thirdparty/qemu.git/blob - CODING_STYLE.rst
docs: document use of automatic cleanup functions in glib
[thirdparty/qemu.git] / CODING_STYLE.rst
1 =================
2 QEMU Coding Style
3 =================
4
5 .. contents:: Table of Contents
6
7 Please use the script checkpatch.pl in the scripts directory to check
8 patches before submitting.
9
10 Whitespace
11 ==========
12
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
17 lost on this issue.
18
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:
22
23 * You have just one way to specify whitespace, not two. Ambiguity breeds
24 mistakes.
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
27 unbalanced.
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
31 every line.
32 * It is the QEMU coding style.
33
34 Do not leave whitespace dangling off the ends of lines.
35
36 Multiline Indent
37 ----------------
38
39 There are several places where indent is necessary:
40
41 * if/else
42 * while/for
43 * function definition & call
44
45 When breaking up a long line to fit within line width, we need a proper indent
46 for the following lines.
47
48 In case of if/else, while/for, align the secondary lines just after the
49 opening parenthesis of the first.
50
51 For example:
52
53 .. code-block:: c
54
55 if (a == 1 &&
56 b == 2) {
57
58 while (a == 1 &&
59 b == 2) {
60
61 In case of function, there are several variants:
62
63 * 4 spaces indent from the beginning
64 * align the secondary lines just after the opening parenthesis of the first
65
66 For example:
67
68 .. code-block:: c
69
70 do_something(x, y,
71 z);
72
73 do_something(x, y,
74 z);
75
76 do_something(x, do_another(y,
77 z));
78
79 Line width
80 ==========
81
82 Lines should be 80 characters; try not to make them longer.
83
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.
87
88 Rationale:
89
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.
98
99 Naming
100 ======
101
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.
108
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.
111
112 Block structure
113 ===============
114
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
119 keyword. Example:
120
121 .. code-block:: c
122
123 if (a == 5) {
124 printf("a was 5.\n");
125 } else if (a == 6) {
126 printf("a was 6.\n");
127 } else {
128 printf("a was something else entirely.\n");
129 }
130
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
133 statement.
134
135 An exception is the opening brace for a function; for reasons of tradition
136 and clarity it comes on a line by itself:
137
138 .. code-block:: c
139
140 void a_function(void)
141 {
142 do_something();
143 }
144
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.
148
149 Declarations
150 ============
151
152 Mixed declarations (interleaving statements and declarations within
153 blocks) are generally not allowed; declarations should be at the beginning
154 of blocks.
155
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.
161
162 Conditional statements
163 ======================
164
165 When comparing a variable for (in)equality with a constant, list the
166 constant on the right, as in:
167
168 .. code-block:: c
169
170 if (a == 1) {
171 /* Reads like: "If a equals 1" */
172 do_something();
173 }
174
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.
178
179 Comment style
180 =============
181
182 We use traditional C-style /``*`` ``*``/ comments and avoid // comments.
183
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.
186
187 Multiline comment blocks should have a row of stars on the left,
188 and the initial /``*`` and terminating ``*``/ both on their own lines:
189
190 .. code-block:: c
191
192 /*
193 * like
194 * this
195 */
196
197 This is the same format required by the Linux kernel coding style.
198
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
203 comment anyway.)
204
205 Rationale: Consistency, and ease of visually picking out a multiline
206 comment from the surrounding code.
207
208 Preprocessor
209 ============
210
211 Variadic macros
212 ---------------
213
214 For variadic macros, stick with this C99-like syntax:
215
216 .. code-block:: c
217
218 #define DPRINTF(fmt, ...) \
219 do { printf("IRQ: " fmt, ## __VA_ARGS__); } while (0)
220
221 Include directives
222 ------------------
223
224 Order include directives as follows:
225
226 .. code-block:: c
227
228 #include "qemu/osdep.h" /* Always first... */
229 #include <...> /* then system headers... */
230 #include "..." /* and finally QEMU headers. */
231
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.
236
237 Do not include "qemu/osdep.h" from header files since the .c file will have
238 already included it.
239
240 C types
241 =======
242
243 It should be common sense to use the right type, but we have collected
244 a few useful guidelines here.
245
246 Scalars
247 -------
248
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
251 unsigned type.
252
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.
256
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).
262
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.
266
267 Don't use Linux kernel internal types like u32, __u32 or __le32.
268
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
275 ram_addr_t.
276
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.
294
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.
298
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.
303
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.
307
308 Pointers
309 --------
310
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.
318
319 Typedefs
320 --------
321
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.
326
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.
334
335 Reserved namespaces in C and POSIX
336 ----------------------------------
337
338 Underscore capital, double underscore, and underscore 't' suffixes should be
339 avoided.
340
341 Low level memory management
342 ===========================
343
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
348 APIs.
349
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.
353
354 Prefer g_new(T, n) instead of g_malloc(sizeof(T) ``*`` n) for the following
355 reasons:
356
357 * It catches multiplication overflowing size_t;
358 * It returns T ``*`` instead of void ``*``, letting compiler catch more type errors.
359
360 Declarations like
361
362 .. code-block:: c
363
364 T *v = g_malloc(sizeof(*v))
365
366 are acceptable, though.
367
368 Memory allocated by qemu_memalign or qemu_blockalign must be freed with
369 qemu_vfree, since breaking this will cause problems on Win32.
370
371 String manipulation
372 ===================
373
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:
378
379 .. code-block:: c
380
381 void pstrcpy(char *dest, int dest_buf_size, const char *src)
382
383 Don't use strcat because it can't check for buffer overflows, but:
384
385 .. code-block:: c
386
387 char *pstrcat(char *buf, int buf_size, const char *s)
388
389 The same limitation exists with sprintf and vsprintf, so use snprintf and
390 vsnprintf.
391
392 QEMU provides other useful string functions:
393
394 .. code-block:: c
395
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)
399
400 There are also replacement character processing macros for isxyz and toxyz,
401 so instead of e.g. isalnum you should use qemu_isalnum.
402
403 Because of the memory management rules, you must use g_strdup/g_strndup
404 instead of plain strdup/strndup.
405
406 Printf-style functions
407 ======================
408
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.
412
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
415 of arguments.
416
417 C standard, implementation defined and undefined behaviors
418 ==========================================================
419
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:
423
424 `<http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf>`_
425
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
434 painful. These are:
435
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)
439
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.
443
444 Automatic memory deallocation
445 =============================
446
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
452 free'ing of memory.
453
454 The GLib2 library provides a number of functions/macros for enabling
455 automatic cleanup:
456
457 `<https://developer.gnome.org/glib/stable/glib-Miscellaneous-Macros.html>`_
458
459 Most notably:
460
461 * g_autofree - will invoke g_free() on the variable going out of scope
462
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
466
467 For example, instead of
468
469 .. code-block:: c
470
471 int somefunc(void) {
472 int ret = -1;
473 char *foo = g_strdup_printf("foo%", "wibble");
474 GList *bar = .....
475
476 if (eek) {
477 goto cleanup;
478 }
479
480 ret = 0;
481
482 cleanup:
483 g_free(foo);
484 g_list_free(bar);
485 return ret;
486 }
487
488 Using g_autofree/g_autoptr enables the code to be written as:
489
490 .. code-block:: c
491
492 int somefunc(void) {
493 g_autofree char *foo = g_strdup_printf("foo%", "wibble");
494 g_autoptr (GList) bar = .....
495
496 if (eek) {
497 return -1;
498 }
499
500 return 0;
501 }
502
503 While this generally results in simpler, less leak-prone code, there
504 are still some caveats to beware of
505
506 * Variables declared with g_auto* MUST always be initialized,
507 otherwise the cleanup function will use uninitialized stack memory
508
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
512 g_steal_pointer
513
514
515 .. code-block:: c
516
517 char *somefunc(void) {
518 g_autofree char *foo = g_strdup_printf("foo%", "wibble");
519 g_autoptr (GList) bar = .....
520
521 if (eek) {
522 return NULL;
523 }
524
525 return g_steal_pointer(&foo);
526 }
527
528
529 Error handling and reporting
530 ============================
531
532 Reporting errors to the human user
533 ----------------------------------
534
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
538 a uniform format.
539
540 Use error_printf() & friends to print additional information.
541
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
545 error-report.h.
546
547 Propagating errors
548 ------------------
549
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.
553
554 The most flexible one is Error objects. See error.h for usage
555 information.
556
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.
560
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.
565
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.
568
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.
572
573 Handling errors
574 ---------------
575
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().
579
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
583 terminate QEMU.
584
585 Note that &error_fatal is just another way to exit(1), and &error_abort
586 is just another way to abort().
587
588
589 trace-events style
590 ==================
591
592 0x prefix
593 ---------
594
595 In trace-events files, use a '0x' prefix to specify hex numbers, as in:
596
597 .. code-block::
598
599 some_trace(unsigned x, uint64_t y) "x 0x%x y 0x" PRIx64
600
601 An exception is made for groups of numbers that are hexadecimal by
602 convention and separated by the symbols '.', '/', ':', or ' ' (such as
603 PCI bus id):
604
605 .. code-block::
606
607 another_trace(int cssid, int ssid, int dev_num) "bus id: %x.%x.%04x"
608
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.:
611
612 .. code-block::
613
614 data_dump(uint8_t c1, uint8_t c2, uint8_t c3) "bytes (in hex): %02x %02x %02x"
615
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.
621
622 '#' printf flag
623 ---------------
624
625 Do not use printf flag '#', like '%#x'.
626
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
629 '0x%' are:
630
631 * it is more popular
632 * '%#' omits the 0x for the value 0 which makes output inconsistent