Coverage Report

Created: 2026-05-24 07:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl35/crypto/x509/x509_obj.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2024 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 <stdio.h>
11
#include "internal/cryptlib.h"
12
#include <openssl/objects.h>
13
#include <openssl/x509.h>
14
#include <openssl/buffer.h>
15
#include "crypto/x509.h"
16
#include "crypto/ctype.h"
17
18
/*
19
 * Limit to ensure we don't overflow: much greater than
20
 * anything encountered in practice.
21
 */
22
23
8.88M
#define NAME_ONELINE_MAX (1024 * 1024)
24
25
char *X509_NAME_oneline(const X509_NAME *a, char *buf, int len)
26
329k
{
27
329k
    const X509_NAME_ENTRY *ne;
28
329k
    int i;
29
329k
    int n, lold, l, l1, l2, num, j, type;
30
329k
    int prev_set = -1;
31
329k
    const char *s;
32
329k
    char *p;
33
329k
    unsigned char *q;
34
329k
    BUF_MEM *b = NULL;
35
329k
    int gs_doit[4];
36
329k
    char tmp_buf[80];
37
#ifdef CHARSET_EBCDIC
38
    unsigned char ebcdic_buf[1024];
39
#endif
40
41
329k
    if (buf == NULL) {
42
318k
        if ((b = BUF_MEM_new()) == NULL)
43
0
            goto buferr;
44
318k
        if (!BUF_MEM_grow(b, 200))
45
0
            goto buferr;
46
318k
        b->data[0] = '\0';
47
318k
        len = 200;
48
318k
    } else if (len == 0) {
49
0
        return NULL;
50
0
    }
51
329k
    if (a == NULL) {
52
0
        if (b) {
53
0
            buf = b->data;
54
0
            OPENSSL_free(b);
55
0
        }
56
0
        strncpy(buf, "NO X509_NAME", len);
57
0
        buf[len - 1] = '\0';
58
0
        return buf;
59
0
    }
60
61
329k
    len--; /* space for '\0' */
62
329k
    l = 0;
63
4.76M
    for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
64
4.44M
        ne = sk_X509_NAME_ENTRY_value(a->entries, i);
65
4.44M
        n = OBJ_obj2nid(ne->object);
66
4.44M
        if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) {
67
3.54M
            i2t_ASN1_OBJECT(tmp_buf, sizeof(tmp_buf), ne->object);
68
3.54M
            s = tmp_buf;
69
3.54M
        }
70
4.44M
        l1 = strlen(s);
71
72
4.44M
        type = ne->value->type;
73
4.44M
        num = ne->value->length;
74
4.44M
        if (num > NAME_ONELINE_MAX) {
75
0
            ERR_raise(ERR_LIB_X509, X509_R_NAME_TOO_LONG);
76
0
            goto end;
77
0
        }
78
4.44M
        q = ne->value->data;
79
#ifdef CHARSET_EBCDIC
80
        if (type == V_ASN1_GENERALSTRING || type == V_ASN1_VISIBLESTRING || type == V_ASN1_PRINTABLESTRING || type == V_ASN1_TELETEXSTRING || type == V_ASN1_IA5STRING) {
81
            if (num > (int)sizeof(ebcdic_buf))
82
                num = sizeof(ebcdic_buf);
83
            ascii2ebcdic(ebcdic_buf, q, num);
84
            q = ebcdic_buf;
85
        }
86
#endif
87
88
4.44M
        if ((type == V_ASN1_GENERALSTRING) && ((num % 4) == 0)) {
89
0
            gs_doit[0] = gs_doit[1] = gs_doit[2] = gs_doit[3] = 0;
90
0
            for (j = 0; j < num; j++)
91
0
                if (q[j] != 0)
92
0
                    gs_doit[j & 3] = 1;
93
94
0
            if (gs_doit[0] | gs_doit[1] | gs_doit[2])
95
0
                gs_doit[0] = gs_doit[1] = gs_doit[2] = gs_doit[3] = 1;
96
0
            else {
97
0
                gs_doit[0] = gs_doit[1] = gs_doit[2] = 0;
98
0
                gs_doit[3] = 1;
99
0
            }
100
0
        } else
101
4.44M
            gs_doit[0] = gs_doit[1] = gs_doit[2] = gs_doit[3] = 1;
102
103
826M
        for (l2 = j = 0; j < num; j++) {
104
822M
            if (!gs_doit[j & 3])
105
0
                continue;
106
822M
            l2++;
107
822M
            if (q[j] == '/' || q[j] == '+')
108
1.99M
                l2++; /* char needs to be escaped */
109
820M
            else if ((ossl_toascii(q[j]) < ossl_toascii(' ')) || (ossl_toascii(q[j]) > ossl_toascii('~')))
110
604M
                l2 += 3;
111
822M
        }
112
113
4.44M
        lold = l;
114
4.44M
        l += 1 + l1 + 1 + l2;
115
4.44M
        if (l > NAME_ONELINE_MAX) {
116
711
            ERR_raise(ERR_LIB_X509, X509_R_NAME_TOO_LONG);
117
711
            goto end;
118
711
        }
119
4.44M
        if (b != NULL) {
120
4.42M
            if (!BUF_MEM_grow(b, l + 1))
121
0
                goto buferr;
122
4.42M
            p = &(b->data[lold]);
123
4.42M
        } else if (l > len) {
124
1.81k
            break;
125
1.81k
        } else
126
10.4k
            p = &(buf[lold]);
127
4.43M
        *(p++) = prev_set == ne->set ? '+' : '/';
128
4.43M
        memcpy(p, s, (unsigned int)l1);
129
4.43M
        p += l1;
130
4.43M
        *(p++) = '=';
131
132
4.43M
#ifndef CHARSET_EBCDIC /* q was assigned above already. */
133
4.43M
        q = ne->value->data;
134
4.43M
#endif
135
136
328M
        for (j = 0; j < num; j++) {
137
324M
            if (!gs_doit[j & 3])
138
0
                continue;
139
324M
#ifndef CHARSET_EBCDIC
140
324M
            n = q[j];
141
324M
            if ((n < ' ') || (n > '~')) {
142
249M
                *(p++) = '\\';
143
249M
                *(p++) = 'x';
144
249M
                p += ossl_to_hex(p, n);
145
249M
            } else {
146
75.0M
                if (n == '/' || n == '+')
147
1.30M
                    *(p++) = '\\';
148
75.0M
                *(p++) = n;
149
75.0M
            }
150
#else
151
            n = os_toascii[q[j]];
152
            if ((n < os_toascii[' ']) || (n > os_toascii['~'])) {
153
                *(p++) = '\\';
154
                *(p++) = 'x';
155
                p += ossl_to_hex(p, n);
156
            } else {
157
                if (n == os_toascii['/'] || n == os_toascii['+'])
158
                    *(p++) = '\\';
159
                *(p++) = q[j];
160
            }
161
#endif
162
324M
        }
163
4.43M
        *p = '\0';
164
4.43M
        prev_set = ne->set;
165
4.43M
    }
166
328k
    if (b != NULL) {
167
317k
        p = b->data;
168
317k
        OPENSSL_free(b);
169
317k
    } else
170
10.8k
        p = buf;
171
328k
    if (i == 0)
172
164k
        *p = '\0';
173
328k
    return p;
174
0
buferr:
175
0
    ERR_raise(ERR_LIB_X509, ERR_R_BUF_LIB);
176
711
end:
177
711
    BUF_MEM_free(b);
178
    return NULL;
179
0
}