summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_sstream.c
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-11-30 19:30:30 +0100
committerTomas Mraz <tomas@openssl.org>2023-03-06 12:26:16 +0100
commit2113ea584cdfd59892bbeb7acd78d8b1a825a156 (patch)
tree653548a8021fdda207d9a08b9edcb8fc26a0af82 /ssl/quic/quic_sstream.c
parentac21c1780a63a8d9a3a6217eb52fe0d188fa7655 (diff)
Improve the QUIC_RSTREAM implementation
Add API calls to avoid copying data when reading These are ossl_quic_rstream_get_record() and ossl_quic_rstream_release_record(). Add side storage for the stream frame data. When there are too many packets referenced by the receiving stream the function ossl_quic_rstream_move_to_rbuf() can be called to move the data to a ring buffer. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19794)
Diffstat (limited to 'ssl/quic/quic_sstream.c')
-rw-r--r--ssl/quic/quic_sstream.c177
1 files changed, 1 insertions, 176 deletions
diff --git a/ssl/quic/quic_sstream.c b/ssl/quic/quic_sstream.c
index 8dc7002c41..a0ef4e9eae 100644
--- a/ssl/quic/quic_sstream.c
+++ b/ssl/quic/quic_sstream.c
@@ -10,182 +10,7 @@
#include "internal/quic_stream.h"
#include "internal/uint_set.h"
#include "internal/common.h"
-
-/*
- * ==================================================================
- * Byte-wise ring buffer which supports pushing and popping blocks of multiple
- * bytes at a time. The logical offset of each byte for the purposes of a QUIC
- * stream is tracked. Bytes can be popped from the ring buffer in two stages;
- * first they are popped, and then they are culled. Bytes which have been popped
- * but not yet culled will not be overwritten, and can be restored.
- */
-struct ring_buf {
- void *start;
- size_t alloc; /* size of buffer allocation in bytes */
-
- /*
- * Logical offset of the head (where we append to). This is the current size
- * of the QUIC stream. This increases monotonically.
- */
- uint64_t head_offset;
-
- /*
- * Logical offset of the cull tail. Data is no longer needed and is
- * deallocated as the cull tail advances, which occurs as data is
- * acknowledged. This increases monotonically.
- */
- uint64_t ctail_offset;
-};
-
-static int ring_buf_init(struct ring_buf *r)
-{
- r->start = NULL;
- r->alloc = 0;
- r->head_offset = r->ctail_offset = 0;
- return 1;
-}
-
-static void ring_buf_destroy(struct ring_buf *r)
-{
- OPENSSL_free(r->start);
- r->start = NULL;
- r->alloc = 0;
-}
-
-static size_t ring_buf_used(struct ring_buf *r)
-{
- return (size_t)(r->head_offset - r->ctail_offset);
-}
-
-static size_t ring_buf_avail(struct ring_buf *r)
-{
- return r->alloc - ring_buf_used(r);
-}
-
-static size_t ring_buf_push(struct ring_buf *r,
- const unsigned char *buf, size_t buf_len)
-{
- size_t pushed = 0, avail, idx, l, i;
- unsigned char *start = r->start;
-
- for (i = 0;; ++i) {
- avail = ring_buf_avail(r);
- if (buf_len > avail)
- buf_len = avail;
-
- if (buf_len == 0)
- break;
-
- assert(i < 2);
-
- idx = r->head_offset % r->alloc;
- l = r->alloc - idx;
- if (buf_len < l)
- l = buf_len;
-
- memcpy(start + idx, buf, l);
- r->head_offset += l;
- buf += l;
- buf_len -= l;
- pushed += l;
- }
-
- return pushed;
-}
-
-/*
- * Retrieves data out of the read size of the ring buffer starting at the given
- * logical offset. *buf is set to point to a contiguous span of bytes and
- * *buf_len is set to the number of contiguous bytes. After this function
- * returns, there may or may not be more bytes available at the logical offset
- * of (logical_offset + *buf_len) by calling this function again. If the logical
- * offset is out of the range retained by the ring buffer, returns 0, else
- * returns 1. A logical offset at the end of the range retained by the ring
- * buffer is not considered an error and is returned with a *buf_len of 0.
- *
- * The ring buffer state is not changed.
- */
-static int ring_buf_get_buf_at(const struct ring_buf *r,
- uint64_t logical_offset,
- const unsigned char **buf, size_t *buf_len)
-{
- const unsigned char *start = r->start;
- size_t idx, l;
-
- if (logical_offset > r->head_offset || logical_offset < r->ctail_offset)
- return 0;
-
- if (r->alloc == 0) {
- *buf = NULL;
- *buf_len = 0;
- return 1;
- }
-
- idx = logical_offset % r->alloc;
- l = (size_t)(r->head_offset - logical_offset);
- if (l > r->alloc - idx)
- l = r->alloc - idx;
-
- *buf = start + idx;
- *buf_len = l;
- return 1;
-}
-
-static void ring_buf_cpop_range(struct ring_buf *r,
- uint64_t start, uint64_t end)
-{
- assert(end >= start);
-
- if (start > r->ctail_offset)
- return;
-
- r->ctail_offset = end + 1;
-}
-
-static int ring_buf_resize(struct ring_buf *r, size_t num_bytes)
-{
- struct ring_buf rnew = {0};
- const unsigned char *src = NULL;
- size_t src_len = 0, copied = 0;
-
- if (num_bytes == r->alloc)
- return 1;
-
- if (num_bytes < ring_buf_used(r))
- return 0;
-
- rnew.start = OPENSSL_malloc(num_bytes);
- if (rnew.start == NULL)
- return 0;
-
- rnew.alloc = num_bytes;
- rnew.head_offset = r->head_offset - ring_buf_used(r);
- rnew.ctail_offset = rnew.head_offset;
-
- for (;;) {
- if (!ring_buf_get_buf_at(r, r->ctail_offset + copied, &src, &src_len)) {
- OPENSSL_free(rnew.start);
- return 0;
- }
-
- if (src_len == 0)
- break;
-
- if (ring_buf_push(&rnew, src, src_len) != src_len) {
- OPENSSL_free(rnew.start);
- return 0;
- }
-
- copied += src_len;
- }
-
- assert(rnew.head_offset == r->head_offset);
- rnew.ctail_offset = r->ctail_offset;
-
- OPENSSL_free(r->start);
- memcpy(r, &rnew, sizeof(*r));
- return 1;
-}
+#include "internal/ring_buf.h"
/*
* ==================================================================