Coverage Report

Created: 2024-07-27 06:39

/src/openssl32/crypto/packet.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2015-2023 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/cryptlib.h"
11
#include "internal/packet.h"
12
#if !defined OPENSSL_NO_QUIC && !defined FIPS_MODULE
13
# include "internal/packet_quic.h"
14
#endif
15
#include <openssl/err.h>
16
17
87.2k
#define DEFAULT_BUF_SIZE    256
18
19
int WPACKET_allocate_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes)
20
23.2M
{
21
23.2M
    if (!WPACKET_reserve_bytes(pkt, len, allocbytes))
22
26.4k
        return 0;
23
24
23.2M
    pkt->written += len;
25
23.2M
    pkt->curr += len;
26
23.2M
    return 1;
27
23.2M
}
28
29
int WPACKET_sub_allocate_bytes__(WPACKET *pkt, size_t len,
30
                                 unsigned char **allocbytes, size_t lenbytes)
31
16.8k
{
32
16.8k
    if (!WPACKET_start_sub_packet_len__(pkt, lenbytes)
33
16.8k
            || !WPACKET_allocate_bytes(pkt, len, allocbytes)
34
16.8k
            || !WPACKET_close(pkt))
35
0
        return 0;
36
37
16.8k
    return 1;
38
16.8k
}
39
40
26.6M
#define GETBUF(p)   (((p)->staticbuf != NULL) \
41
26.6M
                     ? (p)->staticbuf \
42
26.6M
                     : ((p)->buf != NULL \
43
12.1M
                        ? (unsigned char *)(p)->buf->data \
44
12.1M
                        : NULL))
45
46
int WPACKET_reserve_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes)
47
24.0M
{
48
    /* Internal API, so should not fail */
49
24.0M
    if (!ossl_assert(pkt->subs != NULL && len != 0))
50
0
        return 0;
51
52
24.0M
    if (pkt->maxsize - pkt->written < len)
53
26.4k
        return 0;
54
55
24.0M
    if (pkt->buf != NULL && (pkt->buf->length - pkt->written < len)) {
56
50.6k
        size_t newlen;
57
50.6k
        size_t reflen;
58
59
50.6k
        reflen = (len > pkt->buf->length) ? len : pkt->buf->length;
60
61
50.6k
        if (reflen > SIZE_MAX / 2) {
62
0
            newlen = SIZE_MAX;
63
50.6k
        } else {
64
50.6k
            newlen = reflen * 2;
65
50.6k
            if (newlen < DEFAULT_BUF_SIZE)
66
36.5k
                newlen = DEFAULT_BUF_SIZE;
67
50.6k
        }
68
50.6k
        if (BUF_MEM_grow(pkt->buf, newlen) == 0)
69
0
            return 0;
70
50.6k
    }
71
24.0M
    if (allocbytes != NULL) {
72
23.1M
        *allocbytes = WPACKET_get_curr(pkt);
73
23.1M
        if (pkt->endfirst && *allocbytes != NULL)
74
33.9k
            *allocbytes -= len;
75
23.1M
    }
76
77
24.0M
    return 1;
78
24.0M
}
79
80
int WPACKET_sub_reserve_bytes__(WPACKET *pkt, size_t len,
81
                                unsigned char **allocbytes, size_t lenbytes)
82
4.25k
{
83
4.25k
    if (pkt->endfirst && lenbytes > 0)
84
0
        return 0;
85
86
4.25k
    if (!WPACKET_reserve_bytes(pkt, lenbytes + len, allocbytes))
87
0
        return 0;
88
89
4.25k
    if (*allocbytes != NULL)
90
4.25k
        *allocbytes += lenbytes;
91
92
4.25k
    return 1;
93
4.25k
}
94
95
static size_t maxmaxsize(size_t lenbytes)
96
7.48M
{
97
7.48M
    if (lenbytes >= sizeof(size_t) || lenbytes == 0)
98
7.48M
        return SIZE_MAX;
99
100
0
    return ((size_t)1 << (lenbytes * 8)) - 1 + lenbytes;
101
7.48M
}
102
103
static int wpacket_intern_init_len(WPACKET *pkt, size_t lenbytes)
104
4.77M
{
105
4.77M
    unsigned char *lenchars;
106
107
4.77M
    pkt->curr = 0;
108
4.77M
    pkt->written = 0;
109
110
4.77M
    if ((pkt->subs = OPENSSL_zalloc(sizeof(*pkt->subs))) == NULL)
111
0
        return 0;
112
113
4.77M
    if (lenbytes == 0)
114
4.77M
        return 1;
115
116
0
    pkt->subs->pwritten = lenbytes;
117
0
    pkt->subs->lenbytes = lenbytes;
118
119
0
    if (!WPACKET_allocate_bytes(pkt, lenbytes, &lenchars)) {
120
0
        OPENSSL_free(pkt->subs);
121
0
        pkt->subs = NULL;
122
0
        return 0;
123
0
    }
124
0
    pkt->subs->packet_len = 0;
125
126
0
    return 1;
127
0
}
128
129
int WPACKET_init_static_len(WPACKET *pkt, unsigned char *buf, size_t len,
130
                            size_t lenbytes)
131
4.29M
{
132
4.29M
    size_t max = maxmaxsize(lenbytes);
133
134
    /* Internal API, so should not fail */
135
4.29M
    if (!ossl_assert(buf != NULL && len > 0))
136
0
        return 0;
137
138
4.29M
    pkt->staticbuf = buf;
139
4.29M
    pkt->buf = NULL;
140
4.29M
    pkt->maxsize = (max < len) ? max : len;
141
4.29M
    pkt->endfirst = 0;
142
143
4.29M
    return wpacket_intern_init_len(pkt, lenbytes);
144
4.29M
}
145
146
int WPACKET_init_der(WPACKET *pkt, unsigned char *buf, size_t len)
147
11.3k
{
148
    /* Internal API, so should not fail */
149
11.3k
    if (!ossl_assert(buf != NULL && len > 0))
150
0
        return 0;
151
152
11.3k
    pkt->staticbuf = buf;
153
11.3k
    pkt->buf = NULL;
154
11.3k
    pkt->maxsize = len;
155
11.3k
    pkt->endfirst = 1;
156
157
11.3k
    return wpacket_intern_init_len(pkt, 0);
158
11.3k
}
159
160
int WPACKET_init_len(WPACKET *pkt, BUF_MEM *buf, size_t lenbytes)
161
160k
{
162
    /* Internal API, so should not fail */
163
160k
    if (!ossl_assert(buf != NULL))
164
0
        return 0;
165
166
160k
    pkt->staticbuf = NULL;
167
160k
    pkt->buf = buf;
168
160k
    pkt->maxsize = maxmaxsize(lenbytes);
169
160k
    pkt->endfirst = 0;
170
171
160k
    return wpacket_intern_init_len(pkt, lenbytes);
172
160k
}
173
174
int WPACKET_init(WPACKET *pkt, BUF_MEM *buf)
175
158k
{
176
158k
    return WPACKET_init_len(pkt, buf, 0);
177
158k
}
178
179
int WPACKET_init_null(WPACKET *pkt, size_t lenbytes)
180
306k
{
181
306k
    pkt->staticbuf = NULL;
182
306k
    pkt->buf = NULL;
183
306k
    pkt->maxsize = maxmaxsize(lenbytes);
184
306k
    pkt->endfirst = 0;
185
186
306k
    return wpacket_intern_init_len(pkt, 0);
187
306k
}
188
189
int WPACKET_init_null_der(WPACKET *pkt)
190
3
{
191
3
    pkt->staticbuf = NULL;
192
3
    pkt->buf = NULL;
193
3
    pkt->maxsize = SIZE_MAX;
194
3
    pkt->endfirst = 1;
195
196
3
    return wpacket_intern_init_len(pkt, 0);
197
3
}
198
199
int WPACKET_set_flags(WPACKET *pkt, unsigned int flags)
200
119k
{
201
    /* Internal API, so should not fail */
202
119k
    if (!ossl_assert(pkt->subs != NULL))
203
0
        return 0;
204
205
119k
    pkt->subs->flags = flags;
206
207
119k
    return 1;
208
119k
}
209
210
/* Store the |value| of length |len| at location |data| */
211
static int put_value(unsigned char *data, uint64_t value, size_t len)
212
14.4M
{
213
14.4M
    if (data == NULL)
214
1.84M
        return 1;
215
216
36.0M
    for (data += len - 1; len > 0; len--) {
217
23.4M
        *data = (unsigned char)(value & 0xff);
218
23.4M
        data--;
219
23.4M
        value >>= 8;
220
23.4M
    }
221
222
    /* Check whether we could fit the value in the assigned number of bytes */
223
12.6M
    if (value > 0)
224
627
        return 0;
225
226
12.6M
    return 1;
227
12.6M
}
228
229
#if !defined OPENSSL_NO_QUIC && !defined FIPS_MODULE
230
static int put_quic_value(unsigned char *data, size_t value, size_t len)
231
0
{
232
0
    if (data == NULL)
233
0
        return 1;
234
235
    /* Value too large for field. */
236
0
    if (ossl_quic_vlint_encode_len(value) > len)
237
0
        return 0;
238
239
0
    ossl_quic_vlint_encode_n(data, value, len);
240
0
    return 1;
241
0
}
242
#endif
243
244
/*
245
 * Internal helper function used by WPACKET_close(), WPACKET_finish() and
246
 * WPACKET_fill_lengths() to close a sub-packet and write out its length if
247
 * necessary. If |doclose| is 0 then it goes through the motions of closing
248
 * (i.e. it fills in all the lengths), but doesn't actually close anything.
249
 */
250
static int wpacket_intern_close(WPACKET *pkt, WPACKET_SUB *sub, int doclose)
251
5.45M
{
252
5.45M
    size_t packlen = pkt->written - sub->pwritten;
253
254
5.45M
    if (packlen == 0
255
5.45M
            && (sub->flags & WPACKET_FLAGS_NON_ZERO_LENGTH) != 0)
256
0
        return 0;
257
258
5.45M
    if (packlen == 0
259
5.45M
            && sub->flags & WPACKET_FLAGS_ABANDON_ON_ZERO_LENGTH) {
260
        /* We can't handle this case. Return an error */
261
4.21k
        if (!doclose)
262
0
            return 0;
263
264
        /* Deallocate any bytes allocated for the length of the WPACKET */
265
4.21k
        if ((pkt->curr - sub->lenbytes) == sub->packet_len) {
266
4.21k
            pkt->written -= sub->lenbytes;
267
4.21k
            pkt->curr -= sub->lenbytes;
268
4.21k
        }
269
270
        /* Don't write out the packet length */
271
4.21k
        sub->packet_len = 0;
272
4.21k
        sub->lenbytes = 0;
273
4.21k
    }
274
275
    /* Write out the WPACKET length if needed */
276
5.45M
    if (sub->lenbytes > 0) {
277
2.14M
        unsigned char *buf = GETBUF(pkt);
278
279
2.14M
        if (buf != NULL) {
280
2.14M
#if !defined OPENSSL_NO_QUIC && !defined FIPS_MODULE
281
2.14M
            if ((sub->flags & WPACKET_FLAGS_QUIC_VLINT) == 0) {
282
2.14M
                if (!put_value(&buf[sub->packet_len], packlen, sub->lenbytes))
283
399
                    return 0;
284
2.14M
            } else {
285
0
                if (!put_quic_value(&buf[sub->packet_len], packlen, sub->lenbytes))
286
0
                    return 0;
287
0
            }
288
#else
289
            if (!put_value(&buf[sub->packet_len], packlen, sub->lenbytes))
290
                return 0;
291
#endif
292
2.14M
        }
293
3.31M
    } else if (pkt->endfirst && sub->parent != NULL
294
3.31M
               && (packlen != 0
295
5.62k
                   || (sub->flags
296
5.62k
                       & WPACKET_FLAGS_ABANDON_ON_ZERO_LENGTH) == 0)) {
297
5.62k
        size_t tmplen = packlen;
298
5.62k
        size_t numlenbytes = 1;
299
300
5.62k
        while ((tmplen = tmplen >> 8) > 0)
301
0
            numlenbytes++;
302
5.62k
        if (!WPACKET_put_bytes__(pkt, packlen, numlenbytes))
303
0
            return 0;
304
5.62k
        if (packlen > 0x7f) {
305
0
            numlenbytes |= 0x80;
306
0
            if (!WPACKET_put_bytes_u8(pkt, numlenbytes))
307
0
                return 0;
308
0
        }
309
5.62k
    }
310
311
5.45M
    if (doclose) {
312
5.45M
        pkt->subs = sub->parent;
313
5.45M
        OPENSSL_free(sub);
314
5.45M
    }
315
316
5.45M
    return 1;
317
5.45M
}
318
319
int WPACKET_fill_lengths(WPACKET *pkt)
320
0
{
321
0
    WPACKET_SUB *sub;
322
323
0
    if (!ossl_assert(pkt->subs != NULL))
324
0
        return 0;
325
326
0
    for (sub = pkt->subs; sub != NULL; sub = sub->parent) {
327
0
        if (!wpacket_intern_close(pkt, sub, 0))
328
0
            return 0;
329
0
    }
330
331
0
    return 1;
332
0
}
333
334
int WPACKET_close(WPACKET *pkt)
335
3.55M
{
336
    /*
337
     * Internal API, so should not fail - but we do negative testing of this
338
     * so no assert (otherwise the tests fail)
339
     */
340
3.55M
    if (pkt->subs == NULL || pkt->subs->parent == NULL)
341
0
        return 0;
342
343
3.55M
    return wpacket_intern_close(pkt, pkt->subs, 1);
344
3.55M
}
345
346
int WPACKET_finish(WPACKET *pkt)
347
3.13M
{
348
3.13M
    int ret;
349
350
    /*
351
     * Internal API, so should not fail - but we do negative testing of this
352
     * so no assert (otherwise the tests fail)
353
     */
354
3.13M
    if (pkt->subs == NULL || pkt->subs->parent != NULL)
355
0
        return 0;
356
357
3.13M
    ret = wpacket_intern_close(pkt, pkt->subs, 1);
358
3.13M
    if (ret) {
359
3.13M
        OPENSSL_free(pkt->subs);
360
3.13M
        pkt->subs = NULL;
361
3.13M
    }
362
363
3.13M
    return ret;
364
3.13M
}
365
366
int WPACKET_start_sub_packet_len__(WPACKET *pkt, size_t lenbytes)
367
3.55M
{
368
3.55M
    WPACKET_SUB *sub;
369
3.55M
    unsigned char *lenchars;
370
371
    /* Internal API, so should not fail */
372
3.55M
    if (!ossl_assert(pkt->subs != NULL))
373
0
        return 0;
374
375
    /* We don't support lenbytes greater than 0 when doing endfirst writing */
376
3.55M
    if (lenbytes > 0 && pkt->endfirst)
377
0
        return 0;
378
379
3.55M
    if ((sub = OPENSSL_zalloc(sizeof(*sub))) == NULL)
380
0
        return 0;
381
382
3.55M
    sub->parent = pkt->subs;
383
3.55M
    pkt->subs = sub;
384
3.55M
    sub->pwritten = pkt->written + lenbytes;
385
3.55M
    sub->lenbytes = lenbytes;
386
387
3.55M
    if (lenbytes == 0) {
388
954k
        sub->packet_len = 0;
389
954k
        return 1;
390
954k
    }
391
392
2.60M
    sub->packet_len = pkt->written;
393
394
2.60M
    if (!WPACKET_allocate_bytes(pkt, lenbytes, &lenchars))
395
0
        return 0;
396
397
2.60M
    return 1;
398
2.60M
}
399
400
int WPACKET_start_sub_packet(WPACKET *pkt)
401
954k
{
402
954k
    return WPACKET_start_sub_packet_len__(pkt, 0);
403
954k
}
404
405
int WPACKET_put_bytes__(WPACKET *pkt, uint64_t val, size_t size)
406
11.8M
{
407
11.8M
    unsigned char *data;
408
409
    /* Internal API, so should not fail */
410
11.8M
    if (!ossl_assert(size <= sizeof(uint64_t))
411
11.8M
            || !WPACKET_allocate_bytes(pkt, size, &data)
412
11.8M
            || !put_value(data, val, size))
413
8.04k
        return 0;
414
415
11.8M
    return 1;
416
11.8M
}
417
418
int WPACKET_set_max_size(WPACKET *pkt, size_t maxsize)
419
2.71M
{
420
2.71M
    WPACKET_SUB *sub;
421
2.71M
    size_t lenbytes;
422
423
    /* Internal API, so should not fail */
424
2.71M
    if (!ossl_assert(pkt->subs != NULL))
425
0
        return 0;
426
427
    /* Find the WPACKET_SUB for the top level */
428
2.71M
    for (sub = pkt->subs; sub->parent != NULL; sub = sub->parent)
429
0
        continue;
430
431
2.71M
    lenbytes = sub->lenbytes;
432
2.71M
    if (lenbytes == 0)
433
2.71M
        lenbytes = sizeof(pkt->maxsize);
434
435
2.71M
    if (maxmaxsize(lenbytes) < maxsize || maxsize < pkt->written)
436
0
        return 0;
437
438
2.71M
    pkt->maxsize = maxsize;
439
440
2.71M
    return 1;
441
2.71M
}
442
443
int WPACKET_memset(WPACKET *pkt, int ch, size_t len)
444
265k
{
445
265k
    unsigned char *dest;
446
447
265k
    if (len == 0)
448
0
        return 1;
449
450
265k
    if (!WPACKET_allocate_bytes(pkt, len, &dest))
451
1
        return 0;
452
453
265k
    if (dest != NULL)
454
265k
        memset(dest, ch, len);
455
456
265k
    return 1;
457
265k
}
458
459
int WPACKET_memcpy(WPACKET *pkt, const void *src, size_t len)
460
4.25M
{
461
4.25M
    unsigned char *dest;
462
463
4.25M
    if (len == 0)
464
1.47M
        return 1;
465
466
2.78M
    if (!WPACKET_allocate_bytes(pkt, len, &dest))
467
18.0k
        return 0;
468
469
2.76M
    if (dest != NULL)
470
2.76M
        memcpy(dest, src, len);
471
472
2.76M
    return 1;
473
2.78M
}
474
475
int WPACKET_sub_memcpy__(WPACKET *pkt, const void *src, size_t len,
476
                         size_t lenbytes)
477
778k
{
478
778k
    if (!WPACKET_start_sub_packet_len__(pkt, lenbytes)
479
778k
            || !WPACKET_memcpy(pkt, src, len)
480
778k
            || !WPACKET_close(pkt))
481
627
        return 0;
482
483
777k
    return 1;
484
778k
}
485
486
int WPACKET_get_total_written(WPACKET *pkt, size_t *written)
487
3.78M
{
488
    /* Internal API, so should not fail */
489
3.78M
    if (!ossl_assert(written != NULL))
490
0
        return 0;
491
492
3.78M
    *written = pkt->written;
493
494
3.78M
    return 1;
495
3.78M
}
496
497
int WPACKET_get_length(WPACKET *pkt, size_t *len)
498
1.00M
{
499
    /* Internal API, so should not fail */
500
1.00M
    if (!ossl_assert(pkt->subs != NULL && len != NULL))
501
0
        return 0;
502
503
1.00M
    *len = pkt->written - pkt->subs->pwritten;
504
505
1.00M
    return 1;
506
1.00M
}
507
508
unsigned char *WPACKET_get_curr(WPACKET *pkt)
509
24.4M
{
510
24.4M
    unsigned char *buf = GETBUF(pkt);
511
512
24.4M
    if (buf == NULL)
513
2.45M
        return NULL;
514
515
22.0M
    if (pkt->endfirst)
516
45.2k
        return buf + pkt->maxsize - pkt->curr;
517
518
21.9M
    return buf + pkt->curr;
519
22.0M
}
520
521
int WPACKET_is_null_buf(WPACKET *pkt)
522
306k
{
523
306k
    return pkt->buf == NULL && pkt->staticbuf == NULL;
524
306k
}
525
526
void WPACKET_cleanup(WPACKET *pkt)
527
1.79M
{
528
1.79M
    WPACKET_SUB *sub, *parent;
529
530
3.43M
    for (sub = pkt->subs; sub != NULL; sub = parent) {
531
1.63M
        parent = sub->parent;
532
1.63M
        OPENSSL_free(sub);
533
1.63M
    }
534
1.79M
    pkt->subs = NULL;
535
1.79M
}
536
537
#if !defined OPENSSL_NO_QUIC && !defined FIPS_MODULE
538
539
int WPACKET_start_quic_sub_packet_bound(WPACKET *pkt, size_t max_len)
540
0
{
541
0
    size_t enclen = ossl_quic_vlint_encode_len(max_len);
542
543
0
    if (enclen == 0)
544
0
        return 0;
545
546
0
    if (WPACKET_start_sub_packet_len__(pkt, enclen) == 0)
547
0
        return 0;
548
549
0
    pkt->subs->flags |= WPACKET_FLAGS_QUIC_VLINT;
550
0
    return 1;
551
0
}
552
553
int WPACKET_start_quic_sub_packet(WPACKET *pkt)
554
0
{
555
    /*
556
     * Assume no (sub)packet will exceed 4GiB, thus the 8-byte encoding need not
557
     * be used.
558
     */
559
0
    return WPACKET_start_quic_sub_packet_bound(pkt, OSSL_QUIC_VLINT_4B_MIN);
560
0
}
561
562
int WPACKET_quic_sub_allocate_bytes(WPACKET *pkt, size_t len, unsigned char **allocbytes)
563
0
{
564
0
    if (!WPACKET_start_quic_sub_packet_bound(pkt, len)
565
0
            || !WPACKET_allocate_bytes(pkt, len, allocbytes)
566
0
            || !WPACKET_close(pkt))
567
0
        return 0;
568
569
0
    return 1;
570
0
}
571
572
/*
573
 * Write a QUIC variable-length integer to the packet.
574
 */
575
int WPACKET_quic_write_vlint(WPACKET *pkt, uint64_t v)
576
4.78M
{
577
4.78M
    unsigned char *b = NULL;
578
4.78M
    size_t enclen = ossl_quic_vlint_encode_len(v);
579
580
4.78M
    if (enclen == 0)
581
0
        return 0;
582
583
4.78M
    if (WPACKET_allocate_bytes(pkt, enclen, &b) == 0)
584
377
        return 0;
585
586
4.78M
    ossl_quic_vlint_encode(b, v);
587
4.78M
    return 1;
588
4.78M
}
589
590
#endif