changeset 8378:81a4f98a2556 quic

Cleaned up reordering code. The ordered frame handler is always called for the existing stream, as it is allocated from this stream. Instead of searching stream by id, pointer to the stream node is passed.
author Vladimir Homutov <vl@nginx.com>
date Fri, 08 May 2020 13:08:04 +0300
parents 2a94aaa70b33
children aecd8ec29c8e
files src/event/ngx_event_quic.c
diffstat 1 files changed, 16 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/src/event/ngx_event_quic.c	Thu May 07 12:34:04 2020 +0300
+++ b/src/event/ngx_event_quic.c	Fri May 08 13:08:04 2020 +0300
@@ -126,7 +126,7 @@
 
 
 typedef ngx_int_t (*ngx_quic_frame_handler_pt)(ngx_connection_t *c,
-    ngx_quic_frame_t *frame);
+    ngx_quic_frame_t *frame, void *data);
 
 
 #if BORINGSSL_API_VERSION >= 10
@@ -189,7 +189,7 @@
 
 static ngx_int_t ngx_quic_handle_ordered_frame(ngx_connection_t *c,
     ngx_quic_frames_stream_t *fs, ngx_quic_frame_t *frame,
-    ngx_quic_frame_handler_pt handler);
+    ngx_quic_frame_handler_pt handler, void *data);
 static ngx_int_t ngx_quic_adjust_frame_offset(ngx_connection_t *c,
     ngx_quic_frame_t *f, uint64_t offset_in);
 static ngx_int_t ngx_quic_buffer_frame(ngx_connection_t *c,
@@ -198,11 +198,11 @@
 static ngx_int_t ngx_quic_handle_crypto_frame(ngx_connection_t *c,
     ngx_quic_header_t *pkt, ngx_quic_frame_t *frame);
 static ngx_int_t ngx_quic_crypto_input(ngx_connection_t *c,
-    ngx_quic_frame_t *frame);
+    ngx_quic_frame_t *frame, void *data);
 static ngx_int_t ngx_quic_handle_stream_frame(ngx_connection_t *c,
     ngx_quic_header_t *pkt, ngx_quic_frame_t *frame);
 static ngx_int_t ngx_quic_stream_input(ngx_connection_t *c,
-    ngx_quic_frame_t *frame);
+    ngx_quic_frame_t *frame, void *data);
 
 static ngx_int_t ngx_quic_handle_max_streams(ngx_connection_t *c);
 static ngx_int_t ngx_quic_handle_max_data_frame(ngx_connection_t *c,
@@ -1780,7 +1780,7 @@
 
 static ngx_int_t
 ngx_quic_handle_ordered_frame(ngx_connection_t *c, ngx_quic_frames_stream_t *fs,
-    ngx_quic_frame_t *frame, ngx_quic_frame_handler_pt handler)
+    ngx_quic_frame_t *frame, ngx_quic_frame_handler_pt handler, void *data)
 {
     size_t                     full_len;
     ngx_int_t                  rc;
@@ -1811,7 +1811,7 @@
 
     /* f->offset == fs->received */
 
-    rc = handler(c, frame);
+    rc = handler(c, frame, data);
     if (rc == NGX_ERROR) {
         return NGX_ERROR;
 
@@ -1863,7 +1863,7 @@
 
         /* f->offset == fs->received */
 
-        rc = handler(c, frame);
+        rc = handler(c, frame, data);
 
         if (rc == NGX_ERROR) {
             return NGX_ERROR;
@@ -2000,12 +2000,13 @@
     qc = c->quic;
     fs = &qc->crypto[pkt->level];
 
-    return ngx_quic_handle_ordered_frame(c, fs, frame, ngx_quic_crypto_input);
+    return ngx_quic_handle_ordered_frame(c, fs, frame, ngx_quic_crypto_input,
+                                         NULL);
 }
 
 
 static ngx_int_t
-ngx_quic_crypto_input(ngx_connection_t *c, ngx_quic_frame_t *frame)
+ngx_quic_crypto_input(ngx_connection_t *c, ngx_quic_frame_t *frame, void *data)
 {
     int                       sslerr;
     ssize_t                   n;
@@ -2091,8 +2092,8 @@
     ngx_quic_frame_t *frame)
 {
     size_t                     n;
-    ngx_buf_t                *b;
-    ngx_event_t              *rev;
+    ngx_buf_t                 *b;
+    ngx_event_t               *rev;
     ngx_quic_stream_t         *sn;
     ngx_quic_connection_t     *qc;
     ngx_quic_stream_frame_t   *f;
@@ -2170,12 +2171,13 @@
 
     fs = &sn->fs;
 
-    return ngx_quic_handle_ordered_frame(c, fs, frame, ngx_quic_stream_input);
+    return ngx_quic_handle_ordered_frame(c, fs, frame, ngx_quic_stream_input,
+                                         sn);
 }
 
 
 static ngx_int_t
-ngx_quic_stream_input(ngx_connection_t *c, ngx_quic_frame_t *frame)
+ngx_quic_stream_input(ngx_connection_t *c, ngx_quic_frame_t *frame, void *data)
 {
     ngx_buf_t                *b;
     ngx_event_t              *rev;
@@ -2184,16 +2186,10 @@
     ngx_quic_stream_frame_t  *f;
 
     qc = c->quic;
+    sn = data;
 
     f = &frame->u.stream;
 
-    sn = ngx_quic_find_stream(&qc->streams.tree, f->stream_id);
-    if (sn == NULL) {
-        // TODO: possible?
-        // stream was deleted while in reordering queue ?
-        return NGX_ERROR;
-    }
-
     ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, 0, "quic existing stream");
 
     b = sn->b;