Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * lib/hexdump.c |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. See README and COPYING for |
| 8 | * more details. |
| 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <hexdump.h> |
Simon Glass | 19edf13 | 2021-05-08 07:00:02 -0600 | [diff] [blame] | 13 | #include <mapmem.h> |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 14 | #include <linux/ctype.h> |
| 15 | #include <linux/compat.h> |
| 16 | #include <linux/log2.h> |
| 17 | #include <asm/unaligned.h> |
| 18 | |
Simon Glass | 5d6d2b8 | 2021-05-08 07:00:03 -0600 | [diff] [blame] | 19 | #define MAX_LINE_LENGTH_BYTES 64 |
| 20 | |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 21 | const char hex_asc[] = "0123456789abcdef"; |
| 22 | const char hex_asc_upper[] = "0123456789ABCDEF"; |
| 23 | |
Heinrich Schuchardt | f6a24a1 | 2020-04-15 18:46:22 +0200 | [diff] [blame] | 24 | #if CONFIG_IS_ENABLED(HEXDUMP) |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 25 | int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, int groupsize, |
| 26 | char *linebuf, size_t linebuflen, bool ascii) |
| 27 | { |
| 28 | const u8 *ptr = buf; |
| 29 | int ngroups; |
| 30 | u8 ch; |
| 31 | int j, lx = 0; |
| 32 | int ascii_column; |
| 33 | int ret; |
| 34 | |
Simon Glass | 5d6d2b8 | 2021-05-08 07:00:03 -0600 | [diff] [blame] | 35 | if (!rowsize) |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 36 | rowsize = 16; |
Simon Glass | 5d6d2b8 | 2021-05-08 07:00:03 -0600 | [diff] [blame] | 37 | else |
| 38 | rowsize = min(rowsize, MAX_LINE_LENGTH_BYTES); |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 39 | |
| 40 | if (len > rowsize) /* limit to one line at a time */ |
| 41 | len = rowsize; |
| 42 | if (!is_power_of_2(groupsize) || groupsize > 8) |
| 43 | groupsize = 1; |
| 44 | if ((len % groupsize) != 0) /* no mixed size output */ |
| 45 | groupsize = 1; |
| 46 | |
| 47 | ngroups = len / groupsize; |
| 48 | ascii_column = rowsize * 2 + rowsize / groupsize + 1; |
| 49 | |
| 50 | if (!linebuflen) |
| 51 | goto overflow1; |
| 52 | |
| 53 | if (!len) |
| 54 | goto nil; |
| 55 | |
| 56 | if (groupsize == 8) { |
| 57 | const u64 *ptr8 = buf; |
| 58 | |
| 59 | for (j = 0; j < ngroups; j++) { |
| 60 | ret = snprintf(linebuf + lx, linebuflen - lx, |
| 61 | "%s%16.16llx", j ? " " : "", |
| 62 | get_unaligned(ptr8 + j)); |
| 63 | if (ret >= linebuflen - lx) |
| 64 | goto overflow1; |
| 65 | lx += ret; |
| 66 | } |
| 67 | } else if (groupsize == 4) { |
| 68 | const u32 *ptr4 = buf; |
| 69 | |
| 70 | for (j = 0; j < ngroups; j++) { |
| 71 | ret = snprintf(linebuf + lx, linebuflen - lx, |
| 72 | "%s%8.8x", j ? " " : "", |
| 73 | get_unaligned(ptr4 + j)); |
| 74 | if (ret >= linebuflen - lx) |
| 75 | goto overflow1; |
| 76 | lx += ret; |
| 77 | } |
| 78 | } else if (groupsize == 2) { |
| 79 | const u16 *ptr2 = buf; |
| 80 | |
| 81 | for (j = 0; j < ngroups; j++) { |
| 82 | ret = snprintf(linebuf + lx, linebuflen - lx, |
| 83 | "%s%4.4x", j ? " " : "", |
| 84 | get_unaligned(ptr2 + j)); |
| 85 | if (ret >= linebuflen - lx) |
| 86 | goto overflow1; |
| 87 | lx += ret; |
| 88 | } |
| 89 | } else { |
| 90 | for (j = 0; j < len; j++) { |
| 91 | if (linebuflen < lx + 2) |
| 92 | goto overflow2; |
| 93 | ch = ptr[j]; |
| 94 | linebuf[lx++] = hex_asc_hi(ch); |
| 95 | if (linebuflen < lx + 2) |
| 96 | goto overflow2; |
| 97 | linebuf[lx++] = hex_asc_lo(ch); |
| 98 | if (linebuflen < lx + 2) |
| 99 | goto overflow2; |
| 100 | linebuf[lx++] = ' '; |
| 101 | } |
| 102 | if (j) |
| 103 | lx--; |
| 104 | } |
| 105 | if (!ascii) |
| 106 | goto nil; |
| 107 | |
| 108 | while (lx < ascii_column) { |
| 109 | if (linebuflen < lx + 2) |
| 110 | goto overflow2; |
| 111 | linebuf[lx++] = ' '; |
| 112 | } |
| 113 | for (j = 0; j < len; j++) { |
| 114 | if (linebuflen < lx + 2) |
| 115 | goto overflow2; |
| 116 | ch = ptr[j]; |
| 117 | linebuf[lx++] = (isascii(ch) && isprint(ch)) ? ch : '.'; |
| 118 | } |
| 119 | nil: |
| 120 | linebuf[lx] = '\0'; |
| 121 | return lx; |
| 122 | overflow2: |
| 123 | linebuf[lx++] = '\0'; |
| 124 | overflow1: |
| 125 | return ascii ? ascii_column + len : (groupsize * 2 + 1) * ngroups - 1; |
| 126 | } |
| 127 | |
Simon Glass | 735dd6e | 2021-05-08 07:00:04 -0600 | [diff] [blame] | 128 | int print_hex_dump(const char *prefix_str, int prefix_type, int rowsize, |
| 129 | int groupsize, const void *buf, size_t len, bool ascii) |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 130 | { |
| 131 | const u8 *ptr = buf; |
| 132 | int i, linelen, remaining = len; |
Simon Glass | 5d6d2b8 | 2021-05-08 07:00:03 -0600 | [diff] [blame] | 133 | char linebuf[MAX_LINE_LENGTH_BYTES * 3 + 2 + MAX_LINE_LENGTH_BYTES + 1]; |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 134 | |
Simon Glass | 5d6d2b8 | 2021-05-08 07:00:03 -0600 | [diff] [blame] | 135 | if (!rowsize) |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 136 | rowsize = 16; |
Simon Glass | 5d6d2b8 | 2021-05-08 07:00:03 -0600 | [diff] [blame] | 137 | else |
| 138 | rowsize = min(rowsize, MAX_LINE_LENGTH_BYTES); |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 139 | |
| 140 | for (i = 0; i < len; i += rowsize) { |
| 141 | linelen = min(remaining, rowsize); |
| 142 | remaining -= rowsize; |
| 143 | |
| 144 | hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize, |
| 145 | linebuf, sizeof(linebuf), ascii); |
| 146 | |
| 147 | switch (prefix_type) { |
| 148 | case DUMP_PREFIX_ADDRESS: |
Simon Glass | 19edf13 | 2021-05-08 07:00:02 -0600 | [diff] [blame] | 149 | printf("%s%0*lx: %s\n", prefix_str, |
| 150 | IS_ENABLED(CONFIG_PHYS_64BIT) ? 16 : 8, |
| 151 | (ulong)map_to_sysmem(ptr) + i, linebuf); |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 152 | break; |
| 153 | case DUMP_PREFIX_OFFSET: |
| 154 | printf("%s%.8x: %s\n", prefix_str, i, linebuf); |
| 155 | break; |
| 156 | default: |
| 157 | printf("%s%s\n", prefix_str, linebuf); |
| 158 | break; |
| 159 | } |
Simon Glass | 735dd6e | 2021-05-08 07:00:04 -0600 | [diff] [blame] | 160 | if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc()) |
| 161 | return -EINTR; |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 162 | } |
Simon Glass | 735dd6e | 2021-05-08 07:00:04 -0600 | [diff] [blame] | 163 | |
| 164 | return 0; |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 165 | } |
| 166 | |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 167 | void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
| 168 | const void *buf, size_t len) |
| 169 | { |
| 170 | print_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true); |
| 171 | } |
| 172 | #else |
| 173 | /* |
| 174 | * Some code in U-Boot copy-pasted from Linux kernel uses both |
| 175 | * functions below so to keep stuff compilable we keep these stubs here. |
| 176 | */ |
Simon Glass | 735dd6e | 2021-05-08 07:00:04 -0600 | [diff] [blame] | 177 | int print_hex_dump(const char *prefix_str, int prefix_type, int rowsize, |
| 178 | int groupsize, const void *buf, size_t len, bool ascii) |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 179 | { |
Simon Glass | 735dd6e | 2021-05-08 07:00:04 -0600 | [diff] [blame] | 180 | return -ENOSYS; |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
Simon Glass | 2f410fe | 2021-05-08 07:00:01 -0600 | [diff] [blame] | 184 | const void *buf, size_t len) |
Alexey Brodkin | f8c987f | 2018-06-05 17:17:57 +0300 | [diff] [blame] | 185 | { |
| 186 | } |
| 187 | #endif /* CONFIG_HEXDUMP */ |