Skip to content

Commit

Permalink
Merge pull request alibaba#1813 from morf/segfault-xquic-cert_cb
Browse files Browse the repository at this point in the history
Fixed segfault in ngx_http_find_virtual_server() within xquic module
  • Loading branch information
drawing authored Aug 4, 2023
2 parents b39f9ca + a265735 commit 636722c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/ngx_http_xquic_module/ngx_http_xquic.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,18 @@ ngx_http_v3_cert_cb(const char *sni, void **chain,
}
#endif

/* The ngx_http_find_virtual_server() function requires ngx_http_connection_t in c->data */
c->data = hc;

/*
* get the server core conf by sni, this is useful when multiple server
* block listen on the same port. but useless when there is noly a single
* server block
*/
ret = ngx_http_find_virtual_server_inner(c,
hc->addr_conf->virtual_names, &host, NULL, &cscf);
c->data = qc;

if (ret == NGX_OK) {
hc->ssl_servername = ngx_palloc(c->pool, sizeof(ngx_str_t));
if (hc->ssl_servername == NULL) {
Expand Down

0 comments on commit 636722c

Please sign in to comment.