b_dump.c 4.0 KB
Newer Older
R
Rich Salz 已提交
1
/*
P
Pauli 已提交
2
 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8 9
 */

10
/*
11 12 13 14
 * Stolen from tjh's ssl/ssl_trc.c stuff.
 */

#include <stdio.h>
A
Andy Polyakov 已提交
15
#include "bio_lcl.h"
16

17
#define DUMP_WIDTH      16
P
Pauli 已提交
18 19 20
#define DUMP_WIDTH_LESS_INDENT(i) (DUMP_WIDTH - ((i - (i > 6 ? 6 : i) + 3) / 4))

#define SPACE(buf, pos, n)   (sizeof(buf) - (pos) > (n))
21

22 23 24 25 26
int BIO_dump_cb(int (*cb) (const void *data, size_t len, void *u),
                void *u, const char *s, int len)
{
    return BIO_dump_indent_cb(cb, u, s, len, 0);
}
27

28 29 30 31
int BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u),
                       void *u, const char *s, int len, int indent)
{
    int ret = 0;
P
Pauli 已提交
32
    char buf[288 + 1];
33
    int i, j, rows, n;
34 35
    unsigned char ch;
    int dump_width;
36

37 38
    if (indent < 0)
        indent = 0;
P
Pauli 已提交
39 40
    else if (indent > 128)
        indent = 128;
41 42

    dump_width = DUMP_WIDTH_LESS_INDENT(indent);
P
Pauli 已提交
43
    rows = len / dump_width;
44 45 46
    if ((rows * dump_width) < len)
        rows++;
    for (i = 0; i < rows; i++) {
P
Pauli 已提交
47 48
        n = BIO_snprintf(buf, sizeof(buf), "%*s%04x - ", indent, "",
                         i * dump_width);
49
        for (j = 0; j < dump_width; j++) {
P
Pauli 已提交
50 51 52 53 54 55 56 57 58
            if (SPACE(buf, n, 3)) {
                if (((i * dump_width) + j) >= len) {
                    strcpy(buf + n, "   ");
                } else {
                    ch = ((unsigned char)*(s + i * dump_width + j)) & 0xff;
                    BIO_snprintf(buf + n, 4, "%02x%c", ch,
                                 j == 7 ? '-' : ' ');
                }
                n += 3;
59 60
            }
        }
P
Pauli 已提交
61 62 63 64
        if (SPACE(buf, n, 2)) {
            strcpy(buf + n, "  ");
            n += 2;
        }
65 66 67
        for (j = 0; j < dump_width; j++) {
            if (((i * dump_width) + j) >= len)
                break;
P
Pauli 已提交
68 69
            if (SPACE(buf, n, 1)) {
                ch = ((unsigned char)*(s + i * dump_width + j)) & 0xff;
70
#ifndef CHARSET_EBCDIC
P
Pauli 已提交
71
                buf[n++] = ((ch >= ' ') && (ch <= '~')) ? ch : '.';
72
#else
P
Pauli 已提交
73 74 75
                buf[n++] = ((ch >= os_toascii[' ']) && (ch <= os_toascii['~']))
                           ? os_toebcdic[ch]
                           : '.';
76
#endif
P
Pauli 已提交
77 78 79 80 81 82
                buf[n] = '\0';
            }
        }
        if (SPACE(buf, n, 1)) {
            buf[n++] = '\n';
            buf[n] = '\0';
83 84 85 86 87
        }
        /*
         * if this is the last call then update the ddt_dump thing so that we
         * will move the selection point in the debug window
         */
P
Pauli 已提交
88
        ret += cb((void *)buf, n, u);
89
    }
P
Pauli 已提交
90
    return ret;
91
}
92

R
Rich Salz 已提交
93
#ifndef OPENSSL_NO_STDIO
94
static int write_fp(const void *data, size_t len, void *fp)
95 96 97 98
{
    return UP_fwrite(data, len, 1, fp);
}

99
int BIO_dump_fp(FILE *fp, const char *s, int len)
100 101 102 103
{
    return BIO_dump_cb(write_fp, fp, s, len);
}

104
int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent)
105 106 107
{
    return BIO_dump_indent_cb(write_fp, fp, s, len, indent);
}
108 109 110
#endif

static int write_bio(const void *data, size_t len, void *bp)
111 112 113 114
{
    return BIO_write((BIO *)bp, (const char *)data, len);
}

115
int BIO_dump(BIO *bp, const char *s, int len)
116 117 118 119
{
    return BIO_dump_cb(write_bio, bp, s, len);
}

120
int BIO_dump_indent(BIO *bp, const char *s, int len, int indent)
121 122 123
{
    return BIO_dump_indent_cb(write_bio, bp, s, len, indent);
}
124

125
int BIO_hex_string(BIO *out, int indent, int width, unsigned char *data,
126 127 128
                   int datalen)
{
    int i, j = 0;
129

130 131
    if (datalen < 1)
        return 1;
132

133 134 135
    for (i = 0; i < datalen - 1; i++) {
        if (i && !j)
            BIO_printf(out, "%*s", indent, "");
136

137
        BIO_printf(out, "%02X:", data[i]);
138

139 140 141 142
        j = (j + 1) % width;
        if (!j)
            BIO_printf(out, "\n");
    }
143

144 145 146 147 148
    if (i && !j)
        BIO_printf(out, "%*s", indent, "");
    BIO_printf(out, "%02X", data[datalen - 1]);
    return 1;
}