Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
| 2 | .. Copyright (c) 2017 Simon Glass <sjg@chromium.org> |
| 3 | |
| 4 | Logging in U-Boot |
| 5 | ================= |
| 6 | |
| 7 | Introduction |
| 8 | ------------ |
| 9 | |
| 10 | U-Boot's internal operation involves many different steps and actions. From |
| 11 | setting up the board to displaying a start-up screen to loading an Operating |
| 12 | System, there are many component parts each with many actions. |
| 13 | |
| 14 | Most of the time this internal detail is not useful. Displaying it on the |
| 15 | console would delay booting (U-Boot's primary purpose) and confuse users. |
| 16 | |
| 17 | But for digging into what is happening in a particular area, or for debugging |
| 18 | a problem it is often useful to see what U-Boot is doing in more detail than |
| 19 | is visible from the basic console output. |
| 20 | |
| 21 | U-Boot's logging feature aims to satisfy this goal for both users and |
| 22 | developers. |
| 23 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 24 | Logging levels |
| 25 | -------------- |
| 26 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 27 | There are a number logging levels available. |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 28 | |
Heinrich Schuchardt | a6aaeb2 | 2021-01-25 21:06:57 +0100 | [diff] [blame] | 29 | See enum :c:type:`log_level_t` |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 30 | |
| 31 | Logging category |
| 32 | ---------------- |
| 33 | |
| 34 | Logging can come from a wide variety of places within U-Boot. Each log message |
| 35 | has a category which is intended to allow messages to be filtered according to |
| 36 | their source. |
| 37 | |
Heinrich Schuchardt | a6aaeb2 | 2021-01-25 21:06:57 +0100 | [diff] [blame] | 38 | See enum :c:type:`log_category_t` |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 39 | |
| 40 | Enabling logging |
| 41 | ---------------- |
| 42 | |
| 43 | The following options are used to enable logging at compile time: |
| 44 | |
| 45 | * CONFIG_LOG - Enables the logging system |
| 46 | * CONFIG_LOG_MAX_LEVEL - Max log level to build (anything higher is compiled |
| 47 | out) |
| 48 | * CONFIG_LOG_CONSOLE - Enable writing log records to the console |
| 49 | |
| 50 | If CONFIG_LOG is not set, then no logging will be available. |
| 51 | |
| 52 | The above have SPL and TPL versions also, e.g. CONFIG_SPL_LOG_MAX_LEVEL and |
| 53 | CONFIG_TPL_LOG_MAX_LEVEL. |
| 54 | |
Simon Glass | e1cbd91 | 2021-05-08 13:46:54 -0600 | [diff] [blame] | 55 | If logging is disabled, the default behaviour is to output any message at |
| 56 | level LOGL_INFO and below. If logging is disabled and DEBUG is defined (at |
| 57 | the very top of a C file) then any message at LOGL_DEBUG will be written. |
| 58 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 59 | Temporary logging within a single file |
| 60 | -------------------------------------- |
| 61 | |
| 62 | Sometimes it is useful to turn on logging just in one file. You can use this |
| 63 | |
| 64 | .. code-block:: c |
| 65 | |
| 66 | #define LOG_DEBUG |
| 67 | |
| 68 | to enable building in of all logging statements in a single file. Put it at |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 69 | the top of the file, before any #includes. |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 70 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 71 | To actually get U-Boot to output this you need to also set the default logging |
Heinrich Schuchardt | a6aaeb2 | 2021-01-25 21:06:57 +0100 | [diff] [blame] | 72 | level - e.g. set CONFIG_LOG_DEFAULT_LEVEL to 7 (:c:data:`LOGL_DEBUG`) or more. |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 73 | Otherwise debug output is suppressed and will not be generated. |
| 74 | |
| 75 | Using DEBUG |
| 76 | ----------- |
| 77 | |
| 78 | U-Boot has traditionally used a #define called DEBUG to enable debugging on a |
| 79 | file-by-file basis. The debug() macro compiles to a printf() statement if |
| 80 | DEBUG is enabled, and an empty statement if not. |
| 81 | |
| 82 | With logging enabled, debug() statements are interpreted as logging output |
| 83 | with a level of LOGL_DEBUG and a category of LOGC_NONE. |
| 84 | |
| 85 | The logging facilities are intended to replace DEBUG, but if DEBUG is defined |
| 86 | at the top of a file, then it takes precedence. This means that debug() |
| 87 | statements will result in output to the console and this output will not be |
| 88 | logged. |
| 89 | |
| 90 | Logging statements |
| 91 | ------------------ |
| 92 | |
| 93 | The main logging function is: |
| 94 | |
| 95 | .. code-block:: c |
| 96 | |
| 97 | log(category, level, format_string, ...) |
| 98 | |
| 99 | Also debug() and error() will generate log records - these use LOG_CATEGORY |
| 100 | as the category, so you should #define this right at the top of the source |
| 101 | file to ensure the category is correct. |
| 102 | |
Simon Glass | 9ad7a6c | 2021-01-20 20:10:53 -0700 | [diff] [blame] | 103 | Generally each log format_string ends with a newline. If it does not, then the |
| 104 | next log statement will have the LOGRECF_CONT flag set. This can be used to |
| 105 | continue the statement on the same line as the previous one without emitting |
| 106 | new header information (such as category/level). This behaviour is implemented |
| 107 | with log_console. Here is an example that prints a list all on one line with |
| 108 | the tags at the start: |
| 109 | |
| 110 | .. code-block:: c |
| 111 | |
| 112 | log_debug("Here is a list:"); |
| 113 | for (i = 0; i < count; i++) |
| 114 | log_debug(" item %d", i); |
| 115 | log_debug("\n"); |
| 116 | |
| 117 | Also see the special category LOGL_CONT and level LOGC_CONT. |
| 118 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 119 | You can also define CONFIG_LOG_ERROR_RETURN to enable the log_ret() macro. This |
| 120 | can be used whenever your function returns an error value: |
| 121 | |
| 122 | .. code-block:: c |
| 123 | |
Simon Glass | 7bd0658 | 2021-01-20 20:10:54 -0700 | [diff] [blame] | 124 | return log_ret(uclass_first_device_err(UCLASS_MMC, &dev)); |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 125 | |
| 126 | This will write a log record when an error code is detected (a value < 0). This |
| 127 | can make it easier to trace errors that are generated deep in the call stack. |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 128 | |
Simon Glass | 7bd0658 | 2021-01-20 20:10:54 -0700 | [diff] [blame] | 129 | The log_msg_ret() variant will print a short string if CONFIG_LOG_ERROR_RETURN |
| 130 | is enabled. So long as the string is unique within the function you can normally |
| 131 | determine exactly which call failed: |
| 132 | |
| 133 | .. code-block:: c |
| 134 | |
| 135 | ret = gpio_request_by_name(dev, "cd-gpios", 0, &desc, GPIOD_IS_IN); |
| 136 | if (ret) |
| 137 | return log_msg_ret("gpio", ret); |
| 138 | |
| 139 | Some functions return 0 for success and any other value is an error. For these, |
| 140 | log_retz() and log_msg_retz() are available. |
| 141 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 142 | Convenience functions |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 143 | ~~~~~~~~~~~~~~~~~~~~~ |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 144 | |
| 145 | A number of convenience functions are available to shorten the code needed |
| 146 | for logging: |
| 147 | |
| 148 | * log_err(_fmt...) |
| 149 | * log_warning(_fmt...) |
| 150 | * log_notice(_fmt...) |
| 151 | * log_info(_fmt...) |
| 152 | * log_debug(_fmt...) |
| 153 | * log_content(_fmt...) |
| 154 | * log_io(_fmt...) |
| 155 | |
| 156 | With these the log level is implicit in the name. The category is set by |
| 157 | LOG_CATEGORY, which you can only define once per file, above all #includes, e.g. |
| 158 | |
| 159 | .. code-block:: c |
| 160 | |
| 161 | #define LOG_CATEGORY LOGC_ALLOC |
| 162 | |
Simon Glass | 7ad1e0b | 2020-10-13 19:55:07 -0600 | [diff] [blame] | 163 | or |
| 164 | |
| 165 | .. code-block:: c |
| 166 | |
| 167 | #define LOG_CATEGORY UCLASS_SPI |
| 168 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 169 | Remember that all uclasses IDs are log categories too. |
| 170 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 171 | Logging destinations |
| 172 | -------------------- |
| 173 | |
| 174 | If logging information goes nowhere then it serves no purpose. U-Boot provides |
| 175 | several possible determinations for logging information, all of which can be |
| 176 | enabled or disabled independently: |
| 177 | |
| 178 | * console - goes to stdout |
| 179 | * syslog - broadcast RFC 3164 messages to syslog servers on UDP port 514 |
| 180 | |
| 181 | The syslog driver sends the value of environmental variable 'log_hostname' as |
| 182 | HOSTNAME if available. |
| 183 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 184 | Filters |
| 185 | ------- |
| 186 | |
| 187 | Filters are attached to log drivers to control what those drivers emit. FIlters |
| 188 | can either allow or deny a log message when they match it. Only records which |
| 189 | are allowed by a filter make it to the driver. |
| 190 | |
| 191 | Filters can be based on several criteria: |
| 192 | |
| 193 | * minimum or maximum log level |
| 194 | * in a set of categories |
| 195 | * in a set of files |
| 196 | |
| 197 | If no filters are attached to a driver then a default filter is used, which |
| 198 | limits output to records with a level less than CONFIG_MAX_LOG_LEVEL. |
| 199 | |
| 200 | Log command |
| 201 | ----------- |
| 202 | |
| 203 | The 'log' command provides access to several features: |
| 204 | |
| 205 | * level - list log levels or set the default log level |
| 206 | * categories - list log categories |
| 207 | * drivers - list log drivers |
| 208 | * filter-list - list filters |
| 209 | * filter-add - add a new filter |
| 210 | * filter-remove - remove filters |
| 211 | * format - access the console log format |
| 212 | * rec - output a log record |
| 213 | |
| 214 | Type 'help log' for details. |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 215 | |
| 216 | Log format |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 217 | ~~~~~~~~~~ |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 218 | |
| 219 | You can control the log format using the 'log format' command. The basic |
| 220 | format is:: |
| 221 | |
| 222 | LEVEL.category,file.c:123-func() message |
| 223 | |
| 224 | In the above, file.c:123 is the filename where the log record was generated and |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 225 | func() is the function name. By default ('log format default') only the message |
| 226 | is displayed on the console. You can control which fields are present, but not |
| 227 | the field order. |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 228 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 229 | Adding Filters |
| 230 | ~~~~~~~~~~~~~~ |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 231 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 232 | To add new filters at runtime, use the 'log filter-add' command. For example, to |
| 233 | suppress messages from the SPI and MMC subsystems, run:: |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 234 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 235 | log filter-add -D -c spi -c mmc |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 236 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 237 | You will also need to add another filter to allow other messages (because the |
| 238 | default filter no longer applies):: |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 239 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 240 | log filter-add -A -l info |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 241 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 242 | Log levels may be either symbolic names (like above) or numbers. For example, to |
| 243 | disable all debug and above (log level 7) messages from ``drivers/core/lists.c`` |
| 244 | and ``drivers/core/ofnode.c``, run:: |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 245 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 246 | log filter-add -D -f drivers/core/lists.c,drivers/core/ofnode.c -L 7 |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 247 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 248 | To view active filters, use the 'log filter-list' command. Some example output |
| 249 | is:: |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 250 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 251 | => log filter-list |
| 252 | num policy level categories files |
| 253 | 2 deny >= DEBUG drivers/core/lists.c,drivers/core/ofnode.c |
| 254 | 0 deny <= IO spi |
| 255 | mmc |
| 256 | 1 allow <= INFO |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 257 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 258 | Note that filters are processed in-order from top to bottom, not in the order of |
| 259 | their filter number. Filters are added to the top of the list if they deny when |
| 260 | they match, and to the bottom if they allow when they match. For more |
| 261 | information, consult the usage of the 'log' command, by running 'help log'. |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 262 | |
| 263 | Code size |
| 264 | --------- |
| 265 | |
| 266 | Code size impact depends largely on what is enabled. The following numbers are |
| 267 | generated by 'buildman -S' for snow, which is a Thumb-2 board (all units in |
| 268 | bytes):: |
| 269 | |
| 270 | This series: adds bss +20.0 data +4.0 rodata +4.0 text +44.0 |
| 271 | CONFIG_LOG: bss -52.0 data +92.0 rodata -635.0 text +1048.0 |
| 272 | CONFIG_LOG_MAX_LEVEL=7: bss +188.0 data +4.0 rodata +49183.0 text +98124.0 |
| 273 | |
| 274 | The last option turns every debug() statement into a logging call, which |
| 275 | bloats the code hugely. The advantage is that it is then possible to enable |
| 276 | all logging within U-Boot. |
| 277 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 278 | To Do |
| 279 | ----- |
| 280 | |
| 281 | There are lots of useful additions that could be made. None of the below is |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 282 | implemented! If you do one, please add a test in test/log/log_test.c |
| 283 | log filter-add -D -f drivers/core/lists.c,drivers/core/ofnode.c -l 6 |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 284 | Convenience functions to support setting the category: |
| 285 | |
| 286 | * log_arch(level, format_string, ...) - category LOGC_ARCH |
| 287 | * log_board(level, format_string, ...) - category LOGC_BOARD |
| 288 | * log_core(level, format_string, ...) - category LOGC_CORE |
| 289 | * log_dt(level, format_string, ...) - category LOGC_DT |
| 290 | |
| 291 | More logging destinations: |
| 292 | |
| 293 | * device - goes to a device (e.g. serial) |
| 294 | * buffer - recorded in a memory buffer |
| 295 | |
| 296 | Convert debug() statements in the code to log() statements |
| 297 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 298 | Convert error() statements in the code to log() statements |
| 299 | |
| 300 | Figure out what to do with BUG(), BUG_ON() and warn_non_spl() |
| 301 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 302 | Add a way to browse log records |
| 303 | |
| 304 | Add a way to record log records for browsing using an external tool |
| 305 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 306 | Add commands to add and remove log devices |
| 307 | |
| 308 | Allow sharing of printf format strings in log records to reduce storage size |
| 309 | for large numbers of log records |
| 310 | |
Heinrich Schuchardt | a781391 | 2020-05-31 10:46:12 +0200 | [diff] [blame] | 311 | Consider making log() calls emit an automatic newline, perhaps with a logn() |
| 312 | function to avoid that |
| 313 | |
| 314 | Passing log records through to linux (e.g. via device tree /chosen) |
| 315 | |
| 316 | Provide a command to access the number of log records generated, and the |
| 317 | number dropped due to them being generated before the log system was ready. |
| 318 | |
| 319 | Add a printf() format string pragma so that log statements are checked properly |
| 320 | |
Sean Anderson | 8ba0f89 | 2020-10-27 19:55:41 -0400 | [diff] [blame] | 321 | Add a command to delete existing log records. |