1e1355b07SJohn Baldwin /*-
2*8a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
3*8a16b7a1SPedro F. Giffuni *
4e1355b07SJohn Baldwin * Copyright (c) 1986, 1988, 1991, 1993
5e1355b07SJohn Baldwin * The Regents of the University of California. All rights reserved.
6e1355b07SJohn Baldwin * (c) UNIX System Laboratories, Inc.
7e1355b07SJohn Baldwin * All or some portions of this file are derived from material licensed
8e1355b07SJohn Baldwin * to the University of California by American Telephone and Telegraph
9e1355b07SJohn Baldwin * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10e1355b07SJohn Baldwin * the permission of UNIX System Laboratories, Inc.
11e1355b07SJohn Baldwin *
12e1355b07SJohn Baldwin * Redistribution and use in source and binary forms, with or without
13e1355b07SJohn Baldwin * modification, are permitted provided that the following conditions
14e1355b07SJohn Baldwin * are met:
15e1355b07SJohn Baldwin * 1. Redistributions of source code must retain the above copyright
16e1355b07SJohn Baldwin * notice, this list of conditions and the following disclaimer.
17e1355b07SJohn Baldwin * 2. Redistributions in binary form must reproduce the above copyright
18e1355b07SJohn Baldwin * notice, this list of conditions and the following disclaimer in the
19e1355b07SJohn Baldwin * documentation and/or other materials provided with the distribution.
20fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
21e1355b07SJohn Baldwin * may be used to endorse or promote products derived from this software
22e1355b07SJohn Baldwin * without specific prior written permission.
23e1355b07SJohn Baldwin *
24e1355b07SJohn Baldwin * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25e1355b07SJohn Baldwin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26e1355b07SJohn Baldwin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27e1355b07SJohn Baldwin * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28e1355b07SJohn Baldwin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29e1355b07SJohn Baldwin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30e1355b07SJohn Baldwin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31e1355b07SJohn Baldwin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32e1355b07SJohn Baldwin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33e1355b07SJohn Baldwin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34e1355b07SJohn Baldwin * SUCH DAMAGE.
35e1355b07SJohn Baldwin */
36e1355b07SJohn Baldwin
37e1355b07SJohn Baldwin #include <sys/types.h>
38e1355b07SJohn Baldwin #include <libutil.h>
39e1355b07SJohn Baldwin #include <stdio.h>
40e1355b07SJohn Baldwin
41e1355b07SJohn Baldwin void
hexdump(const void * ptr,int length,const char * hdr,int flags)42e1355b07SJohn Baldwin hexdump(const void *ptr, int length, const char *hdr, int flags)
43e1355b07SJohn Baldwin {
44e1355b07SJohn Baldwin int i, j, k;
45e1355b07SJohn Baldwin int cols;
46e1355b07SJohn Baldwin const unsigned char *cp;
47e1355b07SJohn Baldwin char delim;
48e1355b07SJohn Baldwin
49e1355b07SJohn Baldwin if ((flags & HD_DELIM_MASK) != 0)
50e1355b07SJohn Baldwin delim = (flags & HD_DELIM_MASK) >> 8;
51e1355b07SJohn Baldwin else
52e1355b07SJohn Baldwin delim = ' ';
53e1355b07SJohn Baldwin
54e1355b07SJohn Baldwin if ((flags & HD_COLUMN_MASK) != 0)
55e1355b07SJohn Baldwin cols = flags & HD_COLUMN_MASK;
56e1355b07SJohn Baldwin else
57e1355b07SJohn Baldwin cols = 16;
58e1355b07SJohn Baldwin
59e1355b07SJohn Baldwin cp = ptr;
60e1355b07SJohn Baldwin for (i = 0; i < length; i+= cols) {
61e1355b07SJohn Baldwin if (hdr != NULL)
62e1355b07SJohn Baldwin printf("%s", hdr);
63e1355b07SJohn Baldwin
64e1355b07SJohn Baldwin if ((flags & HD_OMIT_COUNT) == 0)
65e1355b07SJohn Baldwin printf("%04x ", i);
66e1355b07SJohn Baldwin
67e1355b07SJohn Baldwin if ((flags & HD_OMIT_HEX) == 0) {
68e1355b07SJohn Baldwin for (j = 0; j < cols; j++) {
69e1355b07SJohn Baldwin k = i + j;
70e1355b07SJohn Baldwin if (k < length)
71e1355b07SJohn Baldwin printf("%c%02x", delim, cp[k]);
72e1355b07SJohn Baldwin else
73e1355b07SJohn Baldwin printf(" ");
74e1355b07SJohn Baldwin }
75e1355b07SJohn Baldwin }
76e1355b07SJohn Baldwin
77e1355b07SJohn Baldwin if ((flags & HD_OMIT_CHARS) == 0) {
78e1355b07SJohn Baldwin printf(" |");
79e1355b07SJohn Baldwin for (j = 0; j < cols; j++) {
80e1355b07SJohn Baldwin k = i + j;
81e1355b07SJohn Baldwin if (k >= length)
82e1355b07SJohn Baldwin printf(" ");
83e1355b07SJohn Baldwin else if (cp[k] >= ' ' && cp[k] <= '~')
84e1355b07SJohn Baldwin printf("%c", cp[k]);
85e1355b07SJohn Baldwin else
86e1355b07SJohn Baldwin printf(".");
87e1355b07SJohn Baldwin }
88e1355b07SJohn Baldwin printf("|");
89e1355b07SJohn Baldwin }
90e1355b07SJohn Baldwin printf("\n");
91e1355b07SJohn Baldwin }
92e1355b07SJohn Baldwin }
93e1355b07SJohn Baldwin
94