Coverage Report

Created: 2026-06-09 06:33

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/err/err_blocks.c
Line
Count
Source
1
/*
2
 * Copyright 2019-2026 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
#include <string.h>
11
#include <openssl/err.h>
12
#include "err_local.h"
13
14
void ERR_new(void)
15
981
{
16
981
    ERR_STATE *es;
17
18
981
    es = ossl_err_get_state_int(1);
19
981
    if (es == NULL)
20
0
        return;
21
22
    /* Allocate a slot */
23
981
    err_get_slot(es);
24
981
    err_clear(es, es->top, 0);
25
981
}
26
27
void ERR_set_debug(const char *file, int line, const char *func)
28
981
{
29
981
    ERR_STATE *es;
30
31
981
    es = ossl_err_get_state_int(1);
32
981
    if (es == NULL)
33
0
        return;
34
35
981
    err_set_debug(es, es->top, file, line, func);
36
981
}
37
38
void ERR_set_error(int lib, int reason, const char *fmt, ...)
39
981
{
40
981
    va_list args;
41
42
981
    va_start(args, fmt);
43
981
    ERR_vset_error(lib, reason, fmt, args);
44
981
    va_end(args);
45
981
}
46
47
void ERR_vset_error(int lib, int reason, const char *fmt, va_list args)
48
981
{
49
981
    ERR_STATE *es;
50
981
    char *buf = NULL;
51
981
    size_t buf_size = 0;
52
981
    unsigned long flags = 0;
53
981
    size_t i;
54
55
981
    es = ossl_err_get_state_int(1);
56
981
    if (es == NULL)
57
0
        return;
58
981
    i = es->top;
59
60
981
    if (fmt != NULL) {
61
979
        int printed_len = 0;
62
979
        char *rbuf = NULL;
63
64
979
        buf = es->err_data[i];
65
979
        buf_size = es->err_data_size[i];
66
67
        /*
68
         * To protect the string we just grabbed from tampering by other
69
         * functions we may call, or to protect them from freeing a pointer
70
         * that may no longer be valid at that point, we clear away the
71
         * data pointer and the flags.  We will set them again at the end
72
         * of this function.
73
         */
74
979
        es->err_data[i] = NULL;
75
979
        es->err_data_flags[i] = 0;
76
77
        /*
78
         * Try to maximize the space available.  If that fails, we use what
79
         * we have.
80
         */
81
979
        if (buf_size < ERR_MAX_DATA_SIZE
82
979
            && (rbuf = OPENSSL_realloc(buf, ERR_MAX_DATA_SIZE)) != NULL) {
83
979
            buf = rbuf;
84
979
            buf_size = ERR_MAX_DATA_SIZE;
85
979
        }
86
87
979
        if (buf != NULL) {
88
979
            printed_len = BIO_vsnprintf(buf, buf_size, fmt, args);
89
979
        }
90
979
        if (printed_len < 0)
91
0
            printed_len = 0;
92
979
        if (buf != NULL)
93
979
            buf[printed_len] = '\0';
94
95
        /*
96
         * Try to reduce the size, but only if we maximized above.  If that
97
         * fails, we keep what we have.
98
         * (According to documentation, realloc leaves the old buffer untouched
99
         * if it fails)
100
         */
101
979
        if ((rbuf = OPENSSL_realloc(buf, printed_len + 1)) != NULL) {
102
979
            buf = rbuf;
103
979
            buf_size = printed_len + 1;
104
979
            buf[printed_len] = '\0';
105
979
        }
106
107
979
        if (buf != NULL)
108
979
            flags = ERR_TXT_MALLOCED | ERR_TXT_STRING;
109
979
    }
110
111
981
    err_clear_data(es, es->top, 0);
112
981
    err_set_error(es, es->top, lib, reason);
113
981
    if (fmt != NULL)
114
979
        err_set_data(es, es->top, buf, buf_size, flags);
115
981
}