blob: 07cda1a13e09778f99f57618d7ca6d81e68377b3 [file] [log] [blame]
Thomas Gleixner21042e42019-06-04 10:11:34 +02001// SPDX-License-Identifier: GPL-2.0-only
Randy Dunlap99eaf3c2007-05-10 22:22:39 -07002/*
3 * lib/hexdump.c
Randy Dunlap99eaf3c2007-05-10 22:22:39 -07004 */
5
6#include <linux/types.h>
7#include <linux/ctype.h>
Andy Shevchenko9888a582017-09-08 16:15:28 -07008#include <linux/errno.h>
Randy Dunlap99eaf3c2007-05-10 22:22:39 -07009#include <linux/kernel.h>
Andy Shevchenkob296a6d2020-10-15 20:10:21 -070010#include <linux/minmax.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050011#include <linux/export.h>
Horacio Mijail Anton Quiles0f70fe62015-07-17 16:24:04 -070012#include <asm/unaligned.h>
Randy Dunlap99eaf3c2007-05-10 22:22:39 -070013
Harvey Harrison3fc95772008-05-14 16:05:49 -070014const char hex_asc[] = "0123456789abcdef";
15EXPORT_SYMBOL(hex_asc);
Andre Naujoksc26d4362013-09-13 19:37:12 +020016const char hex_asc_upper[] = "0123456789ABCDEF";
17EXPORT_SYMBOL(hex_asc_upper);
Harvey Harrison3fc95772008-05-14 16:05:49 -070018
Randy Dunlap99eaf3c2007-05-10 22:22:39 -070019/**
Andy Shevchenko903788892010-05-24 14:33:23 -070020 * 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 Patocka616d3542022-04-25 08:07:48 -040025 *
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 Shevchenko903788892010-05-24 14:33:23 -070045 */
Greg Kroah-Hartman2ed28102022-05-13 13:45:30 +020046/*
47 * perserve abi due to 15b78a8e38e8 ("hex2bin: make the function hex_to_bin
48 * constant-time"
49 */
50#ifdef __GENKSYMS__
51int hex_to_bin(char ch)
52#else
Mikulas Patocka616d3542022-04-25 08:07:48 -040053int hex_to_bin(unsigned char ch)
Greg Kroah-Hartman2ed28102022-05-13 13:45:30 +020054#endif
Andy Shevchenko903788892010-05-24 14:33:23 -070055{
Mikulas Patocka616d3542022-04-25 08:07:48 -040056 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 Shevchenko903788892010-05-24 14:33:23 -070060}
61EXPORT_SYMBOL(hex_to_bin);
62
63/**
Mimi Zohardc88e462010-11-23 17:50:31 -050064 * hex2bin - convert an ascii hexadecimal string to its binary representation
65 * @dst: binary result
66 * @src: ascii hexadecimal string
67 * @count: result length
Mimi Zoharb7804982011-09-20 11:23:49 -040068 *
Andy Shevchenko9888a582017-09-08 16:15:28 -070069 * Return 0 on success, -EINVAL in case of bad input.
Mimi Zohardc88e462010-11-23 17:50:31 -050070 */
Mimi Zoharb7804982011-09-20 11:23:49 -040071int hex2bin(u8 *dst, const char *src, size_t count)
Mimi Zohardc88e462010-11-23 17:50:31 -050072{
73 while (count--) {
Mikulas Patocka51477d32022-04-27 11:26:40 -040074 int hi, lo;
Mimi Zoharb7804982011-09-20 11:23:49 -040075
Mikulas Patocka51477d32022-04-27 11:26:40 -040076 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 Shevchenko9888a582017-09-08 16:15:28 -070081 return -EINVAL;
Mimi Zoharb7804982011-09-20 11:23:49 -040082
83 *dst++ = (hi << 4) | lo;
Mimi Zohardc88e462010-11-23 17:50:31 -050084 }
Mimi Zoharb7804982011-09-20 11:23:49 -040085 return 0;
Mimi Zohardc88e462010-11-23 17:50:31 -050086}
87EXPORT_SYMBOL(hex2bin);
88
89/**
David Howells53d91c52014-09-16 17:36:01 +010090 * bin2hex - convert binary data to an ascii hexadecimal string
91 * @dst: ascii hexadecimal result
92 * @src: binary data
93 * @count: binary data length
94 */
95char *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}
103EXPORT_SYMBOL(bin2hex);
104
105/**
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700106 * 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 Dunlapc7909232007-06-08 13:47:04 -0700109 * @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 Dunlap99eaf3c2007-05-10 22:22:39 -0700111 * @linebuf: where to put the converted data
112 * @linebuflen: total size of @linebuf, including space for terminating NUL
Randy Dunlapc7909232007-06-08 13:47:04 -0700113 * @ascii: include ASCII after the hex output
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700114 *
115 * hex_dump_to_buffer() works on one "line" of output at a time, i.e.,
Randy Dunlapc7909232007-06-08 13:47:04 -0700116 * 16 or 32 bytes of input data converted to hex + ASCII output.
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700117 *
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 Dunlapc7909232007-06-08 13:47:04 -0700123 * hex_dump_to_buffer(frame->data, frame->len, 16, 1,
Joe Perchesdb0fd972010-05-24 14:33:22 -0700124 * linebuf, sizeof(linebuf), true);
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700125 *
126 * example output buffer:
Randy Dunlapc7909232007-06-08 13:47:04 -0700127 * 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f @ABCDEFGHIJKLMNO
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800128 *
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 Dunlap99eaf3c2007-05-10 22:22:39 -0700134 */
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800135int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize,
136 char *linebuf, size_t linebuflen, bool ascii)
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700137{
138 const u8 *ptr = buf;
Andy Shevchenko5d909c82015-02-12 15:02:26 -0800139 int ngroups;
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700140 u8 ch;
141 int j, lx = 0;
Randy Dunlapc7909232007-06-08 13:47:04 -0700142 int ascii_column;
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800143 int ret;
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700144
Randy Dunlapc7909232007-06-08 13:47:04 -0700145 if (rowsize != 16 && rowsize != 32)
146 rowsize = 16;
147
Randy Dunlapc7909232007-06-08 13:47:04 -0700148 if (len > rowsize) /* limit to one line at a time */
149 len = rowsize;
Andy Shevchenko5d909c82015-02-12 15:02:26 -0800150 if (!is_power_of_2(groupsize) || groupsize > 8)
151 groupsize = 1;
Randy Dunlapc7909232007-06-08 13:47:04 -0700152 if ((len % groupsize) != 0) /* no mixed size output */
153 groupsize = 1;
154
Andy Shevchenko5d909c82015-02-12 15:02:26 -0800155 ngroups = len / groupsize;
156 ascii_column = rowsize * 2 + rowsize / groupsize + 1;
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800157
158 if (!linebuflen)
159 goto overflow1;
160
161 if (!len)
162 goto nil;
163
Andy Shevchenko5d909c82015-02-12 15:02:26 -0800164 if (groupsize == 8) {
Randy Dunlapc7909232007-06-08 13:47:04 -0700165 const u64 *ptr8 = buf;
Randy Dunlapc7909232007-06-08 13:47:04 -0700166
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800167 for (j = 0; j < ngroups; j++) {
168 ret = snprintf(linebuf + lx, linebuflen - lx,
169 "%s%16.16llx", j ? " " : "",
Horacio Mijail Anton Quiles0f70fe62015-07-17 16:24:04 -0700170 get_unaligned(ptr8 + j));
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800171 if (ret >= linebuflen - lx)
172 goto overflow1;
173 lx += ret;
174 }
Andy Shevchenko5d909c82015-02-12 15:02:26 -0800175 } else if (groupsize == 4) {
Randy Dunlapc7909232007-06-08 13:47:04 -0700176 const u32 *ptr4 = buf;
Randy Dunlapc7909232007-06-08 13:47:04 -0700177
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800178 for (j = 0; j < ngroups; j++) {
179 ret = snprintf(linebuf + lx, linebuflen - lx,
180 "%s%8.8x", j ? " " : "",
Horacio Mijail Anton Quiles0f70fe62015-07-17 16:24:04 -0700181 get_unaligned(ptr4 + j));
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800182 if (ret >= linebuflen - lx)
183 goto overflow1;
184 lx += ret;
185 }
Andy Shevchenko5d909c82015-02-12 15:02:26 -0800186 } else if (groupsize == 2) {
Randy Dunlapc7909232007-06-08 13:47:04 -0700187 const u16 *ptr2 = buf;
Randy Dunlapc7909232007-06-08 13:47:04 -0700188
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800189 for (j = 0; j < ngroups; j++) {
190 ret = snprintf(linebuf + lx, linebuflen - lx,
191 "%s%4.4x", j ? " " : "",
Horacio Mijail Anton Quiles0f70fe62015-07-17 16:24:04 -0700192 get_unaligned(ptr2 + j));
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800193 if (ret >= linebuflen - lx)
194 goto overflow1;
195 lx += ret;
196 }
Andy Shevchenko5d909c82015-02-12 15:02:26 -0800197 } else {
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800198 for (j = 0; j < len; j++) {
Andy Shevchenko9f029f52015-11-06 16:31:31 -0800199 if (linebuflen < lx + 2)
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800200 goto overflow2;
Randy Dunlapc7909232007-06-08 13:47:04 -0700201 ch = ptr[j];
Harvey Harrison3fc95772008-05-14 16:05:49 -0700202 linebuf[lx++] = hex_asc_hi(ch);
Andy Shevchenko9f029f52015-11-06 16:31:31 -0800203 if (linebuflen < lx + 2)
204 goto overflow2;
Harvey Harrison3fc95772008-05-14 16:05:49 -0700205 linebuf[lx++] = hex_asc_lo(ch);
Andy Shevchenko9f029f52015-11-06 16:31:31 -0800206 if (linebuflen < lx + 2)
207 goto overflow2;
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700208 linebuf[lx++] = ' ';
Randy Dunlapc7909232007-06-08 13:47:04 -0700209 }
Li Zefanc67ae692009-06-16 15:33:45 -0700210 if (j)
211 lx--;
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700212 }
Randy Dunlapc7909232007-06-08 13:47:04 -0700213 if (!ascii)
214 goto nil;
215
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800216 while (lx < ascii_column) {
217 if (linebuflen < lx + 2)
218 goto overflow2;
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700219 linebuf[lx++] = ' ';
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800220 }
221 for (j = 0; j < len; j++) {
222 if (linebuflen < lx + 2)
223 goto overflow2;
Joe Perchesdb0fd972010-05-24 14:33:22 -0700224 ch = ptr[j];
225 linebuf[lx++] = (isascii(ch) && isprint(ch)) ? ch : '.';
226 }
Randy Dunlapc7909232007-06-08 13:47:04 -0700227nil:
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800228 linebuf[lx] = '\0';
229 return lx;
230overflow2:
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700231 linebuf[lx++] = '\0';
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800232overflow1:
233 return ascii ? ascii_column + len : (groupsize * 2 + 1) * ngroups - 1;
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700234}
235EXPORT_SYMBOL(hex_dump_to_buffer);
236
Joe Perchesac83ed62011-01-12 16:59:47 -0800237#ifdef CONFIG_PRINTK
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700238/**
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 Dunlapc7909232007-06-08 13:47:04 -0700241 * @prefix_str: string to prefix each line with;
242 * caller supplies trailing spaces for alignment if desired
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700243 * @prefix_type: controls whether prefix of an offset, address, or none
244 * is printed (%DUMP_PREFIX_OFFSET, %DUMP_PREFIX_ADDRESS, %DUMP_PREFIX_NONE)
Randy Dunlapc7909232007-06-08 13:47:04 -0700245 * @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 Dunlap99eaf3c2007-05-10 22:22:39 -0700247 * @buf: data blob to dump
248 * @len: number of bytes in the @buf
Randy Dunlapc7909232007-06-08 13:47:04 -0700249 * @ascii: include ASCII after the hex output
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700250 *
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 Dunlapc7909232007-06-08 13:47:04 -0700255 * 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 Dunlap99eaf3c2007-05-10 22:22:39 -0700259 *
Randy Dunlapc7909232007-06-08 13:47:04 -0700260 * E.g.:
261 * print_hex_dump(KERN_DEBUG, "raw data: ", DUMP_PREFIX_ADDRESS,
Joe Perchesdb0fd972010-05-24 14:33:22 -0700262 * 16, 1, frame->data, frame->len, true);
Randy Dunlapc7909232007-06-08 13:47:04 -0700263 *
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 Dunlap99eaf3c2007-05-10 22:22:39 -0700268 */
Randy Dunlapc7909232007-06-08 13:47:04 -0700269void print_hex_dump(const char *level, const char *prefix_str, int prefix_type,
Joe Perchesdb0fd972010-05-24 14:33:22 -0700270 int rowsize, int groupsize,
271 const void *buf, size_t len, bool ascii)
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700272{
Artem Bityutskiy6a0ed912007-08-07 23:43:14 +0300273 const u8 *ptr = buf;
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700274 int i, linelen, remaining = len;
Joe Perchesdb0fd972010-05-24 14:33:22 -0700275 unsigned char linebuf[32 * 3 + 2 + 32 + 1];
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700276
Randy Dunlapc7909232007-06-08 13:47:04 -0700277 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 Perchesdb0fd972010-05-24 14:33:22 -0700283
Randy Dunlapc7909232007-06-08 13:47:04 -0700284 hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize,
Joe Perchesdb0fd972010-05-24 14:33:22 -0700285 linebuf, sizeof(linebuf), ascii);
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700286
287 switch (prefix_type) {
288 case DUMP_PREFIX_ADDRESS:
Joe Perchesdb0fd972010-05-24 14:33:22 -0700289 printk("%s%s%p: %s\n",
290 level, prefix_str, ptr + i, linebuf);
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700291 break;
292 case DUMP_PREFIX_OFFSET:
Randy Dunlapc7909232007-06-08 13:47:04 -0700293 printk("%s%s%.8x: %s\n", level, prefix_str, i, linebuf);
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700294 break;
295 default:
Randy Dunlapc7909232007-06-08 13:47:04 -0700296 printk("%s%s%s\n", level, prefix_str, linebuf);
Randy Dunlap99eaf3c2007-05-10 22:22:39 -0700297 break;
298 }
299 }
300}
301EXPORT_SYMBOL(print_hex_dump);
Randy Dunlapc7909232007-06-08 13:47:04 -0700302
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500303#endif /* defined(CONFIG_PRINTK) */