Coverage Report

Created: 2025-11-16 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl32/ssl/quic/quic_fifd.c
Line
Count
Source
1
/*
2
 * Copyright 2022-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/quic_fifd.h"
11
#include "internal/quic_wire.h"
12
13
DEFINE_LIST_OF(tx_history, OSSL_ACKM_TX_PKT);
14
15
int ossl_quic_fifd_init(QUIC_FIFD *fifd,
16
                        QUIC_CFQ *cfq,
17
                        OSSL_ACKM *ackm,
18
                        QUIC_TXPIM *txpim,
19
                        /* stream_id is UINT64_MAX for the crypto stream */
20
                        QUIC_SSTREAM *(*get_sstream_by_id)(uint64_t stream_id,
21
                                                           uint32_t pn_space,
22
                                                           void *arg),
23
                        void *get_sstream_by_id_arg,
24
                        /* stream_id is UINT64_MAX if not applicable */
25
                        void (*regen_frame)(uint64_t frame_type,
26
                                            uint64_t stream_id,
27
                                            QUIC_TXPIM_PKT *pkt,
28
                                            void *arg),
29
                        void *regen_frame_arg,
30
                        void (*confirm_frame)(uint64_t frame_type,
31
                                              uint64_t stream_id,
32
                                              QUIC_TXPIM_PKT *pkt,
33
                                              void *arg),
34
                        void *confirm_frame_arg,
35
                        void (*sstream_updated)(uint64_t stream_id,
36
                                                void *arg),
37
                        void *sstream_updated_arg)
38
49.9k
{
39
49.9k
    if (cfq == NULL || ackm == NULL || txpim == NULL
40
49.9k
        || get_sstream_by_id == NULL || regen_frame == NULL)
41
0
        return 0;
42
43
49.9k
    fifd->cfq                   = cfq;
44
49.9k
    fifd->ackm                  = ackm;
45
49.9k
    fifd->txpim                 = txpim;
46
49.9k
    fifd->get_sstream_by_id     = get_sstream_by_id;
47
49.9k
    fifd->get_sstream_by_id_arg = get_sstream_by_id_arg;
48
49.9k
    fifd->regen_frame           = regen_frame;
49
49.9k
    fifd->regen_frame_arg       = regen_frame_arg;
50
49.9k
    fifd->confirm_frame         = confirm_frame;
51
49.9k
    fifd->confirm_frame_arg     = confirm_frame_arg;
52
49.9k
    fifd->sstream_updated       = sstream_updated;
53
49.9k
    fifd->sstream_updated_arg   = sstream_updated_arg;
54
49.9k
    return 1;
55
49.9k
}
56
57
void ossl_quic_fifd_cleanup(QUIC_FIFD *fifd)
58
49.9k
{
59
    /* No-op. */
60
49.9k
}
61
62
static void on_acked(void *arg)
63
756k
{
64
756k
    QUIC_TXPIM_PKT *pkt = arg;
65
756k
    QUIC_FIFD *fifd = pkt->fifd;
66
756k
    const QUIC_TXPIM_CHUNK *chunks = ossl_quic_txpim_pkt_get_chunks(pkt);
67
756k
    size_t i, num_chunks = ossl_quic_txpim_pkt_get_num_chunks(pkt);
68
756k
    QUIC_SSTREAM *sstream;
69
756k
    QUIC_CFQ_ITEM *cfq_item, *cfq_item_next;
70
71
    /* STREAM and CRYPTO stream chunks, FINs and stream FC frames */
72
789k
    for (i = 0; i < num_chunks; ++i) {
73
33.5k
        sstream = fifd->get_sstream_by_id(chunks[i].stream_id,
74
33.5k
                                          pkt->ackm_pkt.pkt_space,
75
33.5k
                                          fifd->get_sstream_by_id_arg);
76
33.5k
        if (sstream == NULL)
77
884
            continue;
78
79
32.6k
        if (chunks[i].end >= chunks[i].start)
80
            /* coverity[check_return]: Best effort - we cannot fail here. */
81
32.6k
            ossl_quic_sstream_mark_acked(sstream,
82
32.6k
                                         chunks[i].start, chunks[i].end);
83
84
32.6k
        if (chunks[i].has_fin && chunks[i].stream_id != UINT64_MAX)
85
0
            ossl_quic_sstream_mark_acked_fin(sstream);
86
87
32.6k
        if (chunks[i].has_stop_sending && chunks[i].stream_id != UINT64_MAX)
88
0
            fifd->confirm_frame(OSSL_QUIC_FRAME_TYPE_STOP_SENDING,
89
0
                                chunks[i].stream_id, pkt,
90
0
                                fifd->confirm_frame_arg);
91
92
32.6k
        if (chunks[i].has_reset_stream && chunks[i].stream_id != UINT64_MAX)
93
0
            fifd->confirm_frame(OSSL_QUIC_FRAME_TYPE_RESET_STREAM,
94
0
                                chunks[i].stream_id, pkt,
95
0
                                fifd->confirm_frame_arg);
96
97
32.6k
        if (ossl_quic_sstream_is_totally_acked(sstream))
98
20.3k
            fifd->sstream_updated(chunks[i].stream_id, fifd->sstream_updated_arg);
99
32.6k
    }
100
101
    /* GCR */
102
779k
    for (cfq_item = pkt->retx_head; cfq_item != NULL; cfq_item = cfq_item_next) {
103
23.5k
        cfq_item_next = cfq_item->pkt_next;
104
23.5k
        ossl_quic_cfq_release(fifd->cfq, cfq_item);
105
23.5k
    }
106
107
756k
    ossl_quic_txpim_pkt_release(fifd->txpim, pkt);
108
756k
}
109
110
static void on_lost(void *arg)
111
124k
{
112
124k
    QUIC_TXPIM_PKT *pkt = arg;
113
124k
    QUIC_FIFD *fifd = pkt->fifd;
114
124k
    const QUIC_TXPIM_CHUNK *chunks = ossl_quic_txpim_pkt_get_chunks(pkt);
115
124k
    size_t i, num_chunks = ossl_quic_txpim_pkt_get_num_chunks(pkt);
116
124k
    QUIC_SSTREAM *sstream;
117
124k
    QUIC_CFQ_ITEM *cfq_item, *cfq_item_next;
118
124k
    int sstream_updated;
119
120
    /* STREAM and CRYPTO stream chunks, FIN and stream FC frames */
121
135k
    for (i = 0; i < num_chunks; ++i) {
122
11.0k
        sstream = fifd->get_sstream_by_id(chunks[i].stream_id,
123
11.0k
                                          pkt->ackm_pkt.pkt_space,
124
11.0k
                                          fifd->get_sstream_by_id_arg);
125
11.0k
        if (sstream == NULL)
126
1.72k
            continue;
127
128
9.28k
        sstream_updated = 0;
129
130
9.28k
        if (chunks[i].end >= chunks[i].start) {
131
            /*
132
             * Note: If the stream is being reset, we do not need to retransmit
133
             * old data as this is pointless. In this case this will be handled
134
             * by (sstream == NULL) above as the QSM will free the QUIC_SSTREAM
135
             * and our call to get_sstream_by_id above will return NULL.
136
             */
137
9.28k
            ossl_quic_sstream_mark_lost(sstream,
138
9.28k
                                        chunks[i].start, chunks[i].end);
139
9.28k
            sstream_updated = 1;
140
9.28k
        }
141
142
9.28k
        if (chunks[i].has_fin && chunks[i].stream_id != UINT64_MAX) {
143
0
            ossl_quic_sstream_mark_lost_fin(sstream);
144
0
            sstream_updated = 1;
145
0
        }
146
147
9.28k
        if (chunks[i].has_stop_sending && chunks[i].stream_id != UINT64_MAX)
148
0
            fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_STOP_SENDING,
149
0
                              chunks[i].stream_id, pkt,
150
0
                              fifd->regen_frame_arg);
151
152
9.28k
        if (chunks[i].has_reset_stream && chunks[i].stream_id != UINT64_MAX)
153
0
            fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_RESET_STREAM,
154
0
                              chunks[i].stream_id, pkt,
155
0
                              fifd->regen_frame_arg);
156
157
        /*
158
         * Inform caller that stream needs an FC frame.
159
         *
160
         * Note: We could track whether an FC frame was sent originally for the
161
         * stream to determine if it really needs to be regenerated or not.
162
         * However, if loss has occurred, it's probably better to ensure the
163
         * peer has up-to-date flow control data for the stream. Given that
164
         * these frames are extremely small, we may as well always send it when
165
         * handling loss.
166
         */
167
9.28k
        fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_MAX_STREAM_DATA,
168
9.28k
                          chunks[i].stream_id,
169
9.28k
                          pkt,
170
9.28k
                          fifd->regen_frame_arg);
171
172
9.28k
        if (sstream_updated && chunks[i].stream_id != UINT64_MAX)
173
2.38k
            fifd->sstream_updated(chunks[i].stream_id,
174
2.38k
                                  fifd->sstream_updated_arg);
175
9.28k
    }
176
177
    /* GCR */
178
177k
    for (cfq_item = pkt->retx_head; cfq_item != NULL; cfq_item = cfq_item_next) {
179
52.4k
        cfq_item_next = cfq_item->pkt_next;
180
52.4k
        ossl_quic_cfq_mark_lost(fifd->cfq, cfq_item, UINT32_MAX);
181
52.4k
    }
182
183
    /* Regenerate flag frames */
184
124k
    if (pkt->had_handshake_done_frame)
185
0
        fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_HANDSHAKE_DONE,
186
0
                          UINT64_MAX, pkt,
187
0
                          fifd->regen_frame_arg);
188
189
124k
    if (pkt->had_max_data_frame)
190
0
        fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_MAX_DATA,
191
0
                          UINT64_MAX, pkt,
192
0
                          fifd->regen_frame_arg);
193
194
124k
    if (pkt->had_max_streams_bidi_frame)
195
0
        fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_MAX_STREAMS_BIDI,
196
0
                          UINT64_MAX, pkt,
197
0
                          fifd->regen_frame_arg);
198
199
124k
    if (pkt->had_max_streams_uni_frame)
200
0
        fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_MAX_STREAMS_UNI,
201
0
                          UINT64_MAX, pkt,
202
0
                          fifd->regen_frame_arg);
203
204
124k
    if (pkt->had_ack_frame)
205
        /*
206
         * We always use the ACK_WITH_ECN frame type to represent the ACK frame
207
         * type in our callback; we assume it is the caller's job to decide
208
         * whether it wants to send ECN data or not.
209
         */
210
15.8k
        fifd->regen_frame(OSSL_QUIC_FRAME_TYPE_ACK_WITH_ECN,
211
15.8k
                          UINT64_MAX, pkt,
212
15.8k
                          fifd->regen_frame_arg);
213
214
124k
    ossl_quic_txpim_pkt_release(fifd->txpim, pkt);
215
124k
}
216
217
static void on_discarded(void *arg)
218
837k
{
219
837k
    QUIC_TXPIM_PKT *pkt = arg;
220
837k
    QUIC_FIFD *fifd = pkt->fifd;
221
837k
    QUIC_CFQ_ITEM *cfq_item, *cfq_item_next;
222
223
    /*
224
     * Don't need to do anything to SSTREAMs for STREAM and CRYPTO streams, as
225
     * we assume caller will clean them up.
226
     */
227
228
    /* GCR */
229
1.00M
    for (cfq_item = pkt->retx_head; cfq_item != NULL; cfq_item = cfq_item_next) {
230
166k
        cfq_item_next = cfq_item->pkt_next;
231
166k
        ossl_quic_cfq_release(fifd->cfq, cfq_item);
232
166k
    }
233
234
837k
    ossl_quic_txpim_pkt_release(fifd->txpim, pkt);
235
837k
}
236
237
int ossl_quic_fifd_pkt_commit(QUIC_FIFD *fifd, QUIC_TXPIM_PKT *pkt)
238
1.71M
{
239
1.71M
    QUIC_CFQ_ITEM *cfq_item;
240
1.71M
    const QUIC_TXPIM_CHUNK *chunks;
241
1.71M
    size_t i, num_chunks;
242
1.71M
    QUIC_SSTREAM *sstream;
243
244
1.71M
    pkt->fifd                   = fifd;
245
246
1.71M
    pkt->ackm_pkt.on_lost       = on_lost;
247
1.71M
    pkt->ackm_pkt.on_acked      = on_acked;
248
1.71M
    pkt->ackm_pkt.on_discarded  = on_discarded;
249
1.71M
    pkt->ackm_pkt.cb_arg        = pkt;
250
251
1.71M
    ossl_list_tx_history_init_elem(&pkt->ackm_pkt);
252
1.71M
    pkt->ackm_pkt.anext = pkt->ackm_pkt.lnext = NULL;
253
254
    /*
255
     * Mark the CFQ items which have been added to this packet as having been
256
     * transmitted.
257
     */
258
1.71M
    for (cfq_item = pkt->retx_head;
259
1.96M
         cfq_item != NULL;
260
1.71M
         cfq_item = cfq_item->pkt_next)
261
242k
        ossl_quic_cfq_mark_tx(fifd->cfq, cfq_item);
262
263
    /*
264
     * Mark the send stream chunks which have been added to the packet as having
265
     * been transmitted.
266
     */
267
1.71M
    chunks = ossl_quic_txpim_pkt_get_chunks(pkt);
268
1.71M
    num_chunks = ossl_quic_txpim_pkt_get_num_chunks(pkt);
269
1.81M
    for (i = 0; i < num_chunks; ++i) {
270
100k
        sstream = fifd->get_sstream_by_id(chunks[i].stream_id,
271
100k
                                          pkt->ackm_pkt.pkt_space,
272
100k
                                          fifd->get_sstream_by_id_arg);
273
100k
        if (sstream == NULL)
274
5.98k
            continue;
275
276
94.7k
        if (chunks[i].end >= chunks[i].start
277
94.7k
            && !ossl_quic_sstream_mark_transmitted(sstream,
278
94.7k
                                                   chunks[i].start,
279
94.7k
                                                   chunks[i].end))
280
0
            return 0;
281
282
94.7k
        if (chunks[i].has_fin
283
0
            && !ossl_quic_sstream_mark_transmitted_fin(sstream,
284
0
                                                       chunks[i].end + 1))
285
0
                return 0;
286
94.7k
    }
287
288
    /* Inform the ACKM. */
289
1.71M
    return ossl_ackm_on_tx_packet(fifd->ackm, &pkt->ackm_pkt);
290
1.71M
}