2007-07-12 18:35:42 +02:00
|
|
|
/*****************************************************************************\
|
|
|
|
* hexdump.c
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
|
|
|
#include "hexdump.h"
|
2011-01-28 08:41:10 +01:00
|
|
|
#include <ctype.h>
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
/* hexdump.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002
|
|
|
|
* David S. Peterson. All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: David S. Peterson <dave_peterson@pobox.com>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions, and the entire permission notice, including
|
|
|
|
* the following disclaimer of warranties.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions, and the entire permission notice,
|
|
|
|
* including the following disclaimer in the documentation and/or other
|
|
|
|
* materials provided with the distribution.
|
|
|
|
* 3. The name(s) of the author(s) may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* ALTERNATIVELY, this product may be distributed under the terms of the GNU
|
|
|
|
* General Public License, in which case the provisions of the GPL are
|
|
|
|
* required INSTEAD OF the above restrictions. (This clause is necessary due
|
|
|
|
* to a potential bad interaction between the GPL and the restrictions
|
|
|
|
* contained in a BSD-style copyright.)
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
static void addrprint(FILE * outfile, uint64_t address, int width);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
* hexdump
|
|
|
|
*
|
|
|
|
* Write a hex dump of 'mem' to 'outfile'.
|
|
|
|
*
|
|
|
|
* parameters:
|
|
|
|
* mem: a pointer to the memory to display
|
|
|
|
* bytes: the number of bytes of data to display
|
|
|
|
* addrprint_start: The address to associate with the first byte of
|
|
|
|
* data. For instance, a value of 0 indicates that the
|
|
|
|
* first byte displayed should be labeled as byte 0.
|
|
|
|
* outfile: The place where the hex dump should be written.
|
|
|
|
* For instance, stdout or stderr may be passed here.
|
|
|
|
* format: A structure specifying how the hex dump should be
|
|
|
|
* formatted.
|
|
|
|
*--------------------------------------------------------------------------*/
|
2010-01-13 22:00:23 +01:00
|
|
|
void hexdump(const void *mem, int bytes, uint64_t addrprint_start,
|
|
|
|
FILE * outfile, const hexdump_format_t * format)
|
|
|
|
{
|
|
|
|
int bytes_left, index, i;
|
|
|
|
const unsigned char *p;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* Quietly return if the caller asks us to do something unreasonable. */
|
|
|
|
if ((format->bytes_per_line <= 0) || (bytes < 0))
|
|
|
|
return;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
p = (const unsigned char *)mem;
|
|
|
|
index = 0;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* Each iteration handles one full line of output. When loop
|
|
|
|
* terminates, the number of remaining bytes to display (if any)
|
|
|
|
* will not be enough to fill an entire line.
|
|
|
|
*/
|
2010-04-27 08:56:47 +02:00
|
|
|
for (bytes_left = bytes;
|
2010-01-13 22:00:23 +01:00
|
|
|
bytes_left >= format->bytes_per_line;
|
|
|
|
bytes_left -= format->bytes_per_line) {
|
|
|
|
/* print start address for current line */
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->indent);
|
2010-01-13 22:00:23 +01:00
|
|
|
addrprint(outfile, addrprint_start + index,
|
|
|
|
format->addrprint_width);
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->sep1);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* display the bytes in hex */
|
|
|
|
for (i = 0;;) {
|
2011-01-28 08:41:10 +01:00
|
|
|
fprintf(outfile, "%02x", p[index++]);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
if (++i >= format->bytes_per_line)
|
|
|
|
break;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->sep2);
|
2010-01-13 22:00:23 +01:00
|
|
|
}
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
index -= format->bytes_per_line;
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->sep3);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* display the bytes as characters */
|
2011-01-28 08:41:10 +01:00
|
|
|
for (i = 0; i < format->bytes_per_line; i++, index++)
|
|
|
|
fputc(isprint(p[index])?p[index]:format->nonprintable, outfile);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
fprintf(outfile, "\n");
|
|
|
|
}
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
if (bytes_left == 0)
|
|
|
|
return;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* print start address for last line */
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->indent);
|
2010-01-13 22:00:23 +01:00
|
|
|
addrprint(outfile, addrprint_start + index, format->addrprint_width);
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->sep1);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* display bytes for last line in hex */
|
|
|
|
for (i = 0; i < bytes_left; i++) {
|
2011-01-28 08:41:10 +01:00
|
|
|
fprintf(outfile, "%02x", p[index++]);
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->sep2);
|
2010-01-13 22:00:23 +01:00
|
|
|
}
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
index -= bytes_left;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* pad the rest of the hex byte area with spaces */
|
|
|
|
for (;;) {
|
|
|
|
fprintf(outfile, " ");
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
if (++i >= format->bytes_per_line)
|
|
|
|
break;
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->sep2);
|
2010-01-13 22:00:23 +01:00
|
|
|
}
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2012-04-07 12:58:26 +02:00
|
|
|
fprintf(outfile, "%s", format->sep3);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* display bytes for last line as characters */
|
|
|
|
for (i = 0; i < bytes_left; i++)
|
2011-01-28 08:41:10 +01:00
|
|
|
fputc(isprint(p[index])?p[index++]:format->nonprintable, outfile);
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
/* pad the rest of the character area with spaces */
|
|
|
|
for (; i < format->bytes_per_line; i++)
|
|
|
|
fprintf(outfile, " ");
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
fprintf(outfile, "\n");
|
|
|
|
}
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
* addrprint
|
|
|
|
*
|
|
|
|
* Display an address as a hexadecimal number.
|
|
|
|
*
|
|
|
|
* parameters:
|
|
|
|
* outfile: the place where the output should be written
|
|
|
|
* address: the address to display
|
|
|
|
* width: The number of bytes wide the address should be displayed as.
|
|
|
|
* Must be a value from 1 to 8.
|
|
|
|
*--------------------------------------------------------------------------*/
|
2010-01-13 22:00:23 +01:00
|
|
|
static void addrprint(FILE * outfile, uint64_t address, int width)
|
|
|
|
{
|
|
|
|
char s[17];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* force the user's input to be valid */
|
|
|
|
if (width < 1)
|
|
|
|
width = 1;
|
|
|
|
else if (width > 8)
|
|
|
|
width = 8;
|
|
|
|
|
|
|
|
/* convert address to string */
|
|
|
|
sprintf(s, "%016llx", (unsigned long long)address);
|
|
|
|
|
|
|
|
/* write it out, with colons separating consecutive 16-bit
|
|
|
|
* chunks of the address
|
|
|
|
*/
|
|
|
|
for (i = 16 - (2 * width);;) {
|
|
|
|
fprintf(outfile, "%c", s[i]);
|
|
|
|
|
|
|
|
if (++i >= 16)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ((i % 4) == 0)
|
|
|
|
fprintf(outfile, ":");
|
|
|
|
}
|
|
|
|
}
|