Skip to content

Commit

Permalink
QUIC SSTREAM: Fix bug in ossl_quic_sstream_is_totally_acked
Browse files Browse the repository at this point in the history
ossl_quic_sstream_is_totally_acked would return 0
if no data had been appended to the stream yet.
Fixed and added tests.

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from #22580)
  • Loading branch information
hlandau committed Nov 2, 2023
1 parent daf26c2 commit 115ee28
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ssl/quic/quic_sstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,13 @@ int ossl_quic_sstream_is_totally_acked(QUIC_SSTREAM *qss)
UINT_RANGE r;
uint64_t cur_size;

if ((qss->have_final_size && !qss->acked_final_size)
|| ossl_list_uint_set_num(&qss->acked_set) != 1)
if (qss->have_final_size && !qss->acked_final_size)
return 0;

if (ossl_quic_sstream_get_cur_size(qss) == 0)
return 1;

if (ossl_list_uint_set_num(&qss->acked_set) != 1)
return 0;

r = ossl_list_uint_set_head(&qss->acked_set)->range;
Expand Down
11 changes: 11 additions & 0 deletions test/quic_stream_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ static int test_sstream_simple(void)
if (!TEST_ptr(sstream = ossl_quic_sstream_new(init_size)))
goto err;

/* A stream with nothing yet appended is totally acked */
if (!TEST_true(ossl_quic_sstream_is_totally_acked(sstream)))
goto err;

/* Should not have any data yet */
num_iov = OSSL_NELEM(iov);
if (!TEST_false(ossl_quic_sstream_get_stream_frame(sstream, 0, &hdr, iov,
Expand All @@ -60,6 +64,10 @@ static int test_sstream_simple(void)
|| !TEST_size_t_eq(wr, sizeof(data_1)))
goto err;

/* No longer totally acked */
if (!TEST_false(ossl_quic_sstream_is_totally_acked(sstream)))
goto err;

/* Read data */
num_iov = OSSL_NELEM(iov);
if (!TEST_true(ossl_quic_sstream_get_stream_frame(sstream, 0, &hdr, iov,
Expand Down Expand Up @@ -196,6 +204,9 @@ static int test_sstream_simple(void)
if (!TEST_true(ossl_quic_sstream_mark_acked_fin(sstream)))
goto err;

if (!TEST_true(ossl_quic_sstream_is_totally_acked(sstream)))
goto err;

testresult = 1;
err:
ossl_quic_sstream_free(sstream);
Expand Down

0 comments on commit 115ee28

Please sign in to comment.