Thomas Gleixner | 21042e4 | 2019-06-04 10:11:34 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 2 | /* |
| 3 | * lib/hexdump.c |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/types.h> |
| 7 | #include <linux/ctype.h> |
Andy Shevchenko | 9888a58 | 2017-09-08 16:15:28 -0700 | [diff] [blame] | 8 | #include <linux/errno.h> |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 9 | #include <linux/kernel.h> |
Andy Shevchenko | b296a6d | 2020-10-15 20:10:21 -0700 | [diff] [blame] | 10 | #include <linux/minmax.h> |
Paul Gortmaker | 8bc3bcc | 2011-11-16 21:29:17 -0500 | [diff] [blame] | 11 | #include <linux/export.h> |
Horacio Mijail Anton Quiles | 0f70fe6 | 2015-07-17 16:24:04 -0700 | [diff] [blame] | 12 | #include <asm/unaligned.h> |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 13 | |
Harvey Harrison | 3fc9577 | 2008-05-14 16:05:49 -0700 | [diff] [blame] | 14 | const char hex_asc[] = "0123456789abcdef"; |
| 15 | EXPORT_SYMBOL(hex_asc); |
Andre Naujoks | c26d436 | 2013-09-13 19:37:12 +0200 | [diff] [blame] | 16 | const char hex_asc_upper[] = "0123456789ABCDEF"; |
| 17 | EXPORT_SYMBOL(hex_asc_upper); |
Harvey Harrison | 3fc9577 | 2008-05-14 16:05:49 -0700 | [diff] [blame] | 18 | |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 19 | /** |
Andy Shevchenko | 90378889 | 2010-05-24 14:33:23 -0700 | [diff] [blame] | 20 | * hex_to_bin - convert a hex digit to its real value |
| 21 | * @ch: ascii character represents hex digit |
| 22 | * |
| 23 | * hex_to_bin() converts one hex digit to its actual value or -1 in case of bad |
| 24 | * input. |
Mikulas Patocka | 616d354 | 2022-04-25 08:07:48 -0400 | [diff] [blame] | 25 | * |
| 26 | * This function is used to load cryptographic keys, so it is coded in such a |
| 27 | * way that there are no conditions or memory accesses that depend on data. |
| 28 | * |
| 29 | * Explanation of the logic: |
| 30 | * (ch - '9' - 1) is negative if ch <= '9' |
| 31 | * ('0' - 1 - ch) is negative if ch >= '0' |
| 32 | * we "and" these two values, so the result is negative if ch is in the range |
| 33 | * '0' ... '9' |
| 34 | * we are only interested in the sign, so we do a shift ">> 8"; note that right |
| 35 | * shift of a negative value is implementation-defined, so we cast the |
| 36 | * value to (unsigned) before the shift --- we have 0xffffff if ch is in |
| 37 | * the range '0' ... '9', 0 otherwise |
| 38 | * we "and" this value with (ch - '0' + 1) --- we have a value 1 ... 10 if ch is |
| 39 | * in the range '0' ... '9', 0 otherwise |
| 40 | * we add this value to -1 --- we have a value 0 ... 9 if ch is in the range '0' |
| 41 | * ... '9', -1 otherwise |
| 42 | * the next line is similar to the previous one, but we need to decode both |
| 43 | * uppercase and lowercase letters, so we use (ch & 0xdf), which converts |
| 44 | * lowercase to uppercase |
Andy Shevchenko | 90378889 | 2010-05-24 14:33:23 -0700 | [diff] [blame] | 45 | */ |
Greg Kroah-Hartman | 2ed2810 | 2022-05-13 13:45:30 +0200 | [diff] [blame] | 46 | /* |
| 47 | * perserve abi due to 15b78a8e38e8 ("hex2bin: make the function hex_to_bin |
| 48 | * constant-time" |
| 49 | */ |
| 50 | #ifdef __GENKSYMS__ |
| 51 | int hex_to_bin(char ch) |
| 52 | #else |
Mikulas Patocka | 616d354 | 2022-04-25 08:07:48 -0400 | [diff] [blame] | 53 | int hex_to_bin(unsigned char ch) |
Greg Kroah-Hartman | 2ed2810 | 2022-05-13 13:45:30 +0200 | [diff] [blame] | 54 | #endif |
Andy Shevchenko | 90378889 | 2010-05-24 14:33:23 -0700 | [diff] [blame] | 55 | { |
Mikulas Patocka | 616d354 | 2022-04-25 08:07:48 -0400 | [diff] [blame] | 56 | unsigned char cu = ch & 0xdf; |
| 57 | return -1 + |
| 58 | ((ch - '0' + 1) & (unsigned)((ch - '9' - 1) & ('0' - 1 - ch)) >> 8) + |
| 59 | ((cu - 'A' + 11) & (unsigned)((cu - 'F' - 1) & ('A' - 1 - cu)) >> 8); |
Andy Shevchenko | 90378889 | 2010-05-24 14:33:23 -0700 | [diff] [blame] | 60 | } |
| 61 | EXPORT_SYMBOL(hex_to_bin); |
| 62 | |
| 63 | /** |
Mimi Zohar | dc88e46 | 2010-11-23 17:50:31 -0500 | [diff] [blame] | 64 | * hex2bin - convert an ascii hexadecimal string to its binary representation |
| 65 | * @dst: binary result |
| 66 | * @src: ascii hexadecimal string |
| 67 | * @count: result length |
Mimi Zohar | b780498 | 2011-09-20 11:23:49 -0400 | [diff] [blame] | 68 | * |
Andy Shevchenko | 9888a58 | 2017-09-08 16:15:28 -0700 | [diff] [blame] | 69 | * Return 0 on success, -EINVAL in case of bad input. |
Mimi Zohar | dc88e46 | 2010-11-23 17:50:31 -0500 | [diff] [blame] | 70 | */ |
Mimi Zohar | b780498 | 2011-09-20 11:23:49 -0400 | [diff] [blame] | 71 | int hex2bin(u8 *dst, const char *src, size_t count) |
Mimi Zohar | dc88e46 | 2010-11-23 17:50:31 -0500 | [diff] [blame] | 72 | { |
| 73 | while (count--) { |
Mikulas Patocka | 51477d3 | 2022-04-27 11:26:40 -0400 | [diff] [blame] | 74 | int hi, lo; |
Mimi Zohar | b780498 | 2011-09-20 11:23:49 -0400 | [diff] [blame] | 75 | |
Mikulas Patocka | 51477d3 | 2022-04-27 11:26:40 -0400 | [diff] [blame] | 76 | hi = hex_to_bin(*src++); |
| 77 | if (unlikely(hi < 0)) |
| 78 | return -EINVAL; |
| 79 | lo = hex_to_bin(*src++); |
| 80 | if (unlikely(lo < 0)) |
Andy Shevchenko | 9888a58 | 2017-09-08 16:15:28 -0700 | [diff] [blame] | 81 | return -EINVAL; |
Mimi Zohar | b780498 | 2011-09-20 11:23:49 -0400 | [diff] [blame] | 82 | |
| 83 | *dst++ = (hi << 4) | lo; |
Mimi Zohar | dc88e46 | 2010-11-23 17:50:31 -0500 | [diff] [blame] | 84 | } |
Mimi Zohar | b780498 | 2011-09-20 11:23:49 -0400 | [diff] [blame] | 85 | return 0; |
Mimi Zohar | dc88e46 | 2010-11-23 17:50:31 -0500 | [diff] [blame] | 86 | } |
| 87 | EXPORT_SYMBOL(hex2bin); |
| 88 | |
| 89 | /** |
David Howells | 53d91c5 | 2014-09-16 17:36:01 +0100 | [diff] [blame] | 90 | * bin2hex - convert binary data to an ascii hexadecimal string |
| 91 | * @dst: ascii hexadecimal result |
| 92 | * @src: binary data |
| 93 | * @count: binary data length |
| 94 | */ |
| 95 | char *bin2hex(char *dst, const void *src, size_t count) |
| 96 | { |
| 97 | const unsigned char *_src = src; |
| 98 | |
| 99 | while (count--) |
| 100 | dst = hex_byte_pack(dst, *_src++); |
| 101 | return dst; |
| 102 | } |
| 103 | EXPORT_SYMBOL(bin2hex); |
| 104 | |
| 105 | /** |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 106 | * hex_dump_to_buffer - convert a blob of data to "hex ASCII" in memory |
| 107 | * @buf: data blob to dump |
| 108 | * @len: number of bytes in the @buf |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 109 | * @rowsize: number of bytes to print per line; must be 16 or 32 |
| 110 | * @groupsize: number of bytes to print at a time (1, 2, 4, 8; default = 1) |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 111 | * @linebuf: where to put the converted data |
| 112 | * @linebuflen: total size of @linebuf, including space for terminating NUL |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 113 | * @ascii: include ASCII after the hex output |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 114 | * |
| 115 | * hex_dump_to_buffer() works on one "line" of output at a time, i.e., |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 116 | * 16 or 32 bytes of input data converted to hex + ASCII output. |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 117 | * |
| 118 | * Given a buffer of u8 data, hex_dump_to_buffer() converts the input data |
| 119 | * to a hex + ASCII dump at the supplied memory location. |
| 120 | * The converted output is always NUL-terminated. |
| 121 | * |
| 122 | * E.g.: |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 123 | * hex_dump_to_buffer(frame->data, frame->len, 16, 1, |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 124 | * linebuf, sizeof(linebuf), true); |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 125 | * |
| 126 | * example output buffer: |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 127 | * 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f @ABCDEFGHIJKLMNO |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 128 | * |
| 129 | * Return: |
| 130 | * The amount of bytes placed in the buffer without terminating NUL. If the |
| 131 | * output was truncated, then the return value is the number of bytes |
| 132 | * (excluding the terminating NUL) which would have been written to the final |
| 133 | * string if enough space had been available. |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 134 | */ |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 135 | int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize, |
| 136 | char *linebuf, size_t linebuflen, bool ascii) |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 137 | { |
| 138 | const u8 *ptr = buf; |
Andy Shevchenko | 5d909c8 | 2015-02-12 15:02:26 -0800 | [diff] [blame] | 139 | int ngroups; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 140 | u8 ch; |
| 141 | int j, lx = 0; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 142 | int ascii_column; |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 143 | int ret; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 144 | |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 145 | if (rowsize != 16 && rowsize != 32) |
| 146 | rowsize = 16; |
| 147 | |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 148 | if (len > rowsize) /* limit to one line at a time */ |
| 149 | len = rowsize; |
Andy Shevchenko | 5d909c8 | 2015-02-12 15:02:26 -0800 | [diff] [blame] | 150 | if (!is_power_of_2(groupsize) || groupsize > 8) |
| 151 | groupsize = 1; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 152 | if ((len % groupsize) != 0) /* no mixed size output */ |
| 153 | groupsize = 1; |
| 154 | |
Andy Shevchenko | 5d909c8 | 2015-02-12 15:02:26 -0800 | [diff] [blame] | 155 | ngroups = len / groupsize; |
| 156 | ascii_column = rowsize * 2 + rowsize / groupsize + 1; |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 157 | |
| 158 | if (!linebuflen) |
| 159 | goto overflow1; |
| 160 | |
| 161 | if (!len) |
| 162 | goto nil; |
| 163 | |
Andy Shevchenko | 5d909c8 | 2015-02-12 15:02:26 -0800 | [diff] [blame] | 164 | if (groupsize == 8) { |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 165 | const u64 *ptr8 = buf; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 166 | |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 167 | for (j = 0; j < ngroups; j++) { |
| 168 | ret = snprintf(linebuf + lx, linebuflen - lx, |
| 169 | "%s%16.16llx", j ? " " : "", |
Horacio Mijail Anton Quiles | 0f70fe6 | 2015-07-17 16:24:04 -0700 | [diff] [blame] | 170 | get_unaligned(ptr8 + j)); |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 171 | if (ret >= linebuflen - lx) |
| 172 | goto overflow1; |
| 173 | lx += ret; |
| 174 | } |
Andy Shevchenko | 5d909c8 | 2015-02-12 15:02:26 -0800 | [diff] [blame] | 175 | } else if (groupsize == 4) { |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 176 | const u32 *ptr4 = buf; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 177 | |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 178 | for (j = 0; j < ngroups; j++) { |
| 179 | ret = snprintf(linebuf + lx, linebuflen - lx, |
| 180 | "%s%8.8x", j ? " " : "", |
Horacio Mijail Anton Quiles | 0f70fe6 | 2015-07-17 16:24:04 -0700 | [diff] [blame] | 181 | get_unaligned(ptr4 + j)); |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 182 | if (ret >= linebuflen - lx) |
| 183 | goto overflow1; |
| 184 | lx += ret; |
| 185 | } |
Andy Shevchenko | 5d909c8 | 2015-02-12 15:02:26 -0800 | [diff] [blame] | 186 | } else if (groupsize == 2) { |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 187 | const u16 *ptr2 = buf; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 188 | |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 189 | for (j = 0; j < ngroups; j++) { |
| 190 | ret = snprintf(linebuf + lx, linebuflen - lx, |
| 191 | "%s%4.4x", j ? " " : "", |
Horacio Mijail Anton Quiles | 0f70fe6 | 2015-07-17 16:24:04 -0700 | [diff] [blame] | 192 | get_unaligned(ptr2 + j)); |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 193 | if (ret >= linebuflen - lx) |
| 194 | goto overflow1; |
| 195 | lx += ret; |
| 196 | } |
Andy Shevchenko | 5d909c8 | 2015-02-12 15:02:26 -0800 | [diff] [blame] | 197 | } else { |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 198 | for (j = 0; j < len; j++) { |
Andy Shevchenko | 9f029f5 | 2015-11-06 16:31:31 -0800 | [diff] [blame] | 199 | if (linebuflen < lx + 2) |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 200 | goto overflow2; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 201 | ch = ptr[j]; |
Harvey Harrison | 3fc9577 | 2008-05-14 16:05:49 -0700 | [diff] [blame] | 202 | linebuf[lx++] = hex_asc_hi(ch); |
Andy Shevchenko | 9f029f5 | 2015-11-06 16:31:31 -0800 | [diff] [blame] | 203 | if (linebuflen < lx + 2) |
| 204 | goto overflow2; |
Harvey Harrison | 3fc9577 | 2008-05-14 16:05:49 -0700 | [diff] [blame] | 205 | linebuf[lx++] = hex_asc_lo(ch); |
Andy Shevchenko | 9f029f5 | 2015-11-06 16:31:31 -0800 | [diff] [blame] | 206 | if (linebuflen < lx + 2) |
| 207 | goto overflow2; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 208 | linebuf[lx++] = ' '; |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 209 | } |
Li Zefan | c67ae69 | 2009-06-16 15:33:45 -0700 | [diff] [blame] | 210 | if (j) |
| 211 | lx--; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 212 | } |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 213 | if (!ascii) |
| 214 | goto nil; |
| 215 | |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 216 | while (lx < ascii_column) { |
| 217 | if (linebuflen < lx + 2) |
| 218 | goto overflow2; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 219 | linebuf[lx++] = ' '; |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 220 | } |
| 221 | for (j = 0; j < len; j++) { |
| 222 | if (linebuflen < lx + 2) |
| 223 | goto overflow2; |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 224 | ch = ptr[j]; |
| 225 | linebuf[lx++] = (isascii(ch) && isprint(ch)) ? ch : '.'; |
| 226 | } |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 227 | nil: |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 228 | linebuf[lx] = '\0'; |
| 229 | return lx; |
| 230 | overflow2: |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 231 | linebuf[lx++] = '\0'; |
Andy Shevchenko | 114fc1a | 2015-02-12 15:02:29 -0800 | [diff] [blame] | 232 | overflow1: |
| 233 | return ascii ? ascii_column + len : (groupsize * 2 + 1) * ngroups - 1; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 234 | } |
| 235 | EXPORT_SYMBOL(hex_dump_to_buffer); |
| 236 | |
Joe Perches | ac83ed6 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 237 | #ifdef CONFIG_PRINTK |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 238 | /** |
| 239 | * print_hex_dump - print a text hex dump to syslog for a binary blob of data |
| 240 | * @level: kernel log level (e.g. KERN_DEBUG) |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 241 | * @prefix_str: string to prefix each line with; |
| 242 | * caller supplies trailing spaces for alignment if desired |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 243 | * @prefix_type: controls whether prefix of an offset, address, or none |
| 244 | * is printed (%DUMP_PREFIX_OFFSET, %DUMP_PREFIX_ADDRESS, %DUMP_PREFIX_NONE) |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 245 | * @rowsize: number of bytes to print per line; must be 16 or 32 |
| 246 | * @groupsize: number of bytes to print at a time (1, 2, 4, 8; default = 1) |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 247 | * @buf: data blob to dump |
| 248 | * @len: number of bytes in the @buf |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 249 | * @ascii: include ASCII after the hex output |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 250 | * |
| 251 | * Given a buffer of u8 data, print_hex_dump() prints a hex + ASCII dump |
| 252 | * to the kernel log at the specified kernel log level, with an optional |
| 253 | * leading prefix. |
| 254 | * |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 255 | * print_hex_dump() works on one "line" of output at a time, i.e., |
| 256 | * 16 or 32 bytes of input data converted to hex + ASCII output. |
| 257 | * print_hex_dump() iterates over the entire input @buf, breaking it into |
| 258 | * "line size" chunks to format and print. |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 259 | * |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 260 | * E.g.: |
| 261 | * print_hex_dump(KERN_DEBUG, "raw data: ", DUMP_PREFIX_ADDRESS, |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 262 | * 16, 1, frame->data, frame->len, true); |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 263 | * |
| 264 | * Example output using %DUMP_PREFIX_OFFSET and 1-byte mode: |
| 265 | * 0009ab42: 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f @ABCDEFGHIJKLMNO |
| 266 | * Example output using %DUMP_PREFIX_ADDRESS and 4-byte mode: |
| 267 | * ffffffff88089af0: 73727170 77767574 7b7a7978 7f7e7d7c pqrstuvwxyz{|}~. |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 268 | */ |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 269 | void print_hex_dump(const char *level, const char *prefix_str, int prefix_type, |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 270 | int rowsize, int groupsize, |
| 271 | const void *buf, size_t len, bool ascii) |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 272 | { |
Artem Bityutskiy | 6a0ed91 | 2007-08-07 23:43:14 +0300 | [diff] [blame] | 273 | const u8 *ptr = buf; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 274 | int i, linelen, remaining = len; |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 275 | unsigned char linebuf[32 * 3 + 2 + 32 + 1]; |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 276 | |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 277 | if (rowsize != 16 && rowsize != 32) |
| 278 | rowsize = 16; |
| 279 | |
| 280 | for (i = 0; i < len; i += rowsize) { |
| 281 | linelen = min(remaining, rowsize); |
| 282 | remaining -= rowsize; |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 283 | |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 284 | hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize, |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 285 | linebuf, sizeof(linebuf), ascii); |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 286 | |
| 287 | switch (prefix_type) { |
| 288 | case DUMP_PREFIX_ADDRESS: |
Joe Perches | db0fd97 | 2010-05-24 14:33:22 -0700 | [diff] [blame] | 289 | printk("%s%s%p: %s\n", |
| 290 | level, prefix_str, ptr + i, linebuf); |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 291 | break; |
| 292 | case DUMP_PREFIX_OFFSET: |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 293 | printk("%s%s%.8x: %s\n", level, prefix_str, i, linebuf); |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 294 | break; |
| 295 | default: |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 296 | printk("%s%s%s\n", level, prefix_str, linebuf); |
Randy Dunlap | 99eaf3c | 2007-05-10 22:22:39 -0700 | [diff] [blame] | 297 | break; |
| 298 | } |
| 299 | } |
| 300 | } |
| 301 | EXPORT_SYMBOL(print_hex_dump); |
Randy Dunlap | c790923 | 2007-06-08 13:47:04 -0700 | [diff] [blame] | 302 | |
Vladimir Kondratiev | 7a55561 | 2012-12-05 16:48:27 -0500 | [diff] [blame] | 303 | #endif /* defined(CONFIG_PRINTK) */ |