Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 1 | ========================================= |
| 2 | How to get printk format specifiers right |
| 3 | ========================================= |
| 4 | |
| 5 | :Author: Randy Dunlap <rdunlap@infradead.org> |
| 6 | :Author: Andrew Murray <amurray@mpc-data.co.uk> |
| 7 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 8 | Integer types |
| 9 | ============= |
| 10 | |
| 11 | :: |
| 12 | |
| 13 | If variable is of Type, use printk format specifier: |
| 14 | ------------------------------------------------------------ |
Randy Dunlap | b67ad18 | 2008-11-12 13:26:55 -0800 | [diff] [blame] | 15 | int %d or %x |
| 16 | unsigned int %u or %x |
| 17 | long %ld or %lx |
| 18 | unsigned long %lu or %lx |
| 19 | long long %lld or %llx |
| 20 | unsigned long long %llu or %llx |
| 21 | size_t %zu or %zx |
| 22 | ssize_t %zd or %zx |
Geert Uytterhoeven | e8a7ba5 | 2015-04-15 16:17:17 -0700 | [diff] [blame] | 23 | s32 %d or %x |
| 24 | u32 %u or %x |
| 25 | s64 %lld or %llx |
| 26 | u64 %llu or %llx |
| 27 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 28 | If <type> is dependent on a config option for its size (e.g., ``sector_t``, |
| 29 | ``blkcnt_t``) or is architecture-dependent for its size (e.g., ``tcflag_t``), |
| 30 | use a format specifier of its largest possible type and explicitly cast to it. |
| 31 | |
| 32 | Example:: |
Geert Uytterhoeven | e8a7ba5 | 2015-04-15 16:17:17 -0700 | [diff] [blame] | 33 | |
| 34 | printk("test: sector number/total blocks: %llu/%llu\n", |
| 35 | (unsigned long long)sector, (unsigned long long)blockcount); |
| 36 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 37 | Reminder: ``sizeof()`` result is of type ``size_t``. |
Geert Uytterhoeven | e8a7ba5 | 2015-04-15 16:17:17 -0700 | [diff] [blame] | 38 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 39 | The kernel's printf does not support ``%n``. For obvious reasons, floating |
| 40 | point formats (``%e, %f, %g, %a``) are also not recognized. Use of any |
Rasmus Villemoes | d7ec9a0 | 2015-11-06 16:30:35 -0800 | [diff] [blame] | 41 | unsupported specifier or length qualifier results in a WARN and early |
| 42 | return from vsnprintf. |
Randy Dunlap | b67ad18 | 2008-11-12 13:26:55 -0800 | [diff] [blame] | 43 | |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 44 | Raw pointer value SHOULD be printed with %p. The kernel supports |
| 45 | the following extended format specifiers for pointer types: |
| 46 | |
Tobin C. Harding | ad67b74 | 2017-11-01 15:32:23 +1100 | [diff] [blame] | 47 | Pointer Types |
| 48 | ============= |
| 49 | |
| 50 | Pointers printed without a specifier extension (i.e unadorned %p) are |
| 51 | hashed to give a unique identifier without leaking kernel addresses to user |
Tobin C. Harding | 7b1924a | 2017-11-23 10:59:45 +1100 | [diff] [blame] | 52 | space. On 64 bit machines the first 32 bits are zeroed. If you _really_ |
| 53 | want the address see %px below. |
Tobin C. Harding | ad67b74 | 2017-11-01 15:32:23 +1100 | [diff] [blame] | 54 | |
| 55 | :: |
| 56 | |
| 57 | %p abcdef12 or 00000000abcdef12 |
| 58 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 59 | Symbols/Function Pointers |
| 60 | ========================= |
| 61 | |
| 62 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 63 | |
| 64 | %pF versatile_init+0x0/0x110 |
| 65 | %pf versatile_init |
| 66 | %pS versatile_init+0x0/0x110 |
Joe Perches | b0d33c2 | 2012-12-12 10:18:50 -0800 | [diff] [blame] | 67 | %pSR versatile_init+0x9/0x110 |
| 68 | (with __builtin_extract_return_addr() translation) |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 69 | %ps versatile_init |
| 70 | %pB prev_fn_of_versatile_init+0x88/0x88 |
| 71 | |
Helge Deller | d6957f33 | 2017-08-15 11:34:19 +0200 | [diff] [blame] | 72 | The ``F`` and ``f`` specifiers are for printing function pointers, |
| 73 | for example, f->func, &gettimeofday. They have the same result as |
| 74 | ``S`` and ``s`` specifiers. But they do an extra conversion on |
| 75 | ia64, ppc64 and parisc64 architectures where the function pointers |
| 76 | are actually function descriptors. |
| 77 | |
| 78 | The ``S`` and ``s`` specifiers can be used for printing symbols |
| 79 | from direct addresses, for example, __builtin_return_address(0), |
| 80 | (void *)regs->ip. They result in the symbol name with (``S``) or |
| 81 | without (``s``) offsets. If KALLSYMS are disabled then the symbol |
| 82 | address is printed instead. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 83 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 84 | The ``B`` specifier results in the symbol name with offsets and should be |
| 85 | used when printing stack backtraces. The specifier takes into |
| 86 | consideration the effect of compiler optimisations which may occur |
| 87 | when tail-call``s are used and marked with the noreturn GCC attribute. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 88 | |
Helge Deller | fd46cd5 | 2017-08-23 21:52:05 +0200 | [diff] [blame] | 89 | Examples:: |
| 90 | |
| 91 | printk("Going to call: %pF\n", gettimeofday); |
| 92 | printk("Going to call: %pF\n", p->func); |
| 93 | printk("%s: called from %pS\n", __func__, (void *)_RET_IP_); |
| 94 | printk("%s: called from %pS\n", __func__, |
| 95 | (void *)__builtin_return_address(0)); |
| 96 | printk("Faulted at %pS\n", (void *)regs->ip); |
| 97 | printk(" %s%pB\n", (reliable ? "" : "? "), (void *)*stack); |
| 98 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 99 | Kernel Pointers |
| 100 | =============== |
| 101 | |
| 102 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 103 | |
Tobin C. Harding | 553d8e8 | 2017-11-23 10:55:24 +1100 | [diff] [blame] | 104 | %pK 01234567 or 0123456789abcdef |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 105 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 106 | For printing kernel pointers which should be hidden from unprivileged |
| 107 | users. The behaviour of ``%pK`` depends on the ``kptr_restrict sysctl`` - see |
| 108 | Documentation/sysctl/kernel.txt for more details. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 109 | |
Tobin C. Harding | 7b1924a | 2017-11-23 10:59:45 +1100 | [diff] [blame] | 110 | Unmodified Addresses |
| 111 | ==================== |
| 112 | |
| 113 | :: |
| 114 | |
| 115 | %px 01234567 or 0123456789abcdef |
| 116 | |
| 117 | For printing pointers when you _really_ want to print the address. Please |
| 118 | consider whether or not you are leaking sensitive information about the |
| 119 | Kernel layout in memory before printing pointers with %px. %px is |
| 120 | functionally equivalent to %lx. %px is preferred to %lx because it is more |
| 121 | uniquely grep'able. If, in the future, we need to modify the way the Kernel |
| 122 | handles printing pointers it will be nice to be able to find the call |
| 123 | sites. |
| 124 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 125 | Struct Resources |
| 126 | ================ |
| 127 | |
| 128 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 129 | |
| 130 | %pr [mem 0x60000000-0x6fffffff flags 0x2200] or |
| 131 | [mem 0x0000000060000000-0x000000006fffffff flags 0x2200] |
| 132 | %pR [mem 0x60000000-0x6fffffff pref] or |
| 133 | [mem 0x0000000060000000-0x000000006fffffff pref] |
| 134 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 135 | For printing struct resources. The ``R`` and ``r`` specifiers result in a |
| 136 | printed resource with (``R``) or without (``r``) a decoded flags member. |
| 137 | Passed by reference. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 138 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 139 | Physical addresses types ``phys_addr_t`` |
| 140 | ======================================== |
| 141 | |
| 142 | :: |
Stepan Moskovchenko | 7d79921 | 2013-02-21 16:43:09 -0800 | [diff] [blame] | 143 | |
Joe Perches | aaf0762 | 2014-01-23 15:54:17 -0800 | [diff] [blame] | 144 | %pa[p] 0x01234567 or 0x0123456789abcdef |
Stepan Moskovchenko | 7d79921 | 2013-02-21 16:43:09 -0800 | [diff] [blame] | 145 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 146 | For printing a ``phys_addr_t`` type (and its derivatives, such as |
| 147 | ``resource_size_t``) which can vary based on build options, regardless of |
| 148 | the width of the CPU data path. Passed by reference. |
Stepan Moskovchenko | 7d79921 | 2013-02-21 16:43:09 -0800 | [diff] [blame] | 149 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 150 | DMA addresses types ``dma_addr_t`` |
| 151 | ================================== |
| 152 | |
| 153 | :: |
Joe Perches | aaf0762 | 2014-01-23 15:54:17 -0800 | [diff] [blame] | 154 | |
| 155 | %pad 0x01234567 or 0x0123456789abcdef |
| 156 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 157 | For printing a ``dma_addr_t`` type which can vary based on build options, |
| 158 | regardless of the width of the CPU data path. Passed by reference. |
Joe Perches | aaf0762 | 2014-01-23 15:54:17 -0800 | [diff] [blame] | 159 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 160 | Raw buffer as an escaped string |
| 161 | =============================== |
| 162 | |
| 163 | :: |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 164 | |
| 165 | %*pE[achnops] |
| 166 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 167 | For printing raw buffer as an escaped string. For the following buffer:: |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 168 | |
| 169 | 1b 62 20 5c 43 07 22 90 0d 5d |
| 170 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 171 | few examples show how the conversion would be done (the result string |
| 172 | without surrounding quotes):: |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 173 | |
| 174 | %*pE "\eb \C\a"\220\r]" |
| 175 | %*pEhp "\x1bb \C\x07"\x90\x0d]" |
| 176 | %*pEa "\e\142\040\\\103\a\042\220\r\135" |
| 177 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 178 | The conversion rules are applied according to an optional combination |
| 179 | of flags (see :c:func:`string_escape_mem` kernel documentation for the |
| 180 | details): |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 181 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 182 | - ``a`` - ESCAPE_ANY |
| 183 | - ``c`` - ESCAPE_SPECIAL |
| 184 | - ``h`` - ESCAPE_HEX |
| 185 | - ``n`` - ESCAPE_NULL |
| 186 | - ``o`` - ESCAPE_OCTAL |
| 187 | - ``p`` - ESCAPE_NP |
| 188 | - ``s`` - ESCAPE_SPACE |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 189 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 190 | By default ESCAPE_ANY_NP is used. |
Andy Shevchenko | 71dca95 | 2014-10-13 15:55:18 -0700 | [diff] [blame] | 191 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 192 | ESCAPE_ANY_NP is the sane choice for many cases, in particularly for |
| 193 | printing SSIDs. |
| 194 | |
| 195 | If field width is omitted the 1 byte only will be escaped. |
| 196 | |
| 197 | Raw buffer as a hex string |
| 198 | ========================== |
| 199 | |
| 200 | :: |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 201 | |
Andy Shevchenko | 31550a1 | 2012-07-30 14:40:27 -0700 | [diff] [blame] | 202 | %*ph 00 01 02 ... 3f |
| 203 | %*phC 00:01:02: ... :3f |
| 204 | %*phD 00-01-02- ... -3f |
| 205 | %*phN 000102 ... 3f |
| 206 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 207 | For printing a small buffers (up to 64 bytes long) as a hex string with |
| 208 | certain separator. For the larger buffers consider to use |
| 209 | :c:func:`print_hex_dump`. |
Andy Shevchenko | 31550a1 | 2012-07-30 14:40:27 -0700 | [diff] [blame] | 210 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 211 | MAC/FDDI addresses |
| 212 | ================== |
| 213 | |
| 214 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 215 | |
| 216 | %pM 00:01:02:03:04:05 |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 217 | %pMR 05:04:03:02:01:00 |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 218 | %pMF 00-01-02-03-04-05 |
| 219 | %pm 000102030405 |
Andy Shevchenko | 7c59154 | 2012-10-04 17:12:33 -0700 | [diff] [blame] | 220 | %pmR 050403020100 |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 221 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 222 | For printing 6-byte MAC/FDDI addresses in hex notation. The ``M`` and ``m`` |
| 223 | specifiers result in a printed address with (``M``) or without (``m``) byte |
| 224 | separators. The default byte separator is the colon (``:``). |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 225 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 226 | Where FDDI addresses are concerned the ``F`` specifier can be used after |
| 227 | the ``M`` specifier to use dash (``-``) separators instead of the default |
| 228 | separator. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 229 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 230 | For Bluetooth addresses the ``R`` specifier shall be used after the ``M`` |
| 231 | specifier to use reversed byte order suitable for visual interpretation |
| 232 | of Bluetooth addresses which are in the little endian order. |
Andrei Emeltchenko | 76597ff9 | 2012-07-30 14:40:23 -0700 | [diff] [blame] | 233 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 234 | Passed by reference. |
Geert Uytterhoeven | 7330660 | 2015-04-15 16:17:14 -0700 | [diff] [blame] | 235 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 236 | IPv4 addresses |
| 237 | ============== |
| 238 | |
| 239 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 240 | |
| 241 | %pI4 1.2.3.4 |
| 242 | %pi4 001.002.003.004 |
Daniel Borkmann | 8ecada1 | 2013-06-28 15:49:39 +0200 | [diff] [blame] | 243 | %p[Ii]4[hnbl] |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 244 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 245 | For printing IPv4 dot-separated decimal addresses. The ``I4`` and ``i4`` |
| 246 | specifiers result in a printed address with (``i4``) or without (``I4``) |
| 247 | leading zeros. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 248 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 249 | The additional ``h``, ``n``, ``b``, and ``l`` specifiers are used to specify |
| 250 | host, network, big or little endian order addresses respectively. Where |
| 251 | no specifier is provided the default network/big endian order is used. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 252 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 253 | Passed by reference. |
Geert Uytterhoeven | 7330660 | 2015-04-15 16:17:14 -0700 | [diff] [blame] | 254 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 255 | IPv6 addresses |
| 256 | ============== |
| 257 | |
| 258 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 259 | |
| 260 | %pI6 0001:0002:0003:0004:0005:0006:0007:0008 |
| 261 | %pi6 00010002000300040005000600070008 |
| 262 | %pI6c 1:2:3:4:5:6:7:8 |
| 263 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 264 | For printing IPv6 network-order 16-bit hex addresses. The ``I6`` and ``i6`` |
| 265 | specifiers result in a printed address with (``I6``) or without (``i6``) |
| 266 | colon-separators. Leading zeros are always used. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 267 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 268 | The additional ``c`` specifier can be used with the ``I`` specifier to |
| 269 | print a compressed IPv6 address as described by |
| 270 | http://tools.ietf.org/html/rfc5952 |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 271 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 272 | Passed by reference. |
Geert Uytterhoeven | 7330660 | 2015-04-15 16:17:14 -0700 | [diff] [blame] | 273 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 274 | IPv4/IPv6 addresses (generic, with port, flowinfo, scope) |
| 275 | ========================================================= |
| 276 | |
| 277 | :: |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 278 | |
| 279 | %pIS 1.2.3.4 or 0001:0002:0003:0004:0005:0006:0007:0008 |
| 280 | %piS 001.002.003.004 or 00010002000300040005000600070008 |
| 281 | %pISc 1.2.3.4 or 1:2:3:4:5:6:7:8 |
| 282 | %pISpc 1.2.3.4:12345 or [1:2:3:4:5:6:7:8]:12345 |
| 283 | %p[Ii]S[pfschnbl] |
| 284 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 285 | For printing an IP address without the need to distinguish whether it``s |
| 286 | of type AF_INET or AF_INET6, a pointer to a valid ``struct sockaddr``, |
| 287 | specified through ``IS`` or ``iS``, can be passed to this format specifier. |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 288 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 289 | The additional ``p``, ``f``, and ``s`` specifiers are used to specify port |
| 290 | (IPv4, IPv6), flowinfo (IPv6) and scope (IPv6). Ports have a ``:`` prefix, |
| 291 | flowinfo a ``/`` and scope a ``%``, each followed by the actual value. |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 292 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 293 | In case of an IPv6 address the compressed IPv6 address as described by |
| 294 | http://tools.ietf.org/html/rfc5952 is being used if the additional |
| 295 | specifier ``c`` is given. The IPv6 address is surrounded by ``[``, ``]`` in |
| 296 | case of additional specifiers ``p``, ``f`` or ``s`` as suggested by |
| 297 | https://tools.ietf.org/html/draft-ietf-6man-text-addr-representation-07 |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 298 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 299 | In case of IPv4 addresses, the additional ``h``, ``n``, ``b``, and ``l`` |
| 300 | specifiers can be used as well and are ignored in case of an IPv6 |
| 301 | address. |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 302 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 303 | Passed by reference. |
Geert Uytterhoeven | 7330660 | 2015-04-15 16:17:14 -0700 | [diff] [blame] | 304 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 305 | Further examples:: |
Daniel Borkmann | 1067964 | 2013-06-28 19:49:39 +0200 | [diff] [blame] | 306 | |
| 307 | %pISfc 1.2.3.4 or [1:2:3:4:5:6:7:8]/123456789 |
| 308 | %pISsc 1.2.3.4 or [1:2:3:4:5:6:7:8]%1234567890 |
| 309 | %pISpfc 1.2.3.4:12345 or [1:2:3:4:5:6:7:8]:12345/123456789 |
| 310 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 311 | UUID/GUID addresses |
| 312 | =================== |
| 313 | |
| 314 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 315 | |
| 316 | %pUb 00010203-0405-0607-0809-0a0b0c0d0e0f |
| 317 | %pUB 00010203-0405-0607-0809-0A0B0C0D0E0F |
| 318 | %pUl 03020100-0504-0706-0809-0a0b0c0e0e0f |
| 319 | %pUL 03020100-0504-0706-0809-0A0B0C0E0E0F |
| 320 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 321 | For printing 16-byte UUID/GUIDs addresses. The additional 'l', 'L', |
| 322 | 'b' and 'B' specifiers are used to specify a little endian order in |
| 323 | lower ('l') or upper case ('L') hex characters - and big endian order |
| 324 | in lower ('b') or upper case ('B') hex characters. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 325 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 326 | Where no additional specifiers are used the default big endian |
| 327 | order with lower case hex characters will be printed. |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 328 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 329 | Passed by reference. |
Geert Uytterhoeven | 7330660 | 2015-04-15 16:17:14 -0700 | [diff] [blame] | 330 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 331 | dentry names |
| 332 | ============ |
| 333 | |
| 334 | :: |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 335 | |
Al Viro | 4b6ccca | 2013-09-03 12:00:44 -0400 | [diff] [blame] | 336 | %pd{,2,3,4} |
| 337 | %pD{,2,3,4} |
| 338 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 339 | For printing dentry name; if we race with :c:func:`d_move`, the name might be |
| 340 | a mix of old and new ones, but it won't oops. ``%pd`` dentry is a safer |
| 341 | equivalent of ``%s`` ``dentry->d_name.name`` we used to use, ``%pd<n>`` prints |
| 342 | ``n`` last components. ``%pD`` does the same thing for struct file. |
Al Viro | 4b6ccca | 2013-09-03 12:00:44 -0400 | [diff] [blame] | 343 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 344 | Passed by reference. |
Geert Uytterhoeven | 7330660 | 2015-04-15 16:17:14 -0700 | [diff] [blame] | 345 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 346 | block_device names |
| 347 | ================== |
| 348 | |
| 349 | :: |
Dmitry Monakhov | 1031bc5 | 2015-04-13 16:31:35 +0400 | [diff] [blame] | 350 | |
| 351 | %pg sda, sda1 or loop0p1 |
| 352 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 353 | For printing name of block_device pointers. |
Dmitry Monakhov | 1031bc5 | 2015-04-13 16:31:35 +0400 | [diff] [blame] | 354 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 355 | struct va_format |
| 356 | ================ |
| 357 | |
| 358 | :: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 359 | |
| 360 | %pV |
| 361 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 362 | For printing struct va_format structures. These contain a format string |
| 363 | and va_list as follows:: |
Andrew Murray | 04c5571 | 2011-06-15 12:57:09 -0700 | [diff] [blame] | 364 | |
| 365 | struct va_format { |
| 366 | const char *fmt; |
| 367 | va_list *va; |
| 368 | }; |
| 369 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 370 | Implements a "recursive vsnprintf". |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 371 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 372 | Do not use this feature without some mechanism to verify the |
| 373 | correctness of the format string and va_list arguments. |
Randy Dunlap | b67ad18 | 2008-11-12 13:26:55 -0800 | [diff] [blame] | 374 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 375 | Passed by reference. |
Geert Uytterhoeven | 7330660 | 2015-04-15 16:17:14 -0700 | [diff] [blame] | 376 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 377 | kobjects |
| 378 | ======== |
| 379 | |
| 380 | :: |
| 381 | |
Pantelis Antoniou | ce4fecf | 2015-01-21 19:06:14 +0200 | [diff] [blame] | 382 | %pO |
| 383 | |
| 384 | Base specifier for kobject based structs. Must be followed with |
| 385 | character for specific type of kobject as listed below: |
| 386 | |
| 387 | Device tree nodes: |
| 388 | |
| 389 | %pOF[fnpPcCF] |
| 390 | |
| 391 | For printing device tree nodes. The optional arguments are: |
| 392 | f device node full_name |
| 393 | n device node name |
| 394 | p device node phandle |
| 395 | P device node path spec (name + @unit) |
| 396 | F device node flags |
| 397 | c major compatible string |
| 398 | C full compatible string |
| 399 | Without any arguments prints full_name (same as %pOFf) |
| 400 | The separator when using multiple arguments is ':' |
| 401 | |
| 402 | Examples: |
| 403 | |
| 404 | %pOF /foo/bar@0 - Node full name |
| 405 | %pOFf /foo/bar@0 - Same as above |
| 406 | %pOFfp /foo/bar@0:10 - Node full name + phandle |
| 407 | %pOFfcF /foo/bar@0:foo,device:--P- - Node full name + |
| 408 | major compatible string + |
| 409 | node flags |
| 410 | D - dynamic |
| 411 | d - detached |
| 412 | P - Populated |
| 413 | B - Populated bus |
| 414 | |
| 415 | Passed by reference. |
| 416 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 417 | |
| 418 | struct clk |
| 419 | ========== |
| 420 | |
| 421 | :: |
Geert Uytterhoeven | 900cca2 | 2015-04-15 16:17:20 -0700 | [diff] [blame] | 422 | |
| 423 | %pC pll1 |
| 424 | %pCn pll1 |
| 425 | %pCr 1560000000 |
| 426 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 427 | For printing struct clk structures. ``%pC`` and ``%pCn`` print the name |
| 428 | (Common Clock Framework) or address (legacy clock framework) of the |
| 429 | structure; ``%pCr`` prints the current clock rate. |
Geert Uytterhoeven | 900cca2 | 2015-04-15 16:17:20 -0700 | [diff] [blame] | 430 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 431 | Passed by reference. |
Geert Uytterhoeven | 900cca2 | 2015-04-15 16:17:20 -0700 | [diff] [blame] | 432 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 433 | bitmap and its derivatives such as cpumask and nodemask |
| 434 | ======================================================= |
| 435 | |
| 436 | :: |
Wang Long | d072496 | 2015-02-26 03:28:25 +0000 | [diff] [blame] | 437 | |
| 438 | %*pb 0779 |
| 439 | %*pbl 0,3-6,8-10 |
| 440 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 441 | For printing bitmap and its derivatives such as cpumask and nodemask, |
| 442 | ``%*pb`` output the bitmap with field width as the number of bits and ``%*pbl`` |
| 443 | output the bitmap as range list with field width as the number of bits. |
Wang Long | d072496 | 2015-02-26 03:28:25 +0000 | [diff] [blame] | 444 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 445 | Passed by reference. |
Randy Dunlap | b67ad18 | 2008-11-12 13:26:55 -0800 | [diff] [blame] | 446 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 447 | Flags bitfields such as page flags, gfp_flags |
| 448 | ============================================= |
| 449 | |
| 450 | :: |
Vlastimil Babka | edf14cd | 2016-03-15 14:55:56 -0700 | [diff] [blame] | 451 | |
| 452 | %pGp referenced|uptodate|lru|active|private |
| 453 | %pGg GFP_USER|GFP_DMA32|GFP_NOWARN |
| 454 | %pGv read|exec|mayread|maywrite|mayexec|denywrite |
| 455 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 456 | For printing flags bitfields as a collection of symbolic constants that |
| 457 | would construct the value. The type of flags is given by the third |
| 458 | character. Currently supported are [p]age flags, [v]ma_flags (both |
| 459 | expect ``unsigned long *``) and [g]fp_flags (expects ``gfp_t *``). The flag |
| 460 | names and print order depends on the particular type. |
Vlastimil Babka | edf14cd | 2016-03-15 14:55:56 -0700 | [diff] [blame] | 461 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 462 | Note that this format should not be used directly in :c:func:`TP_printk()` part |
| 463 | of a tracepoint. Instead, use the ``show_*_flags()`` functions from |
| 464 | <trace/events/mmflags.h>. |
Vlastimil Babka | edf14cd | 2016-03-15 14:55:56 -0700 | [diff] [blame] | 465 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 466 | Passed by reference. |
Vlastimil Babka | edf14cd | 2016-03-15 14:55:56 -0700 | [diff] [blame] | 467 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 468 | Network device features |
| 469 | ======================= |
| 470 | |
| 471 | :: |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 472 | |
| 473 | %pNF 0x000000000000c000 |
| 474 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 475 | For printing netdev_features_t. |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 476 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 477 | Passed by reference. |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 478 | |
Mauro Carvalho Chehab | 3b03338 | 2017-05-16 22:27:11 -0300 | [diff] [blame] | 479 | If you add other ``%p`` extensions, please extend lib/test_printf.c with |
Rasmus Villemoes | d7ec9a0 | 2015-11-06 16:30:35 -0800 | [diff] [blame] | 480 | one or more test cases, if at all feasible. |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 481 | |
Martin Kletzander | 5e4ee7b | 2015-11-06 16:30:17 -0800 | [diff] [blame] | 482 | |
Randy Dunlap | b67ad18 | 2008-11-12 13:26:55 -0800 | [diff] [blame] | 483 | Thank you for your cooperation and attention. |