Coverage Report

Created: 2023-06-08 06:41

/src/openssl111/crypto/bio/b_dump.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
/*
11
 * Stolen from tjh's ssl/ssl_trc.c stuff.
12
 */
13
14
#include <stdio.h>
15
#include "bio_local.h"
16
17
42
#define DUMP_WIDTH      16
18
42
#define DUMP_WIDTH_LESS_INDENT(i) (DUMP_WIDTH - ((i - (i > 6 ? 6 : i) + 3) / 4))
19
20
116k
#define SPACE(buf, pos, n)   (sizeof(buf) - (pos) > (n))
21
22
int BIO_dump_cb(int (*cb) (const void *data, size_t len, void *u),
23
                void *u, const char *s, int len)
24
42
{
25
42
    return BIO_dump_indent_cb(cb, u, s, len, 0);
26
42
}
27
28
int BIO_dump_indent_cb(int (*cb) (const void *data, size_t len, void *u),
29
                       void *u, const char *s, int len, int indent)
30
42
{
31
42
    int ret = 0;
32
42
    char buf[288 + 1];
33
42
    int i, j, rows, n;
34
42
    unsigned char ch;
35
42
    int dump_width;
36
37
42
    if (indent < 0)
38
0
        indent = 0;
39
42
    else if (indent > 64)
40
0
        indent = 64;
41
42
42
    dump_width = DUMP_WIDTH_LESS_INDENT(indent);
43
42
    rows = len / dump_width;
44
42
    if ((rows * dump_width) < len)
45
38
        rows++;
46
3.46k
    for (i = 0; i < rows; i++) {
47
3.42k
        n = BIO_snprintf(buf, sizeof(buf), "%*s%04x - ", indent, "",
48
3.42k
                         i * dump_width);
49
58.1k
        for (j = 0; j < dump_width; j++) {
50
54.7k
            if (SPACE(buf, n, 3)) {
51
54.7k
                if (((i * dump_width) + j) >= len) {
52
269
                    strcpy(buf + n, "   ");
53
54.4k
                } else {
54
54.4k
                    ch = ((unsigned char)*(s + i * dump_width + j)) & 0xff;
55
54.4k
                    BIO_snprintf(buf + n, 4, "%02x%c", ch,
56
54.4k
                                 j == 7 ? '-' : ' ');
57
54.4k
                }
58
54.7k
                n += 3;
59
54.7k
            }
60
54.7k
        }
61
3.42k
        if (SPACE(buf, n, 2)) {
62
3.42k
            strcpy(buf + n, "  ");
63
3.42k
            n += 2;
64
3.42k
        }
65
57.9k
        for (j = 0; j < dump_width; j++) {
66
54.5k
            if (((i * dump_width) + j) >= len)
67
38
                break;
68
54.4k
            if (SPACE(buf, n, 1)) {
69
54.4k
                ch = ((unsigned char)*(s + i * dump_width + j)) & 0xff;
70
54.4k
#ifndef CHARSET_EBCDIC
71
54.4k
                buf[n++] = ((ch >= ' ') && (ch <= '~')) ? ch : '.';
72
#else
73
                buf[n++] = ((ch >= os_toascii[' ']) && (ch <= os_toascii['~']))
74
                           ? os_toebcdic[ch]
75
                           : '.';
76
#endif
77
54.4k
                buf[n] = '\0';
78
54.4k
            }
79
54.4k
        }
80
3.42k
        if (SPACE(buf, n, 1)) {
81
3.42k
            buf[n++] = '\n';
82
3.42k
            buf[n] = '\0';
83
3.42k
        }
84
        /*
85
         * if this is the last call then update the ddt_dump thing so that we
86
         * will move the selection point in the debug window
87
         */
88
3.42k
        ret += cb((void *)buf, n, u);
89
3.42k
    }
90
42
    return ret;
91
42
}
92
93
#ifndef OPENSSL_NO_STDIO
94
static int write_fp(const void *data, size_t len, void *fp)
95
0
{
96
0
    return UP_fwrite(data, len, 1, fp);
97
0
}
98
99
int BIO_dump_fp(FILE *fp, const char *s, int len)
100
0
{
101
0
    return BIO_dump_cb(write_fp, fp, s, len);
102
0
}
103
104
int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent)
105
0
{
106
0
    return BIO_dump_indent_cb(write_fp, fp, s, len, indent);
107
0
}
108
#endif
109
110
static int write_bio(const void *data, size_t len, void *bp)
111
3.42k
{
112
3.42k
    return BIO_write((BIO *)bp, (const char *)data, len);
113
3.42k
}
114
115
int BIO_dump(BIO *bp, const char *s, int len)
116
42
{
117
42
    return BIO_dump_cb(write_bio, bp, s, len);
118
42
}
119
120
int BIO_dump_indent(BIO *bp, const char *s, int len, int indent)
121
0
{
122
0
    return BIO_dump_indent_cb(write_bio, bp, s, len, indent);
123
0
}
124
125
int BIO_hex_string(BIO *out, int indent, int width, unsigned char *data,
126
                   int datalen)
127
9.61k
{
128
9.61k
    int i, j = 0;
129
130
9.61k
    if (datalen < 1)
131
1.17k
        return 1;
132
133
155k
    for (i = 0; i < datalen - 1; i++) {
134
147k
        if (i && !j)
135
4.88k
            BIO_printf(out, "%*s", indent, "");
136
137
147k
        BIO_printf(out, "%02X:", data[i]);
138
139
147k
        j = (j + 1) % width;
140
147k
        if (!j)
141
5.14k
            BIO_printf(out, "\n");
142
147k
    }
143
144
8.44k
    if (i && !j)
145
255
        BIO_printf(out, "%*s", indent, "");
146
8.44k
    BIO_printf(out, "%02X", data[datalen - 1]);
147
8.44k
    return 1;
148
9.61k
}