Coverage Report

Created: 2026-05-24 07:14

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
120k
#define DEFAULT_SEPARATOR ':'
20
2.48G
#define CH_ZERO '\0'
21
22
char *CRYPTO_strdup(const char *str, const char *file, int line)
23
174M
{
24
174M
    char *ret;
25
174M
    size_t len;
26
27
174M
    if (str == NULL)
28
0
        return NULL;
29
30
174M
    len = strlen(str) + 1;
31
174M
    ret = CRYPTO_malloc(len, file, line);
32
174M
    if (ret != NULL)
33
174M
        memcpy(ret, str, len);
34
174M
    return ret;
35
174M
}
36
37
char *CRYPTO_strndup(const char *str, size_t s, const char *file, int line)
38
220M
{
39
220M
    size_t maxlen;
40
220M
    char *ret;
41
42
220M
    if (str == NULL)
43
0
        return NULL;
44
45
220M
    maxlen = OPENSSL_strnlen(str, s);
46
47
220M
    ret = CRYPTO_malloc(maxlen + 1, file, line);
48
220M
    if (ret) {
49
220M
        memcpy(ret, str, maxlen);
50
220M
        ret[maxlen] = CH_ZERO;
51
220M
    }
52
220M
    return ret;
53
220M
}
54
55
void *CRYPTO_memdup(const void *data, size_t siz, const char *file, int line)
56
58.3M
{
57
58.3M
    void *ret;
58
59
58.3M
    if (data == NULL || siz >= INT_MAX)
60
0
        return NULL;
61
62
58.3M
    ret = CRYPTO_malloc(siz, file, line);
63
58.3M
    if (ret == NULL)
64
0
        return NULL;
65
58.3M
    return memcpy(ret, data, siz);
66
58.3M
}
67
68
size_t OPENSSL_strnlen(const char *str, size_t maxlen)
69
465M
{
70
465M
    const char *p;
71
72
2.40G
    for (p = str; maxlen-- != 0 && *p != CH_ZERO; ++p)
73
1.94G
        ;
74
75
465M
    return p - str;
76
465M
}
77
78
size_t OPENSSL_strlcpy(char *dst, const char *src, size_t size)
79
75.9M
{
80
75.9M
    size_t l = 0;
81
865M
    for (; size > 1 && *src; size--) {
82
789M
        *dst++ = *src++;
83
789M
        l++;
84
789M
    }
85
75.9M
    if (size)
86
75.9M
        *dst = CH_ZERO;
87
75.9M
    return l + strlen(src);
88
75.9M
}
89
90
size_t OPENSSL_strlcat(char *dst, const char *src, size_t size)
91
57.2M
{
92
57.2M
    size_t l = 0;
93
745M
    for (; size > 0 && *dst; size--, dst++)
94
687M
        l++;
95
57.2M
    return l + OPENSSL_strlcpy(dst, src, size);
96
57.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
308
{
166
#ifdef CHARSET_EBCDIC
167
    c = os_toebcdic[c];
168
#endif
169
170
308
    switch (c) {
171
7
    case '0':
172
7
        return 0;
173
19
    case '1':
174
19
        return 1;
175
10
    case '2':
176
10
        return 2;
177
29
    case '3':
178
29
        return 3;
179
13
    case '4':
180
13
        return 4;
181
12
    case '5':
182
12
        return 5;
183
26
    case '6':
184
26
        return 6;
185
8
    case '7':
186
8
        return 7;
187
18
    case '8':
188
18
        return 8;
189
12
    case '9':
190
12
        return 9;
191
17
    case 'a':
192
26
    case 'A':
193
26
        return 0x0A;
194
3
    case 'b':
195
9
    case 'B':
196
9
        return 0x0B;
197
14
    case 'c':
198
19
    case 'C':
199
19
        return 0x0C;
200
10
    case 'd':
201
17
    case 'D':
202
17
        return 0x0D;
203
17
    case 'e':
204
31
    case 'E':
205
31
        return 0x0E;
206
5
    case 'f':
207
12
    case 'F':
208
12
        return 0x0F;
209
308
    }
210
40
    return -1;
211
308
}
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
143k
{
298
143k
    char *q;
299
143k
    int has_sep = (sep != CH_ZERO);
300
143k
    size_t i, len = has_sep ? buflen * 3 : 1 + buflen * 2;
301
302
143k
    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
143k
    if (len == 0)
308
0
        ++len;
309
143k
    if (strlength != NULL)
310
0
        *strlength = len;
311
143k
    if (str == NULL)
312
0
        return 1;
313
314
143k
    if (str_n < len) {
315
0
        ERR_raise(ERR_LIB_CRYPTO, CRYPTO_R_TOO_SMALL_BUFFER);
316
0
        return 0;
317
0
    }
318
319
143k
    q = str;
320
20.6M
    for (i = 0; i < buflen; i++) {
321
20.4M
        q += ossl_to_hex(q, buf[i]);
322
20.4M
        if (has_sep)
323
20.2M
            *q++ = sep;
324
20.4M
    }
325
143k
    if (has_sep && buflen > 0)
326
110k
        --q;
327
143k
    *q = CH_ZERO;
328
329
#ifdef CHARSET_EBCDIC
330
    ebcdic2ascii(str, str, q - str);
331
#endif
332
143k
    return 1;
333
143k
}
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
94.8k
{
344
94.8k
    char *tmp;
345
94.8k
    size_t tmp_n;
346
347
94.8k
    if (buflen == 0)
348
6.11k
        return OPENSSL_zalloc(1);
349
350
88.7k
    if ((sep != CH_ZERO && (size_t)buflen > SIZE_MAX / 3)
351
88.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
88.7k
    tmp_n = (sep != CH_ZERO) ? (size_t)buflen * 3 : 1 + (size_t)buflen * 2;
357
88.7k
    if ((tmp = OPENSSL_malloc(tmp_n)) == NULL)
358
0
        return NULL;
359
360
88.7k
    if (buf2hexstr_sep(tmp, tmp_n, NULL, buf, buflen, sep))
361
88.7k
        return tmp;
362
0
    OPENSSL_free(tmp);
363
0
    return NULL;
364
88.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
120k
{
373
120k
    return ossl_buf2hexstr_sep(buf, buflen, DEFAULT_SEPARATOR);
374
120k
}
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
239M
{
425
239M
    int t;
426
427
1.39G
    while ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) == 0)
428
1.36G
        if (*s1++ == '\0')
429
203M
            return 0;
430
36.5M
    return t;
431
239M
}
432
433
int OPENSSL_strncasecmp(const char *s1, const char *s2, size_t n)
434
46.9M
{
435
46.9M
    int t;
436
46.9M
    size_t i;
437
438
59.0M
    for (i = 0; i < n; i++)
439
56.7M
        if ((t = ossl_tolower(*s1) - ossl_tolower(*s2++)) != 0)
440
44.6M
            return t;
441
12.1M
        else if (*s1++ == '\0')
442
0
            return 0;
443
2.26M
    return 0;
444
46.9M
}
445
446
size_t ossl_to_hex(char *buf, uint8_t n)
447
279M
{
448
279M
    static const char hexdig[] = "0123456789ABCDEF";
449
450
279M
    return to_hex(buf, n, hexdig);
451
279M
}