Coverage Report

Created: 2026-04-09 06:50

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/crypto/o_str.c
Line
Count
Source
1
/*
2
 * Copyright 2003-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 "internal/e_os.h"
11
#include <string.h>
12
#include <limits.h>
13
#include <openssl/crypto.h>
14
#include "crypto/ctype.h"
15
#include "internal/cryptlib.h"
16
#include "internal/thread_once.h"
17
#include "internal/to_hex.h"
18
19
101k
#define DEFAULT_SEPARATOR ':'
20
2.40G
#define CH_ZERO '\0'
21
22
char *CRYPTO_strdup(const char *str, const char *file, int line)
23
91.8M
{
24
91.8M
    char *ret;
25
91.8M
    size_t len;
26
27
91.8M
    if (str == NULL)
28
0
        return NULL;
29
30
91.8M
    len = strlen(str) + 1;
31
91.8M
    ret = CRYPTO_malloc(len, file, line);
32
91.8M
    if (ret != NULL)
33
91.8M
        memcpy(ret, str, len);
34
91.8M
    return ret;
35
91.8M
}
36
37
char *CRYPTO_strndup(const char *str, size_t s, const char *file, int line)
38
217M
{
39
217M
    size_t maxlen;
40
217M
    char *ret;
41
42
217M
    if (str == NULL)
43
0
        return NULL;
44
45
217M
    maxlen = OPENSSL_strnlen(str, s);
46
47
217M
    ret = CRYPTO_malloc(maxlen + 1, file, line);
48
217M
    if (ret) {
49
217M
        memcpy(ret, str, maxlen);
50
217M
        ret[maxlen] = CH_ZERO;
51
217M
    }
52
217M
    return ret;
53
217M
}
54
55
void *CRYPTO_memdup(const void *data, size_t siz, const char *file, int line)
56
57.2M
{
57
57.2M
    void *ret;
58
59
57.2M
    if (data == NULL || siz >= INT_MAX)
60
0
        return NULL;
61
62
57.2M
    ret = CRYPTO_malloc(siz, file, line);
63
57.2M
    if (ret == NULL)
64
0
        return NULL;
65
57.2M
    return memcpy(ret, data, siz);
66
57.2M
}
67
68
size_t OPENSSL_strnlen(const char *str, size_t maxlen)
69
443M
{
70
443M
    const char *p;
71
72
2.33G
    for (p = str; maxlen-- != 0 && *p != CH_ZERO; ++p)
73
1.88G
        ;
74
75
443M
    return p - str;
76
443M
}
77
78
size_t OPENSSL_strlcpy(char *dst, const char *src, size_t size)
79
74.7M
{
80
74.7M
    size_t l = 0;
81
847M
    for (; size > 1 && *src; size--) {
82
772M
        *dst++ = *src++;
83
772M
        l++;
84
772M
    }
85
74.7M
    if (size)
86
74.7M
        *dst = CH_ZERO;
87
74.7M
    return l + strlen(src);
88
74.7M
}
89
90
size_t OPENSSL_strlcat(char *dst, const char *src, size_t size)
91
56.2M
{
92
56.2M
    size_t l = 0;
93
725M
    for (; size > 0 && *dst; size--, dst++)
94
669M
        l++;
95
56.2M
    return l + OPENSSL_strlcpy(dst, src, size);
96
56.2M
}
97
98
/**
99
 * @brief Converts a string to an unsigned long integer.
100
 *
101
 * This function attempts to convert a string representation of a number
102
 * to an unsigned long integer, given a specified base. It also provides
103
 * error checking and reports whether the conversion was successful.
104
 * This function is just a wrapper around the POSIX strtoul function with
105
 * additional error checking.  This implies that errno for the caller is set
106
 * on calls to this function.
107
 *
108
 * @param str The string containing the representation of the number.
109
 * @param endptr A pointer to a pointer to character. If not NULL, it is set
110
 *               to the character immediately following the number in the
111
 *               string.
112
 * @param base The base to use for the conversion, which must be between 2,
113
 *             and 36 inclusive, or be the special value 0. If the base is 0,
114
 *             the actual base is determined by the format of the initial
115
 *             characters of the string.
116
 * @param num A pointer to an unsigned long where the result of the
117
 *            conversion is stored.
118
 *
119
 * @return 1 if the conversion was successful, 0 otherwise. Conversion is
120
 *         considered unsuccessful if no digits were consumed or if an error
121
 *         occurred during conversion.
122
 *
123
 * @note It is the caller's responsibility to check if the conversion is
124
 *       correct based on the expected consumption of the string as reported
125
 *       by endptr.
126
 */
127
int OPENSSL_strtoul(const char *str, char **endptr, int base,
128
    unsigned long *num)
129
0
{
130
0
    char *tmp_endptr;
131
0
    char **internal_endptr = endptr == NULL ? &tmp_endptr : endptr;
132
133
0
    errno = 0;
134
135
0
    *internal_endptr = (char *)str;
136
137
0
    if (num == NULL)
138
0
        return 0;
139
140
0
    if (str == NULL)
141
0
        return 0;
142
143
    /* Fail on negative input */
144
0
    if (*str == '-')
145
0
        return 0;
146
147
0
    *num = strtoul(str, internal_endptr, base);
148
    /*
149
     * We return error from this function under the following conditions
150
     * 1) If strtoul itself returned an error in translation
151
     * 2) If the caller didn't pass in an endptr value, and **internal_endptr
152
     *    doesn't point to '\0'.  The implication here is that if the caller
153
     *    doesn't care how much of a string is consumed, they expect the entire
154
     *    string to be consumed.  As such, no pointing to the NULL terminator
155
     *    means there was some part of the string left over after translation
156
     * 3) If no bytes of the string were consumed
157
     */
158
0
    if (errno != 0 || (endptr == NULL && **internal_endptr != '\0') || (str == *internal_endptr))
159
0
        return 0;
160
161
0
    return 1;
162
0
}
163
164
int OPENSSL_hexchar2int(unsigned char c)
165
362
{
166
#ifdef CHARSET_EBCDIC
167
    c = os_toebcdic[c];
168
#endif
169
170
362
    switch (c) {
171
9
    case '0':
172
9
        return 0;
173
33
    case '1':
174
33
        return 1;
175
10
    case '2':
176
10
        return 2;
177
12
    case '3':
178
12
        return 3;
179
6
    case '4':
180
6
        return 4;
181
7
    case '5':
182
7
        return 5;
183
19
    case '6':
184
19
        return 6;
185
10
    case '7':
186
10
        return 7;
187
26
    case '8':
188
26
        return 8;
189
8
    case '9':
190
8
        return 9;
191
60
    case 'a':
192
70
    case 'A':
193
70
        return 0x0A;
194
4
    case 'b':
195
5
    case 'B':
196
5
        return 0x0B;
197
25
    case 'c':
198
36
    case 'C':
199
36
        return 0x0C;
200
19
    case 'd':
201
21
    case 'D':
202
21
        return 0x0D;
203
21
    case 'e':
204
36
    case 'E':
205
36
        return 0x0E;
206
8
    case 'f':
207
19
    case 'F':
208
19
        return 0x0F;
209
362
    }
210
35
    return -1;
211
362
}
212
213
static int hexstr2buf_sep(unsigned char *buf, size_t buf_n, size_t *buflen,
214
    const char *str, const char sep)
215
0
{
216
0
    unsigned char *q;
217
0
    unsigned char ch, cl;
218
0
    int chi, cli;
219
0
    const unsigned char *p;
220
0
    size_t cnt;
221
222
0
    for (p = (const unsigned char *)str, q = buf, cnt = 0; *p;) {
223
0
        ch = *p++;
224
        /* A separator of CH_ZERO means there is no separator */
225
0
        if (ch == sep && sep != CH_ZERO)
226
0
            continue;
227
0
        cl = *p++;
228
0
        if (!cl) {
229
0
            ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_ODD_NUMBER_OF_DIGITS);
230
0
            return 0;
231
0
        }
232
0
        cli = OPENSSL_hexchar2int(cl);
233
0
        chi = OPENSSL_hexchar2int(ch);
234
0
        if (cli < 0 || chi < 0) {
235
0
            ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_ILLEGAL_HEX_DIGIT);
236
0
            return 0;
237
0
        }
238
0
        cnt++;
239
0
        if (q != NULL) {
240
0
            if (cnt > buf_n) {
241
0
                ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_SMALL_BUFFER);
242
0
                return 0;
243
0
            }
244
0
            *q++ = (unsigned char)((chi << 4) | cli);
245
0
        }
246
0
    }
247
248
0
    if (buflen != NULL)
249
0
        *buflen = cnt;
250
0
    return 1;
251
0
}
252
253
/*
254
 * Given a string of hex digits convert to a buffer
255
 */
256
int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, size_t *buflen,
257
    const char *str, const char sep)
258
0
{
259
0
    return hexstr2buf_sep(buf, buf_n, buflen, str, sep);
260
0
}
261
262
unsigned char *ossl_hexstr2buf_sep(const char *str, long *buflen,
263
    const char sep)
264
0
{
265
0
    unsigned char *buf;
266
0
    size_t buf_n, tmp_buflen;
267
268
0
    buf_n = strlen(str);
269
0
    if (buf_n <= 1) {
270
0
        ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_HEX_STRING_TOO_SHORT);
271
0
        return NULL;
272
0
    }
273
0
    buf_n /= 2;
274
0
    if ((buf = OPENSSL_malloc(buf_n)) == NULL)
275
0
        return NULL;
276
277
0
    if (buflen != NULL)
278
0
        *buflen = 0;
279
0
    tmp_buflen = 0;
280
0
    if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep)) {
281
0
        if (buflen != NULL)
282
0
            *buflen = (long)tmp_buflen;
283
0
        return buf;
284
0
    }
285
0
    OPENSSL_free(buf);
286
0
    return NULL;
287
0
}
288
289
unsigned char *OPENSSL_hexstr2buf(const char *str, long *buflen)
290
0
{
291
0
    return ossl_hexstr2buf_sep(str, buflen, DEFAULT_SEPARATOR);
292
0
}
293
294
static int buf2hexstr_sep(char *str, size_t str_n, size_t *strlength,
295
    const unsigned char *buf, size_t buflen,
296
    const char sep)
297
123k
{
298
123k
    char *q;
299
123k
    int has_sep = (sep != CH_ZERO);
300
123k
    size_t i, len = has_sep ? buflen * 3 : 1 + buflen * 2;
301
302
123k
    if (buflen > (has_sep ? SIZE_MAX / 3 : (SIZE_MAX - 1) / 2)) {
303
0
        ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_MANY_BYTES);
304
0
        return 0;
305
0
    }
306
307
123k
    if (len == 0)
308
0
        ++len;
309
123k
    if (strlength != NULL)
310
0
        *strlength = len;
311
123k
    if (str == NULL)
312
0
        return 1;
313
314
123k
    if (str_n < len) {
315
0
        ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_SMALL_BUFFER);
316
0
        return 0;
317
0
    }
318
319
123k
    q = str;
320
17.9M
    for (i = 0; i < buflen; i++) {
321
17.8M
        q += ossl_to_hex(q, buf[i]);
322
17.8M
        if (has_sep)
323
17.5M
            *q++ = sep;
324
17.8M
    }
325
123k
    if (has_sep && buflen > 0)
326
91.7k
        --q;
327
123k
    *q = CH_ZERO;
328
329
#ifdef CHARSET_EBCDIC
330
    ebcdic2ascii(str, str, q - str);
331
#endif
332
123k
    return 1;
333
123k
}
334
335
int OPENSSL_buf2hexstr_ex(char *str, size_t str_n, size_t *strlength,
336
    const unsigned char *buf, size_t buflen,
337
    const char sep)
338
0
{
339
0
    return buf2hexstr_sep(str, str_n, strlength, buf, buflen, sep);
340
0
}
341
342
char *ossl_buf2hexstr_sep(const unsigned char *buf, long buflen, char sep)
343
78.7k
{
344
78.7k
    char *tmp;
345
78.7k
    size_t tmp_n;
346
347
78.7k
    if (buflen == 0)
348
5.94k
        return OPENSSL_zalloc(1);
349
350
72.7k
    if ((sep != CH_ZERO && (size_t)buflen > SIZE_MAX / 3)
351
72.7k
        || (sep == CH_ZERO && (size_t)buflen > (SIZE_MAX - 1) / 2)) {
352
0
        ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_MANY_BYTES);
353
0
        return NULL;
354
0
    }
355
356
72.7k
    tmp_n = (sep != CH_ZERO) ? (size_t)buflen * 3 : 1 + (size_t)buflen * 2;
357
72.7k
    if ((tmp = OPENSSL_malloc(tmp_n)) == NULL)
358
0
        return NULL;
359
360
72.7k
    if (buf2hexstr_sep(tmp, tmp_n, NULL, buf, buflen, sep))
361
72.7k
        return tmp;
362
0
    OPENSSL_free(tmp);
363
0
    return NULL;
364
72.7k
}
365
366
/*
367
 * Given a buffer of length 'buflen' return a OPENSSL_malloc'ed string with
368
 * its hex representation @@@ (Contents of buffer are always kept in ASCII,
369
 * also on EBCDIC machines)
370
 */
371
char *OPENSSL_buf2hexstr(const unsigned char *buf, long buflen)
372
101k
{
373
101k
    return ossl_buf2hexstr_sep(buf, buflen, DEFAULT_SEPARATOR);
374
101k
}
375
376
int openssl_strerror_r(int errnum, char *buf, size_t buflen)
377
0
{
378
#if defined(_MSC_VER) && _MSC_VER >= 1400 && !defined(_WIN32_WCE)
379
    return !strerror_s(buf, buflen, errnum);
380
#elif defined(_GNU_SOURCE)
381
    char *err;
382
383
    /*
384
     * GNU strerror_r may not actually set buf.
385
     * It can return a pointer to some (immutable) static string in which case
386
     * buf is left unused.
387
     */
388
    err = strerror_r(errnum, buf, buflen);
389
    if (err == NULL || buflen == 0)
390
        return 0;
391
    /*
392
     * If err is statically allocated, err != buf and we need to copy the data.
393
     * If err points somewhere inside buf, OPENSSL_strlcpy can handle this,
394
     * since src and dest are not annotated with __restrict and the function
395
     * reads src byte for byte and writes to dest.
396
     * If err == buf we do not have to copy anything.
397
     */
398
    if (err != buf)
399
        OPENSSL_strlcpy(buf, err, buflen);
400
    return 1;
401
#elif (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE >= 200112L) || (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE >= 600)
402
    /*
403
     * We can use "real" strerror_r. The OpenSSL version differs in that it
404
     * gives 1 on success and 0 on failure for consistency with other OpenSSL
405
     * functions. Real strerror_r does it the other way around
406
     */
407
0
    return !strerror_r(errnum, buf, buflen);
408
#else
409
    char *err;
410
411
    /* Fall back to non-thread safe strerror()...its all we can do */
412
    if (buflen < 2)
413
        return 0;
414
    err = strerror(errnum);
415
    /* Can this ever happen? */
416
    if (err == NULL)
417
        return 0;
418
    OPENSSL_strlcpy(buf, err, buflen);
419
    return 1;
420
#endif
421
0
}
422
423
int OPENSSL_strcasecmp(const char *s1, const char *s2)
424
235M
{
425
235M
    int t;
426
427
1.36G
    while ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) == 0)
428
1.33G
        if (*s1++ == '\0')
429
199M
            return 0;
430
35.5M
    return t;
431
235M
}
432
433
int OPENSSL_strncasecmp(const char *s1, const char *s2, size_t n)
434
43.2M
{
435
43.2M
    int t;
436
43.2M
    size_t i;
437
438
54.8M
    for (i = 0; i < n; i++)
439
52.7M
        if ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) != 0)
440
41.1M
            return t;
441
11.5M
        else if (*s1++ == '\0')
442
0
            return 0;
443
2.16M
    return 0;
444
43.2M
}
445
446
size_t ossl_to_hex(char *buf, uint8_t n)
447
249M
{
448
249M
    static const char hexdig[] = "0123456789ABCDEF";
449
450
249M
    return to_hex(buf, n, hexdig);
451
249M
}