Coverage Report

Created: 2026-09-12 06:55

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
97.9k
#define DEFAULT_SEPARATOR ':'
20
817M
#define CH_ZERO '\0'
21
22
char *CRYPTO_strdup(const char *str, const char *file, int line)
23
33.9M
{
24
33.9M
    char *ret;
25
33.9M
    size_t len;
26
27
33.9M
    if (str == NULL)
28
0
        return NULL;
29
30
33.9M
    len = strlen(str) + 1;
31
33.9M
    ret = CRYPTO_malloc(len, file, line);
32
33.9M
    if (ret != NULL)
33
33.9M
        memcpy(ret, str, len);
34
33.9M
    return ret;
35
33.9M
}
36
37
char *CRYPTO_strndup(const char *str, size_t s, const char *file, int line)
38
785k
{
39
785k
    size_t maxlen;
40
785k
    char *ret;
41
42
785k
    if (str == NULL)
43
4
        return NULL;
44
45
785k
    maxlen = OPENSSL_strnlen(str, s);
46
47
785k
    ret = CRYPTO_malloc(maxlen + 1, file, line);
48
785k
    if (ret) {
49
785k
        memcpy(ret, str, maxlen);
50
785k
        ret[maxlen] = CH_ZERO;
51
785k
    }
52
785k
    return ret;
53
785k
}
54
55
void *CRYPTO_memdup(const void *data, size_t siz, const char *file, int line)
56
20.8M
{
57
20.8M
    void *ret;
58
59
20.8M
    if (data == NULL || siz >= INT_MAX)
60
0
        return NULL;
61
62
20.8M
    ret = CRYPTO_malloc(siz, file, line);
63
20.8M
    if (ret == NULL)
64
0
        return NULL;
65
20.8M
    return memcpy(ret, data, siz);
66
20.8M
}
67
68
size_t OPENSSL_strnlen(const char *str, size_t maxlen)
69
153M
{
70
153M
    const char *p;
71
72
759M
    for (p = str; maxlen-- != 0 && *p != CH_ZERO; ++p)
73
606M
        ;
74
75
153M
    return p - str;
76
153M
}
77
78
size_t OPENSSL_strlcpy(char *dst, const char *src, size_t size)
79
57.4M
{
80
57.4M
    size_t l = 0;
81
670M
    for (; size > 1 && *src; size--) {
82
613M
        *dst++ = *src++;
83
613M
        l++;
84
613M
    }
85
57.4M
    if (size)
86
57.4M
        *dst = CH_ZERO;
87
57.4M
    return l + strlen(src);
88
57.4M
}
89
90
size_t OPENSSL_strlcat(char *dst, const char *src, size_t size)
91
42.4M
{
92
42.4M
    size_t l = 0;
93
564M
    for (; size > 0 && *dst; size--, dst++)
94
522M
        l++;
95
42.4M
    return l + OPENSSL_strlcpy(dst, src, size);
96
42.4M
}
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
109k
{
166
#ifdef CHARSET_EBCDIC
167
    c = os_toebcdic[c];
168
#endif
169
170
109k
    switch (c) {
171
63.8k
    case '0':
172
63.8k
        return 0;
173
1.07k
    case '1':
174
1.07k
        return 1;
175
489
    case '2':
176
489
        return 2;
177
3.80k
    case '3':
178
3.80k
        return 3;
179
271
    case '4':
180
271
        return 4;
181
649
    case '5':
182
649
        return 5;
183
653
    case '6':
184
653
        return 6;
185
243
    case '7':
186
243
        return 7;
187
710
    case '8':
188
710
        return 8;
189
16.8k
    case '9':
190
16.8k
        return 9;
191
10.4k
    case 'a':
192
10.8k
    case 'A':
193
10.8k
        return 0x0A;
194
1.24k
    case 'b':
195
1.96k
    case 'B':
196
1.96k
        return 0x0B;
197
266
    case 'c':
198
351
    case 'C':
199
351
        return 0x0C;
200
1.04k
    case 'd':
201
1.13k
    case 'D':
202
1.13k
        return 0x0D;
203
1.64k
    case 'e':
204
1.76k
    case 'E':
205
1.76k
        return 0x0E;
206
3.03k
    case 'f':
207
4.35k
    case 'F':
208
4.35k
        return 0x0F;
209
109k
    }
210
306
    return -1;
211
109k
}
212
213
static int hexstr2buf_sep(unsigned char *buf, size_t buf_n, size_t *buflen,
214
    const char *str, const char sep)
215
929
{
216
929
    unsigned char *q;
217
929
    unsigned char ch, cl;
218
929
    int chi, cli;
219
929
    const unsigned char *p;
220
929
    size_t cnt;
221
222
4.48k
    for (p = (const unsigned char *)str, q = buf, cnt = 0; *p;) {
223
3.75k
        ch = *p++;
224
        /* A separator of CH_ZERO means there is no separator */
225
3.75k
        if (ch == sep && sep != CH_ZERO)
226
1.21k
            continue;
227
2.54k
        cl = *p++;
228
2.54k
        if (!cl) {
229
24
            ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_ODD_NUMBER_OF_DIGITS);
230
24
            return 0;
231
24
        }
232
2.51k
        cli = OPENSSL_hexchar2int(cl);
233
2.51k
        chi = OPENSSL_hexchar2int(ch);
234
2.51k
        if (cli < 0 || chi < 0) {
235
177
            ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_ILLEGAL_HEX_DIGIT);
236
177
            return 0;
237
177
        }
238
2.34k
        cnt++;
239
2.34k
        if (q != NULL) {
240
2.34k
            if (cnt > buf_n) {
241
0
                ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_SMALL_BUFFER);
242
0
                return 0;
243
0
            }
244
2.34k
            *q++ = (unsigned char)((chi << 4) | cli);
245
2.34k
        }
246
2.34k
    }
247
248
728
    if (buflen != NULL)
249
728
        *buflen = cnt;
250
728
    return 1;
251
929
}
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
1.00k
{
265
1.00k
    unsigned char *buf;
266
1.00k
    size_t buf_n, tmp_buflen;
267
268
1.00k
    buf_n = strlen(str);
269
1.00k
    if (buf_n <= 1) {
270
71
        ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_HEX_STRING_TOO_SHORT);
271
71
        return NULL;
272
71
    }
273
929
    buf_n /= 2;
274
929
    if ((buf = OPENSSL_malloc(buf_n)) == NULL)
275
0
        return NULL;
276
277
929
    if (buflen != NULL)
278
929
        *buflen = 0;
279
929
    tmp_buflen = 0;
280
929
    if (hexstr2buf_sep(buf, buf_n, &tmp_buflen, str, sep)) {
281
728
        if (buflen != NULL)
282
728
            *buflen = (long)tmp_buflen;
283
728
        return buf;
284
728
    }
285
201
    OPENSSL_free(buf);
286
201
    return NULL;
287
929
}
288
289
unsigned char *OPENSSL_hexstr2buf(const char *str, long *buflen)
290
1.00k
{
291
1.00k
    return ossl_hexstr2buf_sep(str, buflen, DEFAULT_SEPARATOR);
292
1.00k
}
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
113k
{
298
113k
    char *q;
299
113k
    int has_sep = (sep != CH_ZERO);
300
113k
    size_t i, len = has_sep ? buflen * 3 : 1 + buflen * 2;
301
302
113k
    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
113k
    if (len == 0)
308
0
        ++len;
309
113k
    if (strlength != NULL)
310
0
        *strlength = len;
311
113k
    if (str == NULL)
312
0
        return 1;
313
314
113k
    if (str_n < len) {
315
0
        ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_SMALL_BUFFER);
316
0
        return 0;
317
0
    }
318
319
113k
    q = str;
320
13.6M
    for (i = 0; i < buflen; i++) {
321
13.5M
        q += ossl_to_hex(q, buf[i]);
322
13.5M
        if (has_sep)
323
13.3M
            *q++ = sep;
324
13.5M
    }
325
113k
    if (has_sep && buflen > 0)
326
89.7k
        --q;
327
113k
    *q = CH_ZERO;
328
329
#ifdef CHARSET_EBCDIC
330
    ebcdic2ascii(str, str, q - str);
331
#endif
332
113k
    return 1;
333
113k
}
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
68.0k
{
344
68.0k
    char *tmp;
345
68.0k
    size_t tmp_n;
346
347
68.0k
    if (buflen == 0)
348
4.59k
        return OPENSSL_zalloc(1);
349
350
63.5k
    if ((sep != CH_ZERO && (size_t)buflen > SIZE_MAX / 3)
351
63.5k
        || (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
63.5k
    tmp_n = (sep != CH_ZERO) ? (size_t)buflen * 3 : 1 + (size_t)buflen * 2;
357
63.5k
    if ((tmp = OPENSSL_malloc(tmp_n)) == NULL)
358
0
        return NULL;
359
360
63.5k
    if (buf2hexstr_sep(tmp, tmp_n, NULL, buf, buflen, sep))
361
63.5k
        return tmp;
362
0
    OPENSSL_free(tmp);
363
0
    return NULL;
364
63.5k
}
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
96.9k
{
373
96.9k
    return ossl_buf2hexstr_sep(buf, buflen, DEFAULT_SEPARATOR);
374
96.9k
}
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
40.0M
{
425
40.0M
    int t;
426
427
156M
    while ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) == 0)
428
126M
        if (*s1++ == '\0')
429
10.6M
            return 0;
430
29.3M
    return t;
431
40.0M
}
432
433
int OPENSSL_strncasecmp(const char *s1, const char *s2, size_t n)
434
70.2M
{
435
70.2M
    int t;
436
70.2M
    size_t i;
437
438
84.0M
    for (i = 0; i < n; i++)
439
82.1M
        if ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) != 0)
440
68.3M
            return t;
441
13.8M
        else if (*s1++ == '\0')
442
0
            return 0;
443
1.89M
    return 0;
444
70.2M
}
445
446
size_t ossl_to_hex(char *buf, uint8_t n)
447
275M
{
448
275M
    static const char hexdig[] = "0123456789ABCDEF";
449
450
275M
    return to_hex(buf, n, hexdig);
451
275M
}