Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 1 | Coding Guidelines |
| 2 | ================= |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 3 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 4 | This document provides some additional guidelines to consider when writing |
| 5 | |TF-A| code. These are not intended to be strictly-enforced rules like the |
| 6 | contents of the :ref:`Coding Style`. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 7 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 8 | Automatic Editor Configuration |
| 9 | ------------------------------ |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 10 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 11 | Many of the rules given below (such as indentation size, use of tabs, and |
| 12 | newlines) can be set automatically using the `EditorConfig`_ configuration file |
| 13 | in the root of the repository: ``.editorconfig``. With a supported editor, the |
| 14 | rules set out in this file can be automatically applied when you are editing |
| 15 | files in the |TF-A| repository. |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 16 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 17 | Several editors include built-in support for EditorConfig files, and many others |
| 18 | support its functionality through plugins. |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 19 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 20 | Use of the EditorConfig file is suggested but is not required. |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 21 | |
Sandrine Bailleux | e0cb189 | 2020-08-14 15:58:50 +0200 | [diff] [blame] | 22 | .. _automatic-compliance-checking: |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 23 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 24 | Automatic Compliance Checking |
| 25 | ----------------------------- |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 26 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 27 | To assist with coding style compliance, the project Makefile contains two |
| 28 | targets which both utilise the `checkpatch.pl` script that ships with the Linux |
| 29 | source tree. The project also defines certain *checkpatch* options in the |
| 30 | ``.checkpatch.conf`` file in the top-level directory. |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 31 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 32 | .. note:: |
| 33 | Checkpatch errors will gate upstream merging of pull requests. |
| 34 | Checkpatch warnings will not gate merging but should be reviewed and fixed if |
| 35 | possible. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 36 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 37 | To check the entire source tree, you must first download copies of |
| 38 | ``checkpatch.pl``, ``spelling.txt`` and ``const_structs.checkpatch`` available |
| 39 | in the `Linux master tree`_ *scripts* directory, then set the ``CHECKPATCH`` |
| 40 | environment variable to point to ``checkpatch.pl`` (with the other 2 files in |
| 41 | the same directory) and build the `checkcodebase` target: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 42 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 43 | .. code:: shell |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 44 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 45 | make CHECKPATCH=<path-to-linux>/linux/scripts/checkpatch.pl checkcodebase |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 46 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 47 | To just check the style on the files that differ between your local branch and |
| 48 | the remote master, use: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 49 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 50 | .. code:: shell |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 51 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 52 | make CHECKPATCH=<path-to-linux>/linux/scripts/checkpatch.pl checkpatch |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 53 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 54 | If you wish to check your patch against something other than the remote master, |
| 55 | set the ``BASE_COMMIT`` variable to your desired branch. By default, |
| 56 | ``BASE_COMMIT`` is set to ``origin/master``. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 57 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 58 | Ignored Checkpatch Warnings |
| 59 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 60 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 61 | Some checkpatch warnings in the TF codebase are deliberately ignored. These |
| 62 | include: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 63 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 64 | - ``**WARNING: line over 80 characters**``: Although the codebase should |
| 65 | generally conform to the 80 character limit this is overly restrictive in some |
| 66 | cases. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 67 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 68 | - ``**WARNING: Use of volatile is usually wrong``: see |
| 69 | `Why the “volatile” type class should not be used`_ . Although this document |
| 70 | contains some very useful information, there are several legimate uses of the |
| 71 | volatile keyword within the TF codebase. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 72 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 73 | Performance considerations |
| 74 | -------------------------- |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 75 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 76 | Avoid printf and use logging macros |
| 77 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 78 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 79 | ``debug.h`` provides logging macros (for example, ``WARN`` and ``ERROR``) |
| 80 | which wrap ``tf_log`` and which allow the logging call to be compiled-out |
| 81 | depending on the ``make`` command. Use these macros to avoid print statements |
| 82 | being compiled unconditionally into the binary. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 83 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 84 | Each logging macro has a numerical log level: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 85 | |
| 86 | .. code:: c |
| 87 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 88 | #define LOG_LEVEL_NONE 0 |
| 89 | #define LOG_LEVEL_ERROR 10 |
| 90 | #define LOG_LEVEL_NOTICE 20 |
| 91 | #define LOG_LEVEL_WARNING 30 |
| 92 | #define LOG_LEVEL_INFO 40 |
| 93 | #define LOG_LEVEL_VERBOSE 50 |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 94 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 95 | By default, all logging statements with a log level ``<= LOG_LEVEL_INFO`` will |
| 96 | be compiled into debug builds and all statements with a log level |
| 97 | ``<= LOG_LEVEL_NOTICE`` will be compiled into release builds. This can be |
| 98 | overridden from the command line or by the platform makefile (although it may be |
Sandrine Bailleux | 391679f | 2020-08-20 10:41:36 +0200 | [diff] [blame] | 99 | necessary to clean the build directory first). |
| 100 | |
| 101 | For example, to enable ``VERBOSE`` logging on FVP: |
| 102 | |
| 103 | .. code:: shell |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 104 | |
Sandrine Bailleux | 391679f | 2020-08-20 10:41:36 +0200 | [diff] [blame] | 105 | make PLAT=fvp LOG_LEVEL=50 all |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 106 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 107 | Use const data where possible |
| 108 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 109 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 110 | For example, the following code: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 111 | |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 112 | .. code:: c |
| 113 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 114 | struct my_struct { |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 115 | int arg1; |
| 116 | int arg2; |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 117 | }; |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 118 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 119 | void init(struct my_struct *ptr); |
| 120 | |
| 121 | void main(void) |
| 122 | { |
| 123 | struct my_struct x; |
| 124 | x.arg1 = 1; |
| 125 | x.arg2 = 2; |
| 126 | init(&x); |
| 127 | } |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 128 | |
| 129 | is better written as: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 130 | |
| 131 | .. code:: c |
| 132 | |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 133 | struct my_struct { |
| 134 | int arg1; |
| 135 | int arg2; |
| 136 | }; |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 137 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 138 | void init(const struct my_struct *ptr); |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 139 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 140 | void main(void) |
| 141 | { |
| 142 | const struct my_struct x = { 1, 2 }; |
| 143 | init(&x); |
| 144 | } |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 145 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 146 | This allows the linker to put the data in a read-only data section instead of a |
| 147 | writeable data section, which may result in a smaller and faster binary. Note |
| 148 | that this may require dependent functions (``init()`` in the above example) to |
| 149 | have ``const`` arguments, assuming they don't need to modify the data. |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 150 | |
Soby Mathew | 497092d | 2019-06-20 12:46:11 +0100 | [diff] [blame] | 151 | Libc functions that are banned or to be used with caution |
| 152 | --------------------------------------------------------- |
| 153 | |
| 154 | Below is a list of functions that present security risks and either must not be |
| 155 | used (Banned) or are discouraged from use and must be used with care (Caution). |
| 156 | |
| 157 | +------------------------+-----------+--------------------------------------+ |
| 158 | | libc function | Status | Comments | |
| 159 | +========================+===========+======================================+ |
John Tsichritzis | 890f3f0 | 2019-07-09 18:09:03 +0100 | [diff] [blame] | 160 | | ``strcpy, wcscpy``, | Banned | use strlcpy instead | |
Soby Mathew | 497092d | 2019-06-20 12:46:11 +0100 | [diff] [blame] | 161 | | ``strncpy`` | | | |
| 162 | +------------------------+-----------+--------------------------------------+ |
John Tsichritzis | 890f3f0 | 2019-07-09 18:09:03 +0100 | [diff] [blame] | 163 | | ``strcat, wcscat``, | Banned | use strlcat instead | |
Soby Mathew | 497092d | 2019-06-20 12:46:11 +0100 | [diff] [blame] | 164 | | ``strncat`` | | | |
John Tsichritzis | 890f3f0 | 2019-07-09 18:09:03 +0100 | [diff] [blame] | 165 | +------------------------+-----------+--------------------------------------+ |
Soby Mathew | 497092d | 2019-06-20 12:46:11 +0100 | [diff] [blame] | 166 | | ``sprintf, vsprintf`` | Banned | use snprintf, vsnprintf | |
| 167 | | | | instead | |
John Tsichritzis | 890f3f0 | 2019-07-09 18:09:03 +0100 | [diff] [blame] | 168 | +------------------------+-----------+--------------------------------------+ |
Soby Mathew | 497092d | 2019-06-20 12:46:11 +0100 | [diff] [blame] | 169 | | ``snprintf`` | Caution | ensure result fits in buffer | |
| 170 | | | | i.e : snprintf(buf,size...) < size | |
| 171 | +------------------------+-----------+--------------------------------------+ |
| 172 | | ``vsnprintf`` | Caution | inspect va_list match types | |
| 173 | | | | specified in format string | |
| 174 | +------------------------+-----------+--------------------------------------+ |
| 175 | | ``strtok`` | Banned | use strtok_r or strsep instead | |
| 176 | +------------------------+-----------+--------------------------------------+ |
| 177 | | ``strtok_r, strsep`` | Caution | inspect for terminated input buffer | |
| 178 | +------------------------+-----------+--------------------------------------+ |
| 179 | | ``ato*`` | Banned | use equivalent strto* functions | |
| 180 | +------------------------+-----------+--------------------------------------+ |
| 181 | | ``*toa`` | Banned | Use snprintf instead | |
| 182 | +------------------------+-----------+--------------------------------------+ |
| 183 | |
| 184 | The `libc` component in the codebase will not add support for the banned APIs. |
| 185 | |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 186 | Error handling and robustness |
| 187 | ----------------------------- |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 188 | |
| 189 | Using CASSERT to check for compile time data errors |
| 190 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 191 | |
| 192 | Where possible, use the ``CASSERT`` macro to check the validity of data known at |
| 193 | compile time instead of checking validity at runtime, to avoid unnecessary |
| 194 | runtime code. |
| 195 | |
| 196 | For example, this can be used to check that the assembler's and compiler's views |
| 197 | of the size of an array is the same. |
| 198 | |
| 199 | .. code:: c |
| 200 | |
| 201 | #include <cassert.h> |
| 202 | |
| 203 | define MY_STRUCT_SIZE 8 /* Used by assembler source files */ |
| 204 | |
| 205 | struct my_struct { |
| 206 | uint32_t arg1; |
| 207 | uint32_t arg2; |
| 208 | }; |
| 209 | |
| 210 | CASSERT(MY_STRUCT_SIZE == sizeof(struct my_struct), assert_my_struct_size_mismatch); |
| 211 | |
| 212 | |
| 213 | If ``MY_STRUCT_SIZE`` in the above example were wrong then the compiler would |
| 214 | emit an error like this: |
| 215 | |
Paul Beesley | 493e349 | 2019-03-13 15:11:04 +0000 | [diff] [blame] | 216 | :: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 217 | |
| 218 | my_struct.h:10:1: error: size of array ‘assert_my_struct_size_mismatch’ is negative |
| 219 | |
| 220 | |
| 221 | Using assert() to check for programming errors |
| 222 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 223 | |
| 224 | In general, each secure world TF image (BL1, BL2, BL31 and BL32) should be |
| 225 | treated as a tightly integrated package; the image builder should be aware of |
| 226 | and responsible for all functionality within the image, even if code within that |
| 227 | image is provided by multiple entities. This allows us to be more aggressive in |
| 228 | interpreting invalid state or bad function arguments as programming errors using |
| 229 | ``assert()``, including arguments passed across platform porting interfaces. |
| 230 | This is in contrast to code in a Linux environment, which is less tightly |
| 231 | integrated and may attempt to be more defensive by passing the error back up the |
| 232 | call stack. |
| 233 | |
| 234 | Where possible, badly written TF code should fail early using ``assert()``. This |
| 235 | helps reduce the amount of untested conditional code. By default these |
| 236 | statements are not compiled into release builds, although this can be overridden |
| 237 | using the ``ENABLE_ASSERTIONS`` build flag. |
| 238 | |
| 239 | Examples: |
| 240 | |
| 241 | - Bad argument supplied to library function |
| 242 | - Bad argument provided by platform porting function |
| 243 | - Internal secure world image state is inconsistent |
| 244 | |
| 245 | |
| 246 | Handling integration errors |
| 247 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 248 | |
| 249 | Each secure world image may be provided by a different entity (for example, a |
| 250 | Trusted Boot vendor may provide the BL2 image, a TEE vendor may provide the BL32 |
| 251 | image and the OEM/SoC vendor may provide the other images). |
| 252 | |
| 253 | An image may contain bugs that are only visible when the images are integrated. |
| 254 | The system integrator may not even have access to the debug variants of all the |
| 255 | images in order to check if asserts are firing. For example, the release variant |
| 256 | of BL1 may have already been burnt into the SoC. Therefore, TF code that detects |
| 257 | an integration error should _not_ consider this a programming error, and should |
| 258 | always take action, even in release builds. |
| 259 | |
| 260 | If an integration error is considered non-critical it should be treated as a |
| 261 | recoverable error. If the error is considered critical it should be treated as |
| 262 | an unexpected unrecoverable error. |
| 263 | |
| 264 | Handling recoverable errors |
| 265 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 266 | |
| 267 | The secure world **must not** crash when supplied with bad data from an external |
| 268 | source. For example, data from the normal world or a hardware device. Similarly, |
| 269 | the secure world **must not** crash if it detects a non-critical problem within |
| 270 | itself or the system. It must make every effort to recover from the problem by |
| 271 | emitting a ``WARN`` message, performing any necessary error handling and |
| 272 | continuing. |
| 273 | |
| 274 | Examples: |
| 275 | |
| 276 | - Secure world receives SMC from normal world with bad arguments. |
| 277 | - Secure world receives SMC from normal world at an unexpected time. |
| 278 | - BL31 receives SMC from BL32 with bad arguments. |
| 279 | - BL31 receives SMC from BL32 at unexpected time. |
| 280 | - Secure world receives recoverable error from hardware device. Retrying the |
| 281 | operation may help here. |
| 282 | - Non-critical secure world service is not functioning correctly. |
| 283 | - BL31 SPD discovers minor configuration problem with corresponding SP. |
| 284 | |
| 285 | Handling unrecoverable errors |
| 286 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 287 | |
| 288 | In some cases it may not be possible for the secure world to recover from an |
| 289 | error. This situation should be handled in one of the following ways: |
| 290 | |
| 291 | 1. If the unrecoverable error is unexpected then emit an ``ERROR`` message and |
| 292 | call ``panic()``. This will end up calling the platform-specific function |
| 293 | ``plat_panic_handler()``. |
| 294 | 2. If the unrecoverable error is expected to occur in certain circumstances, |
| 295 | then emit an ``ERROR`` message and call the platform-specific function |
| 296 | ``plat_error_handler()``. |
| 297 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 298 | Cases 1 and 2 are subtly different. A platform may implement |
| 299 | ``plat_panic_handler`` and ``plat_error_handler`` in the same way (for example, |
| 300 | by waiting for a secure watchdog to time-out or by invoking an interface on the |
| 301 | platform's power controller to reset the platform). However, |
| 302 | ``plat_error_handler`` may take additional action for some errors (for example, |
| 303 | it may set a flag so the platform resets into a different mode). Also, |
| 304 | ``plat_panic_handler()`` may implement additional debug functionality (for |
| 305 | example, invoking a hardware breakpoint). |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 306 | |
| 307 | Examples of unexpected unrecoverable errors: |
| 308 | |
| 309 | - BL32 receives an unexpected SMC response from BL31 that it is unable to |
| 310 | recover from. |
| 311 | - BL31 Trusted OS SPD code discovers that BL2 has not loaded the corresponding |
| 312 | Trusted OS, which is critical for platform operation. |
| 313 | - Secure world discovers that a critical hardware device is an unexpected and |
| 314 | unrecoverable state. |
| 315 | - Secure world receives an unexpected and unrecoverable error from a critical |
| 316 | hardware device. |
| 317 | - Secure world discovers that it is running on unsupported hardware. |
| 318 | |
| 319 | Examples of expected unrecoverable errors: |
| 320 | |
| 321 | - BL1/BL2 fails to load the next image due to missing/corrupt firmware on disk. |
| 322 | - BL1/BL2 fails to authenticate the next image due to an invalid certificate. |
| 323 | - Secure world continuously receives recoverable errors from a hardware device |
| 324 | but is unable to proceed without a valid response. |
| 325 | |
| 326 | Handling critical unresponsiveness |
| 327 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 328 | |
| 329 | If the secure world is waiting for a response from an external source (for |
| 330 | example, the normal world or a hardware device) which is critical for continued |
| 331 | operation, it must not wait indefinitely. It must have a mechanism (for example, |
| 332 | a secure watchdog) for resetting itself and/or the external source to prevent |
| 333 | the system from executing in this state indefinitely. |
| 334 | |
| 335 | Examples: |
| 336 | |
| 337 | - BL1 is waiting for the normal world to raise an SMC to proceed to the next |
| 338 | stage of the secure firmware update process. |
| 339 | - A Trusted OS is waiting for a response from a proxy in the normal world that |
| 340 | is critical for continued operation. |
| 341 | - Secure world is waiting for a hardware response that is critical for continued |
| 342 | operation. |
| 343 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 344 | Use of built-in *C* and *libc* data types |
| 345 | ----------------------------------------- |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 346 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 347 | The |TF-A| codebase should be kept as portable as possible, especially since |
| 348 | both 64-bit and 32-bit platforms are supported. To help with this, the following |
| 349 | data type usage guidelines should be followed: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 350 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 351 | - Where possible, use the built-in *C* data types for variable storage (for |
| 352 | example, ``char``, ``int``, ``long long``, etc) instead of the standard *C99* |
| 353 | types. Most code is typically only concerned with the minimum size of the |
| 354 | data stored, which the built-in *C* types guarantee. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 355 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 356 | - Avoid using the exact-size standard *C99* types in general (for example, |
| 357 | ``uint16_t``, ``uint32_t``, ``uint64_t``, etc) since they can prevent the |
| 358 | compiler from making optimizations. There are legitimate uses for them, |
| 359 | for example to represent data of a known structure. When using them in struct |
| 360 | definitions, consider how padding in the struct will work across architectures. |
| 361 | For example, extra padding may be introduced in |AArch32| systems if a struct |
| 362 | member crosses a 32-bit boundary. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 363 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 364 | - Use ``int`` as the default integer type - it's likely to be the fastest on all |
| 365 | systems. Also this can be assumed to be 32-bit as a consequence of the |
| 366 | `Procedure Call Standard for the Arm Architecture`_ and the `Procedure Call |
| 367 | Standard for the Arm 64-bit Architecture`_ . |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 368 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 369 | - Avoid use of ``short`` as this may end up being slower than ``int`` in some |
| 370 | systems. If a variable must be exactly 16-bit, use ``int16_t`` or |
| 371 | ``uint16_t``. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 372 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 373 | - Avoid use of ``long``. This is guaranteed to be at least 32-bit but, given |
| 374 | that `int` is 32-bit on Arm platforms, there is no use for it. For integers of |
| 375 | at least 64-bit, use ``long long``. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 376 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 377 | - Use ``char`` for storing text. Use ``uint8_t`` for storing other 8-bit data. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 378 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 379 | - Use ``unsigned`` for integers that can never be negative (counts, |
| 380 | indices, sizes, etc). TF intends to comply with MISRA "essential type" coding |
| 381 | rules (10.X), where signed and unsigned types are considered different |
| 382 | essential types. Choosing the correct type will aid this. MISRA static |
| 383 | analysers will pick up any implicit signed/unsigned conversions that may lead |
| 384 | to unexpected behaviour. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 385 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 386 | - For pointer types: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 387 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 388 | - If an argument in a function declaration is pointing to a known type then |
| 389 | simply use a pointer to that type (for example: ``struct my_struct *``). |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 390 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 391 | - If a variable (including an argument in a function declaration) is pointing |
| 392 | to a general, memory-mapped address, an array of pointers or another |
| 393 | structure that is likely to require pointer arithmetic then use |
| 394 | ``uintptr_t``. This will reduce the amount of casting required in the code. |
| 395 | Avoid using ``unsigned long`` or ``unsigned long long`` for this purpose; it |
| 396 | may work but is less portable. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 397 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 398 | - For other pointer arguments in a function declaration, use ``void *``. This |
| 399 | includes pointers to types that are abstracted away from the known API and |
| 400 | pointers to arbitrary data. This allows the calling function to pass a |
| 401 | pointer argument to the function without any explicit casting (the cast to |
| 402 | ``void *`` is implicit). The function implementation can then do the |
| 403 | appropriate casting to a specific type. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 404 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 405 | - Avoid pointer arithmetic generally (as this violates MISRA C 2012 rule |
| 406 | 18.4) and especially on void pointers (as this is only supported via |
| 407 | language extensions and is considered non-standard). In TF-A, setting the |
| 408 | ``W`` build flag to ``W=3`` enables the *-Wpointer-arith* compiler flag and |
| 409 | this will emit warnings where pointer arithmetic is used. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 410 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 411 | - Use ``ptrdiff_t`` to compare the difference between 2 pointers. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 412 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 413 | - Use ``size_t`` when storing the ``sizeof()`` something. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 414 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 415 | - Use ``ssize_t`` when returning the ``sizeof()`` something from a function that |
| 416 | can also return an error code; the signed type allows for a negative return |
| 417 | code in case of error. This practice should be used sparingly. |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 418 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 419 | - Use ``u_register_t`` when it's important to store the contents of a register |
| 420 | in its native size (32-bit in |AArch32| and 64-bit in |AArch64|). This is not a |
| 421 | standard *C99* type but is widely available in libc implementations, |
| 422 | including the FreeBSD version included with the TF codebase. Where possible, |
| 423 | cast the variable to a more appropriate type before interpreting the data. For |
| 424 | example, the following struct in ``ep_info.h`` could use this type to minimize |
| 425 | the storage required for the set of registers: |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 426 | |
| 427 | .. code:: c |
| 428 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 429 | typedef struct aapcs64_params { |
| 430 | u_register_t arg0; |
| 431 | u_register_t arg1; |
| 432 | u_register_t arg2; |
| 433 | u_register_t arg3; |
| 434 | u_register_t arg4; |
| 435 | u_register_t arg5; |
| 436 | u_register_t arg6; |
| 437 | u_register_t arg7; |
| 438 | } aapcs64_params_t; |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 439 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 440 | If some code wants to operate on ``arg0`` and knows that it represents a 32-bit |
| 441 | unsigned integer on all systems, cast it to ``unsigned int``. |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 442 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 443 | These guidelines should be updated if additional types are needed. |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 444 | |
Sandrine Bailleux | 22d6abc | 2020-08-20 11:17:41 +0200 | [diff] [blame] | 445 | Favor C language over assembly language |
| 446 | --------------------------------------- |
| 447 | |
| 448 | Generally, prefer code written in C over assembly. Assembly code is less |
| 449 | portable, harder to understand, maintain and audit security wise. Also, static |
| 450 | analysis tools generally don't analyze assembly code. |
| 451 | |
| 452 | There are, however, legitimate uses of assembly language. These include: |
| 453 | |
| 454 | - Early boot code executed before the C runtime environment is setup. |
| 455 | |
| 456 | - Exception handling code. |
| 457 | |
| 458 | - Low-level code where the exact sequence of instructions executed on the CPU |
| 459 | matters, such as CPU reset sequences. |
| 460 | |
| 461 | - Low-level code where specific system-level instructions must be used, such |
| 462 | as cache maintenance operations. |
| 463 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 464 | -------------- |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 465 | |
Govindraj Raja | 0667bb3 | 2022-11-10 15:27:35 +0000 | [diff] [blame] | 466 | *Copyright (c) 2020, 2022, Arm Limited and Contributors. All rights reserved.* |
Paul Beesley | fd68834 | 2019-01-21 16:11:28 +0000 | [diff] [blame] | 467 | |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 468 | .. _`Linux master tree`: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/ |
Govindraj Raja | 0667bb3 | 2022-11-10 15:27:35 +0000 | [diff] [blame] | 469 | .. _`Procedure Call Standard for the Arm Architecture`: https://github.com/ARM-software/abi-aa/blob/main/aapcs32/aapcs32.rst |
| 470 | .. _`Procedure Call Standard for the Arm 64-bit Architecture`: https://github.com/ARM-software/abi-aa/blob/main/aapcs64/aapcs64.rst |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 471 | .. _`EditorConfig`: http://editorconfig.org/ |
Paul Beesley | 4e2e1b2 | 2019-01-17 15:44:37 +0000 | [diff] [blame] | 472 | .. _`Why the “volatile” type class should not be used`: https://www.kernel.org/doc/html/latest/process/volatile-considered-harmful.html |
Paul Beesley | 07f0a31 | 2019-05-16 13:33:18 +0100 | [diff] [blame] | 473 | .. _`MISRA C:2012 Guidelines`: https://www.misra.org.uk/Activities/MISRAC/tabid/160/Default.aspx |
| 474 | .. _`a spreadsheet`: https://developer.trustedfirmware.org/file/download/lamajxif3w7c4mpjeoo5/PHID-FILE-fp7c7acszn6vliqomyhn/MISRA-and-TF-Analysis-v1.3.ods |