diff options
author | Florin Coras <fcoras@cisco.com> | 2021-04-21 09:05:56 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-04-22 16:07:11 +0000 |
commit | a54b62d77794dee48510e7c128d3ab2fc90934b3 (patch) | |
tree | 019fb22c41ccf585c6a99bb778dc291f672abdc1 /src/plugins/http_static/static_server.c | |
parent | c7e7819ad5c152168a5f1a217c3b72043fd48797 (diff) |
vcl session: refactor passing of crypto context
Pass tls/quic crypto context using extended config instead of bloating
conect/listen messages.
Type: refactor
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I0bc637ae310e6c31ef1e16847501dcb81453ee94
Diffstat (limited to 'src/plugins/http_static/static_server.c')
-rw-r--r-- | src/plugins/http_static/static_server.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/plugins/http_static/static_server.c b/src/plugins/http_static/static_server.c index b354666f816..23860b083d8 100644 --- a/src/plugins/http_static/static_server.c +++ b/src/plugins/http_static/static_server.c @@ -1186,12 +1186,20 @@ http_static_server_attach () } static int +http_static_transport_needs_crypto (transport_proto_t proto) +{ + return proto == TRANSPORT_PROTO_TLS || proto == TRANSPORT_PROTO_DTLS || + proto == TRANSPORT_PROTO_QUIC; +} + +static int http_static_server_listen () { http_static_server_main_t *hsm = &http_static_server_main; session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL; vnet_listen_args_t _a, *a = &_a; char *uri = "tcp://0.0.0.0/80"; + int rv; clib_memset (a, 0, sizeof (*a)); a->app_index = hsm->app_index; @@ -1203,9 +1211,17 @@ http_static_server_listen () return -1; clib_memcpy (&a->sep_ext, &sep, sizeof (sep)); - a->sep_ext.ckpair_index = hsm->ckpair_index; + if (http_static_transport_needs_crypto (a->sep_ext.transport_proto)) + { + session_endpoint_alloc_ext_cfg (&a->sep_ext, + TRANSPORT_ENDPT_EXT_CFG_CRYPTO); + a->sep_ext.ext_cfg->crypto.ckpair_index = hsm->ckpair_index; + } - return vnet_listen (a); + rv = vnet_listen (a); + if (a->sep_ext.ext_cfg) + clib_mem_free (a->sep_ext.ext_cfg); + return rv; } static void |