Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl30/crypto/err/err_prn.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (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
#define OSSL_FORCE_ERR_STATE
11
12
#include <stdio.h>
13
#include "internal/cryptlib.h"
14
#include <openssl/crypto.h>
15
#include <openssl/buffer.h>
16
#include <openssl/err.h>
17
#include "err_local.h"
18
19
62.6k
#define ERR_PRINT_BUF_SIZE 4096
20
void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u),
21
    void *u)
22
153k
{
23
153k
    CRYPTO_THREAD_ID tid = CRYPTO_THREAD_get_current_id();
24
153k
    unsigned long l;
25
153k
    const char *file, *data, *func;
26
153k
    int line, flags;
27
28
183k
    while ((l = ERR_get_error_all(&file, &line, &func, &data, &flags)) != 0) {
29
29.9k
        char buf[ERR_PRINT_BUF_SIZE] = "";
30
29.9k
        char *hex = NULL;
31
29.9k
        int offset;
32
33
29.9k
        if ((flags & ERR_TXT_STRING) == 0)
34
29.7k
            data = "";
35
36
29.9k
        hex = ossl_buf2hexstr_sep((const unsigned char *)&tid, sizeof(tid), '\0');
37
29.9k
        BIO_snprintf(buf, sizeof(buf), "%s:", hex == NULL ? "<null>" : hex);
38
29.9k
        offset = strlen(buf);
39
29.9k
        ossl_err_string_int(l, func, buf + offset, sizeof(buf) - offset);
40
29.9k
        offset += strlen(buf + offset);
41
29.9k
        BIO_snprintf(buf + offset, sizeof(buf) - offset, ":%s:%d:%s\n",
42
29.9k
            file, line, data);
43
29.9k
        OPENSSL_free(hex);
44
29.9k
        if (cb(buf, strlen(buf), u) <= 0)
45
0
            break; /* abort outputting the error report */
46
29.9k
    }
47
153k
}
48
49
/* auxiliary function for incrementally reporting texts via the error queue */
50
static void put_error(int lib, const char *func, int reason,
51
    const char *file, int line)
52
0
{
53
0
    ERR_new();
54
0
    ERR_set_debug(file, line, func);
55
0
    ERR_set_error(lib, reason, NULL /* no data here, so fmt is NULL */);
56
0
}
57
58
62.6k
#define TYPICAL_MAX_OUTPUT_BEFORE_DATA 100
59
83.5k
#define MAX_DATA_LEN (ERR_PRINT_BUF_SIZE - TYPICAL_MAX_OUTPUT_BEFORE_DATA)
60
void ERR_add_error_txt(const char *separator, const char *txt)
61
20.8k
{
62
20.8k
    const char *file = NULL;
63
20.8k
    int line;
64
20.8k
    const char *func = NULL;
65
20.8k
    const char *data = NULL;
66
20.8k
    int flags;
67
20.8k
    unsigned long err = ERR_peek_last_error();
68
69
20.8k
    if (separator == NULL)
70
13.2k
        separator = "";
71
20.8k
    if (err == 0)
72
0
        put_error(ERR_LIB_NONE, NULL, 0, "", 0);
73
74
20.8k
    do {
75
20.8k
        size_t available_len, data_len;
76
20.8k
        const char *curr = txt, *next = txt;
77
20.8k
        const char *leading_separator = separator;
78
20.8k
        int trailing_separator = 0;
79
20.8k
        char *tmp;
80
81
20.8k
        ERR_peek_last_error_all(&file, &line, &func, &data, &flags);
82
20.8k
        if ((flags & ERR_TXT_STRING) == 0) {
83
9.52k
            data = "";
84
9.52k
            leading_separator = "";
85
9.52k
        }
86
20.8k
        data_len = strlen(data);
87
88
        /* workaround for limit of ERR_print_errors_cb() */
89
20.8k
        if (data_len >= MAX_DATA_LEN
90
20.8k
            || strlen(separator) >= (size_t)(MAX_DATA_LEN - data_len))
91
0
            available_len = 0;
92
20.8k
        else
93
20.8k
            available_len = MAX_DATA_LEN - data_len - strlen(separator) - 1;
94
        /* MAX_DATA_LEN > available_len >= 0 */
95
96
20.8k
        if (*separator == '\0') {
97
13.2k
            const size_t len_next = strlen(next);
98
99
13.2k
            if (len_next <= available_len) {
100
13.2k
                next += len_next;
101
13.2k
                curr = NULL; /* no need to split */
102
13.2k
            } else {
103
0
                next += available_len;
104
0
                curr = next; /* will split at this point */
105
0
            }
106
13.2k
        } else {
107
97.7k
            while (*next != '\0' && (size_t)(next - txt) <= available_len) {
108
90.1k
                curr = next;
109
90.1k
                next = strstr(curr, separator);
110
90.1k
                if (next != NULL) {
111
86.9k
                    next += strlen(separator);
112
86.9k
                    trailing_separator = *next == '\0';
113
86.9k
                } else {
114
3.16k
                    next = curr + strlen(curr);
115
3.16k
                }
116
90.1k
            }
117
7.65k
            if ((size_t)(next - txt) <= available_len)
118
7.65k
                curr = NULL; /* the above loop implies *next == '\0' */
119
7.65k
        }
120
20.8k
        if (curr != NULL) {
121
            /* split error msg at curr since error data would get too long */
122
0
            if (curr != txt) {
123
0
                tmp = OPENSSL_strndup(txt, curr - txt);
124
0
                if (tmp == NULL)
125
0
                    return;
126
0
                ERR_add_error_data(2, separator, tmp);
127
0
                OPENSSL_free(tmp);
128
0
            }
129
0
            put_error(ERR_GET_LIB(err), func, err, file, line);
130
0
            txt = curr;
131
20.8k
        } else {
132
20.8k
            if (trailing_separator) {
133
4.49k
                tmp = OPENSSL_strndup(txt, next - strlen(separator) - txt);
134
4.49k
                if (tmp == NULL)
135
0
                    return;
136
                /* output txt without the trailing separator */
137
4.49k
                ERR_add_error_data(2, leading_separator, tmp);
138
4.49k
                OPENSSL_free(tmp);
139
16.3k
            } else {
140
16.3k
                ERR_add_error_data(2, leading_separator, txt);
141
16.3k
            }
142
20.8k
            txt = next; /* finished */
143
20.8k
        }
144
20.8k
    } while (*txt != '\0');
145
20.8k
}
146
147
void ERR_add_error_mem_bio(const char *separator, BIO *bio)
148
4.49k
{
149
4.49k
    if (bio != NULL) {
150
4.49k
        char *str;
151
4.49k
        long len = BIO_get_mem_data(bio, &str);
152
153
4.49k
        if (len > 0) {
154
4.49k
            if (str[len - 1] != '\0') {
155
4.49k
                if (BIO_write(bio, "", 1) <= 0)
156
0
                    return;
157
158
4.49k
                len = BIO_get_mem_data(bio, &str);
159
4.49k
            }
160
4.49k
            if (len > 1)
161
4.49k
                ERR_add_error_txt(separator, str);
162
4.49k
        }
163
4.49k
    }
164
4.49k
}
165
166
static int print_bio(const char *str, size_t len, void *bp)
167
29.9k
{
168
29.9k
    return BIO_write((BIO *)bp, str, len);
169
29.9k
}
170
171
void ERR_print_errors(BIO *bp)
172
29.1k
{
173
29.1k
    ERR_print_errors_cb(print_bio, bp);
174
29.1k
}
175
176
#ifndef OPENSSL_NO_STDIO
177
void ERR_print_errors_fp(FILE *fp)
178
124k
{
179
124k
    BIO *bio = BIO_new_fp(fp, BIO_NOCLOSE);
180
124k
    if (bio == NULL)
181
0
        return;
182
183
124k
    ERR_print_errors_cb(print_bio, bio);
184
124k
    BIO_free(bio);
185
124k
}
186
#endif