Coverage Report

Created: 2024-11-21 07:03

/src/openssl/crypto/quic_vlint.c
Line
Count
Source (jump to first uncovered line)
1
#include "internal/quic_vlint.h"
2
#include "internal/e_os.h"
3
4
#ifndef OPENSSL_NO_QUIC
5
6
void ossl_quic_vlint_encode_n(uint8_t *buf, uint64_t v, int n)
7
0
{
8
0
    if (n == 1) {
9
0
        buf[0] = (uint8_t)v;
10
0
    } else if (n == 2) {
11
0
        buf[0] = (uint8_t)(0x40 | ((v >> 8) & 0x3F));
12
0
        buf[1] = (uint8_t)v;
13
0
    } else if (n == 4) {
14
0
        buf[0] = (uint8_t)(0x80 | ((v >> 24) & 0x3F));
15
0
        buf[1] = (uint8_t)(v >> 16);
16
0
        buf[2] = (uint8_t)(v >>  8);
17
0
        buf[3] = (uint8_t)v;
18
0
    } else {
19
0
        buf[0] = (uint8_t)(0xC0 | ((v >> 56) & 0x3F));
20
0
        buf[1] = (uint8_t)(v >> 48);
21
0
        buf[2] = (uint8_t)(v >> 40);
22
0
        buf[3] = (uint8_t)(v >> 32);
23
0
        buf[4] = (uint8_t)(v >> 24);
24
0
        buf[5] = (uint8_t)(v >> 16);
25
0
        buf[6] = (uint8_t)(v >>  8);
26
0
        buf[7] = (uint8_t)v;
27
0
    }
28
0
}
29
30
void ossl_quic_vlint_encode(uint8_t *buf, uint64_t v)
31
0
{
32
0
    ossl_quic_vlint_encode_n(buf, v, ossl_quic_vlint_encode_len(v));
33
0
}
34
35
uint64_t ossl_quic_vlint_decode_unchecked(const unsigned char *buf)
36
0
{
37
0
    uint8_t first_byte = buf[0];
38
0
    size_t sz = ossl_quic_vlint_decode_len(first_byte);
39
40
0
    if (sz == 1)
41
0
        return first_byte & 0x3F;
42
43
0
    if (sz == 2)
44
0
        return ((uint64_t)(first_byte & 0x3F) << 8)
45
0
             | buf[1];
46
47
0
    if (sz == 4)
48
0
        return ((uint64_t)(first_byte & 0x3F) << 24)
49
0
             | ((uint64_t)buf[1] << 16)
50
0
             | ((uint64_t)buf[2] <<  8)
51
0
             |  buf[3];
52
53
0
    return ((uint64_t)(first_byte & 0x3F) << 56)
54
0
         | ((uint64_t)buf[1] << 48)
55
0
         | ((uint64_t)buf[2] << 40)
56
0
         | ((uint64_t)buf[3] << 32)
57
0
         | ((uint64_t)buf[4] << 24)
58
0
         | ((uint64_t)buf[5] << 16)
59
0
         | ((uint64_t)buf[6] <<  8)
60
0
         |  buf[7];
61
0
}
62
63
int ossl_quic_vlint_decode(const unsigned char *buf, size_t buf_len, uint64_t *v)
64
0
{
65
0
    size_t dec_len;
66
0
    uint64_t x;
67
68
0
    if (buf_len < 1)
69
0
        return 0;
70
71
0
    dec_len = ossl_quic_vlint_decode_len(buf[0]);
72
0
    if (buf_len < dec_len)
73
0
        return 0;
74
75
0
    x = ossl_quic_vlint_decode_unchecked(buf);
76
77
0
    *v = x;
78
0
    return dec_len;
79
0
}
80
81
#endif