blob: 9921114b3c75a7ead393cdd5e650e9f750284b70 [file] [log] [blame]
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +00001/*
2 * Helper to hexdump a buffer
3 *
4 * Copyright (c) 2013 Red Hat, Inc.
5 * Copyright (c) 2013 Gerd Hoffmann <kraxel@redhat.com>
6 * Copyright (c) 2013 Peter Crosthwaite <peter.crosthwaite@xilinx.com>
7 * Copyright (c) 2013 Xilinx, Inc
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
14 */
15
Peter Maydellaafd7582016-01-29 17:49:55 +000016#include "qemu/osdep.h"
Marc-André Lureau415b7322022-03-23 19:57:32 +040017#include "qemu/cutils.h"
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000018
Laurent Vivierbbb16902020-09-25 11:10:54 +020019void qemu_hexdump_line(char *line, unsigned int b, const void *bufptr,
20 unsigned int len, bool ascii)
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000021{
Philippe Mathieu-Daudé67263b32020-08-22 20:09:49 +020022 const char *buf = bufptr;
Laurent Vivierbbb16902020-09-25 11:10:54 +020023 int i, c;
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000024
Laurent Vivierbbb16902020-09-25 11:10:54 +020025 if (len > QEMU_HEXDUMP_LINE_BYTES) {
26 len = QEMU_HEXDUMP_LINE_BYTES;
27 }
28
29 line += snprintf(line, 6, "%04x:", b);
30 for (i = 0; i < QEMU_HEXDUMP_LINE_BYTES; i++) {
31 if ((i % 4) == 0) {
32 *line++ = ' ';
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000033 }
Laurent Vivierbbb16902020-09-25 11:10:54 +020034 if (i < len) {
35 line += sprintf(line, " %02x", (unsigned char)buf[b + i]);
36 } else {
37 line += sprintf(line, " ");
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000038 }
Laurent Vivierbbb16902020-09-25 11:10:54 +020039 }
40 if (ascii) {
41 *line++ = ' ';
Isaac Lozanoa1555552016-03-25 03:42:15 -070042 for (i = 0; i < len; i++) {
43 c = buf[b + i];
44 if (c < ' ' || c > '~') {
45 c = '.';
46 }
Laurent Vivierbbb16902020-09-25 11:10:54 +020047 *line++ = c;
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000048 }
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000049 }
Laurent Vivierbbb16902020-09-25 11:10:54 +020050 *line = '\0';
51}
52
53void qemu_hexdump(FILE *fp, const char *prefix,
54 const void *bufptr, size_t size)
55{
56 unsigned int b, len;
57 char line[QEMU_HEXDUMP_LINE_LEN];
58
59 for (b = 0; b < size; b += QEMU_HEXDUMP_LINE_BYTES) {
60 len = size - b;
61 qemu_hexdump_line(line, b, bufptr, len, true);
62 fprintf(fp, "%s: %s\n", prefix, line);
63 }
64
Peter Crosthwaite6ff66f52013-03-15 16:41:58 +000065}