Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 1 | Coding Style |
| 2 | ============ |
| 3 | |
| 4 | The following sections outline the |TF-A| coding style for *C* code. The style |
| 5 | is based on the `Linux kernel coding style`_, with a few modifications. |
| 6 | |
| 7 | The style should not be considered *set in stone*. Feel free to provide feedback |
| 8 | and suggestions. |
| 9 | |
| 10 | .. note:: |
| 11 | You will almost certainly find code in the |TF-A| repository that does not |
| 12 | follow the style. The intent is for all code to do so eventually. |
| 13 | |
| 14 | File Encoding |
| 15 | ------------- |
| 16 | |
| 17 | The source code must use the **UTF-8** character encoding. Comments and |
| 18 | documentation may use non-ASCII characters when required (e.g. Greek letters |
| 19 | used for units) but code itself is still limited to ASCII characters. |
| 20 | |
| 21 | Newlines must be in **Unix** style, which means that only the Line Feed (``LF``) |
| 22 | character is used to break a line and reset to the first column. |
| 23 | |
| 24 | Language |
| 25 | -------- |
| 26 | |
| 27 | The primary language for comments and naming must be International English. In |
| 28 | cases where there is a conflict between the American English and British English |
| 29 | spellings of a word, the American English spelling is used. |
| 30 | |
| 31 | Exceptions are made when referring directly to something that does not use |
| 32 | international style, such as the name of a company. In these cases the existing |
| 33 | name should be used as-is. |
| 34 | |
| 35 | C Language Standard |
| 36 | ------------------- |
| 37 | |
| 38 | The C language mode used for TF-A is *GNU99*. This is the "GNU dialect of ISO |
| 39 | C99", which implies the *ISO C99* standard with GNU extensions. |
| 40 | |
| 41 | Both GCC and Clang compiler toolchains have support for *GNU99* mode, though |
| 42 | Clang does lack support for a small number of GNU extensions. These |
| 43 | missing extensions are rarely used, however, and should not pose a problem. |
| 44 | |
Sandrine Bailleux | 398b188 | 2020-08-17 08:52:33 +0200 | [diff] [blame] | 45 | .. _misra-compliance: |
| 46 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 47 | MISRA Compliance |
| 48 | ---------------- |
| 49 | |
| 50 | TF-A attempts to comply with the `MISRA C:2012 Guidelines`_. Coverity |
| 51 | Static Analysis is used to regularly generate a report of current MISRA defects |
| 52 | and to prevent the addition of new ones. |
| 53 | |
| 54 | It is not possible for the project to follow all MISRA guidelines. We maintain |
| 55 | `a spreadsheet`_ that lists all rules and directives and whether we aim to |
| 56 | comply with them or not. A rationale is given for each deviation. |
| 57 | |
| 58 | .. note:: |
| 59 | Enforcing a rule does not mean that the codebase is free of defects |
| 60 | of that rule, only that they would ideally be removed. |
| 61 | |
| 62 | .. note:: |
| 63 | Third-party libraries are not considered in our MISRA analysis and we do not |
| 64 | intend to modify them to make them MISRA compliant. |
| 65 | |
| 66 | Indentation |
| 67 | ----------- |
| 68 | |
| 69 | Use **tabs** for indentation. The use of spaces for indentation is forbidden |
| 70 | except in the case where a term is being indented to a boundary that cannot be |
| 71 | achieved using tabs alone. |
| 72 | |
| 73 | Tab spacing should be set to **8 characters**. |
| 74 | |
| 75 | Trailing whitespace is not allowed and must be trimmed. |
| 76 | |
| 77 | Spacing |
| 78 | ------- |
| 79 | |
| 80 | Single spacing should be used around most operators, including: |
| 81 | |
| 82 | - Arithmetic operators (``+``, ``-``, ``/``, ``*``) |
| 83 | - Assignment operators (``=``, ``+=``, etc) |
| 84 | - Boolean operators (``&&``, ``||``) |
| 85 | - Comparison operators (``<``, ``>``, ``==``, etc) |
| 86 | |
| 87 | A space should also be used to separate parentheses and braces when they are not |
| 88 | already separated by a newline, such as for the ``if`` statement in the |
| 89 | following example: |
| 90 | |
| 91 | .. code:: c |
| 92 | |
| 93 | int function_foo(bool bar) |
| 94 | { |
| 95 | if (bar) { |
| 96 | function_baz(); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | Note that there is no space between the name of a function and the following |
| 101 | parentheses. |
| 102 | |
| 103 | Control statements (``if``, ``for``, ``switch``, ``while``, etc) must be |
David Horstmann | 051fd6d | 2020-11-12 15:19:04 +0000 | [diff] [blame] | 104 | separated from the following open parenthesis by a single space. The previous |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 105 | example illustrates this for an ``if`` statement. |
| 106 | |
| 107 | Line Length |
| 108 | ----------- |
| 109 | |
| 110 | Line length *should* be at most **80 characters**. This limit does not include |
| 111 | non-printing characters such as the line feed. |
| 112 | |
| 113 | This rule is a *should*, not a must, and it is acceptable to exceed the limit |
| 114 | **slightly** where the readability of the code would otherwise be significantly |
| 115 | reduced. Use your judgement in these cases. |
| 116 | |
| 117 | Blank Lines |
| 118 | ----------- |
| 119 | |
| 120 | Functions are usually separated by a single blank line. In certain cases it is |
| 121 | acceptable to use additional blank lines for clarity, if required. |
| 122 | |
| 123 | The file must end with a single newline character. Many editors have the option |
| 124 | to insert this automatically and to trim multiple blank lines at the end of the |
| 125 | file. |
| 126 | |
| 127 | Braces |
| 128 | ------ |
| 129 | |
| 130 | Opening Brace Placement |
| 131 | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 132 | |
| 133 | Braces follow the **Kernighan and Ritchie (K&R)** style, where the opening brace |
| 134 | is **not** placed on a new line. |
| 135 | |
| 136 | Example for a ``while`` loop: |
| 137 | |
| 138 | .. code:: c |
| 139 | |
| 140 | while (condition) { |
| 141 | foo(); |
| 142 | bar(); |
| 143 | } |
| 144 | |
| 145 | This style applies to all blocks except for functions which, following the Linux |
| 146 | style, **do** place the opening brace on a new line. |
| 147 | |
| 148 | Example for a function: |
| 149 | |
| 150 | .. code:: c |
| 151 | |
| 152 | int my_function(void) |
| 153 | { |
| 154 | int a; |
| 155 | |
| 156 | a = 1; |
| 157 | return a; |
| 158 | } |
| 159 | |
| 160 | Conditional Statement Bodies |
| 161 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 162 | |
| 163 | Where conditional statements (such as ``if``, ``for``, ``while`` and ``do``) are |
| 164 | used, braces must be placed around the statements that form the body of the |
| 165 | conditional. This is the case regardless of the number of statements in the |
| 166 | body. |
| 167 | |
| 168 | .. note:: |
| 169 | This is a notable departure from the Linux coding style that has been |
| 170 | adopted to follow MISRA guidelines more closely and to help prevent errors. |
| 171 | |
| 172 | For example, use the following style: |
| 173 | |
| 174 | .. code:: c |
| 175 | |
| 176 | if (condition) { |
| 177 | foo++; |
| 178 | } |
| 179 | |
| 180 | instead of omitting the optional braces around a single statement: |
| 181 | |
| 182 | .. code:: c |
| 183 | |
| 184 | /* This is violating MISRA C 2012: Rule 15.6 */ |
| 185 | if (condition) |
| 186 | foo++; |
| 187 | |
| 188 | The reason for this is to prevent accidental changes to control flow when |
| 189 | modifying the body of the conditional. For example, at a quick glance it is easy |
| 190 | to think that the value of ``bar`` is only incremented if ``condition`` |
| 191 | evaluates to ``true`` but this is not the case - ``bar`` will always be |
| 192 | incremented regardless of the condition evaluation. If the developer forgets to |
| 193 | add braces around the conditional body when adding the ``bar++;`` statement then |
| 194 | the program execution will not proceed as intended. |
| 195 | |
| 196 | .. code:: c |
| 197 | |
| 198 | /* This is violating MISRA C 2012: Rule 15.6 */ |
| 199 | if (condition) |
| 200 | foo++; |
| 201 | bar++; |
| 202 | |
| 203 | Naming |
| 204 | ------ |
| 205 | |
| 206 | Functions |
| 207 | ^^^^^^^^^ |
| 208 | |
| 209 | Use lowercase for function names, separating multiple words with an underscore |
| 210 | character (``_``). This is sometimes referred to as *Snake Case*. An example is |
| 211 | given below: |
| 212 | |
| 213 | .. code:: c |
| 214 | |
| 215 | void bl2_arch_setup(void) |
| 216 | { |
| 217 | ... |
| 218 | } |
| 219 | |
| 220 | Local Variables and Parameters |
| 221 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 222 | |
| 223 | Local variables and function parameters use the same format as function names: |
| 224 | lowercase with underscore separation between multiple words. An example is |
| 225 | given below: |
| 226 | |
| 227 | .. code:: c |
| 228 | |
| 229 | static void set_scr_el3_from_rm(uint32_t type, |
| 230 | uint32_t interrupt_type_flags, |
| 231 | uint32_t security_state) |
| 232 | { |
| 233 | uint32_t flag, bit_pos; |
| 234 | |
| 235 | ... |
| 236 | |
| 237 | } |
| 238 | |
| 239 | Preprocessor Macros |
| 240 | ^^^^^^^^^^^^^^^^^^^ |
| 241 | |
| 242 | Identifiers that are defined using preprocessor macros are written in all |
| 243 | uppercase text. |
| 244 | |
| 245 | .. code:: c |
| 246 | |
| 247 | #define BUFFER_SIZE_BYTES 64 |
| 248 | |
| 249 | Function Attributes |
| 250 | ------------------- |
| 251 | |
| 252 | Place any function attributes after the function type and before the function |
| 253 | name. |
| 254 | |
| 255 | .. code:: c |
| 256 | |
| 257 | void __init plat_arm_interconnect_init(void); |
| 258 | |
| 259 | Alignment |
| 260 | --------- |
| 261 | |
| 262 | Alignment should be performed primarily with tabs, adding spaces if required to |
| 263 | achieve a granularity that is smaller than the tab size. For example, with a tab |
| 264 | size of eight columns it would be necessary to use one tab character and two |
| 265 | spaces to indent text by ten columns. |
| 266 | |
| 267 | Switch Statement Alignment |
| 268 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 269 | |
| 270 | When using ``switch`` statements, align each ``case`` statement with the |
| 271 | ``switch`` so that they are in the same column. |
| 272 | |
| 273 | .. code:: c |
| 274 | |
| 275 | switch (condition) { |
| 276 | case A: |
| 277 | foo(); |
| 278 | case B: |
| 279 | bar(); |
| 280 | default: |
| 281 | baz(); |
| 282 | } |
| 283 | |
| 284 | Pointer Alignment |
| 285 | ^^^^^^^^^^^^^^^^^ |
| 286 | |
| 287 | The reference and dereference operators (ampersand and *pointer star*) must be |
| 288 | aligned with the name of the object on which they are operating, as opposed to |
| 289 | the type of the object. |
| 290 | |
| 291 | .. code:: c |
| 292 | |
| 293 | uint8_t *foo; |
| 294 | |
| 295 | foo = &bar; |
| 296 | |
| 297 | |
| 298 | Comments |
| 299 | -------- |
| 300 | |
| 301 | The general rule for comments is that the double-slash style of comment (``//``) |
| 302 | is not allowed. Examples of the allowed comment formats are shown below: |
| 303 | |
| 304 | .. code:: c |
| 305 | |
| 306 | /* |
| 307 | * This example illustrates the first allowed style for multi-line comments. |
| 308 | * |
| 309 | * Blank lines within multi-lines are allowed when they add clarity or when |
| 310 | * they separate multiple contexts. |
| 311 | * |
| 312 | */ |
| 313 | |
| 314 | .. code:: c |
| 315 | |
| 316 | /************************************************************************** |
| 317 | * This is the second allowed style for multi-line comments. |
| 318 | * |
| 319 | * In this style, the first and last lines use asterisks that run the full |
| 320 | * width of the comment at its widest point. |
| 321 | * |
| 322 | * This style can be used for additional emphasis. |
| 323 | * |
| 324 | *************************************************************************/ |
| 325 | |
| 326 | .. code:: c |
| 327 | |
| 328 | /* Single line comments can use this format */ |
| 329 | |
| 330 | .. code:: c |
| 331 | |
| 332 | /*************************************************************************** |
| 333 | * This alternative single-line comment style can also be used for emphasis. |
| 334 | **************************************************************************/ |
| 335 | |
| 336 | Headers and inclusion |
| 337 | --------------------- |
| 338 | |
| 339 | Header guards |
| 340 | ^^^^^^^^^^^^^ |
| 341 | |
| 342 | For a header file called "some_driver.h" the style used by |TF-A| is: |
| 343 | |
| 344 | .. code:: c |
| 345 | |
| 346 | #ifndef SOME_DRIVER_H |
| 347 | #define SOME_DRIVER_H |
| 348 | |
| 349 | <header content> |
| 350 | |
| 351 | #endif /* SOME_DRIVER_H */ |
| 352 | |
| 353 | Include statement ordering |
| 354 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 355 | |
| 356 | All header files that are included by a source file must use the following, |
| 357 | grouped ordering. This is to improve readability (by making it easier to quickly |
| 358 | read through the list of headers) and maintainability. |
| 359 | |
| 360 | #. *System* includes: Header files from the standard *C* library, such as |
| 361 | ``stddef.h`` and ``string.h``. |
| 362 | |
| 363 | #. *Project* includes: Header files under the ``include/`` directory within |
| 364 | |TF-A| are *project* includes. |
| 365 | |
| 366 | #. *Platform* includes: Header files relating to a single, specific platform, |
| 367 | and which are located under the ``plat/<platform_name>`` directory within |
| 368 | |TF-A|, are *platform* includes. |
| 369 | |
| 370 | Within each group, ``#include`` statements must be in alphabetical order, |
| 371 | taking both the file and directory names into account. |
| 372 | |
| 373 | Groups must be separated by a single blank line for clarity. |
| 374 | |
| 375 | The example below illustrates the ordering rules using some contrived header |
| 376 | file names; this type of name reuse should be otherwise avoided. |
| 377 | |
| 378 | .. code:: c |
| 379 | |
| 380 | #include <string.h> |
| 381 | |
| 382 | #include <a_dir/example/a_header.h> |
| 383 | #include <a_dir/example/b_header.h> |
| 384 | #include <a_dir/test/a_header.h> |
| 385 | #include <b_dir/example/a_header.h> |
| 386 | |
| 387 | #include "a_header.h" |
| 388 | |
| 389 | Include statement variants |
| 390 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 391 | |
| 392 | Two variants of the ``#include`` directive are acceptable in the |TF-A| |
| 393 | codebase. Correct use of the two styles improves readability by suggesting the |
| 394 | location of the included header and reducing ambiguity in cases where generic |
| 395 | and platform-specific headers share a name. |
| 396 | |
| 397 | For header files that are in the same directory as the source file that is |
| 398 | including them, use the ``"..."`` variant. |
| 399 | |
| 400 | For header files that are **not** in the same directory as the source file that |
| 401 | is including them, use the ``<...>`` variant. |
| 402 | |
| 403 | Example (bl1_fwu.c): |
| 404 | |
| 405 | .. code:: c |
| 406 | |
| 407 | #include <assert.h> |
| 408 | #include <errno.h> |
| 409 | #include <string.h> |
| 410 | |
| 411 | #include "bl1_private.h" |
| 412 | |
| 413 | Typedefs |
| 414 | -------- |
| 415 | |
| 416 | Avoid anonymous typedefs of structs/enums in headers |
| 417 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 418 | |
| 419 | For example, the following definition: |
| 420 | |
| 421 | .. code:: c |
| 422 | |
| 423 | typedef struct { |
| 424 | int arg1; |
| 425 | int arg2; |
| 426 | } my_struct_t; |
| 427 | |
| 428 | |
| 429 | is better written as: |
| 430 | |
| 431 | .. code:: c |
| 432 | |
| 433 | struct my_struct { |
| 434 | int arg1; |
| 435 | int arg2; |
| 436 | }; |
| 437 | |
| 438 | This allows function declarations in other header files that depend on the |
| 439 | struct/enum to forward declare the struct/enum instead of including the |
| 440 | entire header: |
| 441 | |
| 442 | .. code:: c |
| 443 | |
| 444 | struct my_struct; |
| 445 | void my_func(struct my_struct *arg); |
| 446 | |
| 447 | instead of: |
| 448 | |
| 449 | .. code:: c |
| 450 | |
| 451 | #include <my_struct.h> |
| 452 | void my_func(my_struct_t *arg); |
| 453 | |
| 454 | Some TF definitions use both a struct/enum name **and** a typedef name. This |
| 455 | is discouraged for new definitions as it makes it difficult for TF to comply |
| 456 | with MISRA rule 8.3, which states that "All declarations of an object or |
| 457 | function shall use the same names and type qualifiers". |
| 458 | |
| 459 | The Linux coding standards also discourage new typedefs and checkpatch emits |
| 460 | a warning for this. |
| 461 | |
| 462 | Existing typedefs will be retained for compatibility. |
| 463 | |
| 464 | -------------- |
| 465 | |
| 466 | *Copyright (c) 2020, Arm Limited. All rights reserved.* |
| 467 | |
| 468 | .. _`Linux kernel coding style`: https://www.kernel.org/doc/html/latest/process/coding-style.html |
| 469 | .. _`MISRA C:2012 Guidelines`: https://www.misra.org.uk/Activities/MISRAC/tabid/160/Default.aspx |
| 470 | .. _`a spreadsheet`: https://developer.trustedfirmware.org/file/download/lamajxif3w7c4mpjeoo5/PHID-FILE-fp7c7acszn6vliqomyhn/MISRA-and-TF-Analysis-v1.3.ods |