aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2021-05-05 15:15:48 +0300
committerRoman Arutyunyan <arut@nginx.com>2021-05-05 15:15:48 +0300
commit9e05c357cc20c6673480e45e554a5b1c69b0e413 (patch)
tree96f2707105c92a7aa03135c103411f9c36ef0f89
parentde75c7e3e21822a909391a4b3ccaac7914c8641d (diff)
downloadnginx-9e05c357cc20c6673480e45e554a5b1c69b0e413.tar.gz
nginx-9e05c357cc20c6673480e45e554a5b1c69b0e413.zip
HTTP/3: moved session initialization to a separate file.
Previously it was in ngx_http_v3_streams.c, but it's unrelated to streams.
-rw-r--r--auto/modules3
-rw-r--r--src/http/v3/ngx_http_v3.c85
-rw-r--r--src/http/v3/ngx_http_v3_streams.c76
-rw-r--r--src/http/v3/ngx_http_v3_streams.h1
4 files changed, 89 insertions, 76 deletions
diff --git a/auto/modules b/auto/modules
index 464111263..d454466af 100644
--- a/auto/modules
+++ b/auto/modules
@@ -431,7 +431,8 @@ if [ $HTTP = YES ]; then
src/http/v3/ngx_http_v3_parse.h \
src/http/v3/ngx_http_v3_tables.h \
src/http/v3/ngx_http_v3_streams.h"
- ngx_module_srcs="src/http/v3/ngx_http_v3_encode.c \
+ ngx_module_srcs="src/http/v3/ngx_http_v3.c \
+ src/http/v3/ngx_http_v3_encode.c \
src/http/v3/ngx_http_v3_parse.c \
src/http/v3/ngx_http_v3_tables.c \
src/http/v3/ngx_http_v3_streams.c \
diff --git a/src/http/v3/ngx_http_v3.c b/src/http/v3/ngx_http_v3.c
new file mode 100644
index 000000000..461388bae
--- /dev/null
+++ b/src/http/v3/ngx_http_v3.c
@@ -0,0 +1,85 @@
+
+/*
+ * Copyright (C) Roman Arutyunyan
+ * Copyright (C) Nginx, Inc.
+ */
+
+
+#include <ngx_config.h>
+#include <ngx_core.h>
+#include <ngx_http.h>
+
+
+static void ngx_http_v3_keepalive_handler(ngx_event_t *ev);
+static void ngx_http_v3_cleanup_session(void *data);
+
+
+ngx_int_t
+ngx_http_v3_init_session(ngx_connection_t *c)
+{
+ ngx_connection_t *pc;
+ ngx_pool_cleanup_t *cln;
+ ngx_http_connection_t *hc;
+ ngx_http_v3_session_t *h3c;
+
+ pc = c->quic->parent;
+ hc = pc->data;
+
+ if (hc->v3_session) {
+ return NGX_OK;
+ }
+
+ ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 init session");
+
+ h3c = ngx_pcalloc(pc->pool, sizeof(ngx_http_v3_session_t));
+ if (h3c == NULL) {
+ return NGX_ERROR;
+ }
+
+ h3c->max_push_id = (uint64_t) -1;
+
+ ngx_queue_init(&h3c->blocked);
+ ngx_queue_init(&h3c->pushing);
+
+ h3c->keepalive.log = pc->log;
+ h3c->keepalive.data = pc;
+ h3c->keepalive.handler = ngx_http_v3_keepalive_handler;
+ h3c->keepalive.cancelable = 1;
+
+ cln = ngx_pool_cleanup_add(pc->pool, 0);
+ if (cln == NULL) {
+ return NGX_ERROR;
+ }
+
+ cln->handler = ngx_http_v3_cleanup_session;
+ cln->data = h3c;
+
+ hc->v3_session = h3c;
+
+ return ngx_http_v3_send_settings(c);
+}
+
+
+static void
+ngx_http_v3_keepalive_handler(ngx_event_t *ev)
+{
+ ngx_connection_t *c;
+
+ c = ev->data;
+
+ ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 keepalive handler");
+
+ ngx_quic_finalize_connection(c, NGX_HTTP_V3_ERR_NO_ERROR,
+ "keepalive timeout");
+}
+
+
+static void
+ngx_http_v3_cleanup_session(void *data)
+{
+ ngx_http_v3_session_t *h3c = data;
+
+ if (h3c->keepalive.timer_set) {
+ ngx_del_timer(&h3c->keepalive);
+ }
+}
diff --git a/src/http/v3/ngx_http_v3_streams.c b/src/http/v3/ngx_http_v3_streams.c
index 292e6653b..0e55dbe0d 100644
--- a/src/http/v3/ngx_http_v3_streams.c
+++ b/src/http/v3/ngx_http_v3_streams.c
@@ -24,86 +24,12 @@ typedef struct {
} ngx_http_v3_push_t;
-static void ngx_http_v3_keepalive_handler(ngx_event_t *ev);
-static void ngx_http_v3_cleanup_session(void *data);
static void ngx_http_v3_close_uni_stream(ngx_connection_t *c);
static void ngx_http_v3_uni_read_handler(ngx_event_t *rev);
static void ngx_http_v3_dummy_write_handler(ngx_event_t *wev);
static void ngx_http_v3_push_cleanup(void *data);
static ngx_connection_t *ngx_http_v3_get_uni_stream(ngx_connection_t *c,
ngx_uint_t type);
-static ngx_int_t ngx_http_v3_send_settings(ngx_connection_t *c);
-
-
-ngx_int_t
-ngx_http_v3_init_session(ngx_connection_t *c)
-{
- ngx_connection_t *pc;
- ngx_pool_cleanup_t *cln;
- ngx_http_connection_t *hc;
- ngx_http_v3_session_t *h3c;
-
- pc = c->quic->parent;
- hc = pc->data;
-
- if (hc->v3_session) {
- return NGX_OK;
- }
-
- ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 init session");
-
- h3c = ngx_pcalloc(pc->pool, sizeof(ngx_http_v3_session_t));
- if (h3c == NULL) {
- return NGX_ERROR;
- }
-
- h3c->max_push_id = (uint64_t) -1;
-
- ngx_queue_init(&h3c->blocked);
- ngx_queue_init(&h3c->pushing);
-
- h3c->keepalive.log = pc->log;
- h3c->keepalive.data = pc;
- h3c->keepalive.handler = ngx_http_v3_keepalive_handler;
- h3c->keepalive.cancelable = 1;
-
- cln = ngx_pool_cleanup_add(pc->pool, 0);
- if (cln == NULL) {
- return NGX_ERROR;
- }
-
- cln->handler = ngx_http_v3_cleanup_session;
- cln->data = h3c;
-
- hc->v3_session = h3c;
-
- return ngx_http_v3_send_settings(c);
-}
-
-
-static void
-ngx_http_v3_keepalive_handler(ngx_event_t *ev)
-{
- ngx_connection_t *c;
-
- c = ev->data;
-
- ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 keepalive handler");
-
- ngx_quic_finalize_connection(c, NGX_HTTP_V3_ERR_NO_ERROR,
- "keepalive timeout");
-}
-
-
-static void
-ngx_http_v3_cleanup_session(void *data)
-{
- ngx_http_v3_session_t *h3c = data;
-
- if (h3c->keepalive.timer_set) {
- ngx_del_timer(&h3c->keepalive);
- }
-}
void
@@ -445,7 +371,7 @@ failed:
}
-static ngx_int_t
+ngx_int_t
ngx_http_v3_send_settings(ngx_connection_t *c)
{
u_char *p, buf[NGX_HTTP_V3_VARLEN_INT_LEN * 6];
diff --git a/src/http/v3/ngx_http_v3_streams.h b/src/http/v3/ngx_http_v3_streams.h
index c48e6425c..75325f5d4 100644
--- a/src/http/v3/ngx_http_v3_streams.h
+++ b/src/http/v3/ngx_http_v3_streams.h
@@ -24,6 +24,7 @@ ngx_int_t ngx_http_v3_set_max_push_id(ngx_connection_t *c,
ngx_int_t ngx_http_v3_cancel_push(ngx_connection_t *c, uint64_t push_id);
ngx_int_t ngx_http_v3_cancel_stream(ngx_connection_t *c, ngx_uint_t stream_id);
+ngx_int_t ngx_http_v3_send_settings(ngx_connection_t *c);
ngx_int_t ngx_http_v3_send_goaway(ngx_connection_t *c, uint64_t id);
ngx_int_t ngx_http_v3_send_ref_insert(ngx_connection_t *c, ngx_uint_t dynamic,
ngx_uint_t index, ngx_str_t *value);