mirror of
https://github.com/nginx/nginx.git
synced 2024-11-21 16:28:40 +00:00
Stream pass: limited the number of passes per connection.
Previously a cycle in pass configuration resulted in stack overflow.
This commit is contained in:
parent
92f9968571
commit
bf3e6538b9
@ -10,6 +10,9 @@
|
||||
#include <ngx_stream.h>
|
||||
|
||||
|
||||
#define NGX_STREAM_PASS_MAX_PASSES 10
|
||||
|
||||
|
||||
typedef struct {
|
||||
ngx_addr_t *addr;
|
||||
ngx_stream_complex_value_t *addr_value;
|
||||
@ -17,6 +20,8 @@ typedef struct {
|
||||
|
||||
|
||||
static void ngx_stream_pass_handler(ngx_stream_session_t *s);
|
||||
static ngx_int_t ngx_stream_pass_check_cycle(ngx_connection_t *c);
|
||||
static void ngx_stream_pass_cleanup(void *data);
|
||||
static ngx_int_t ngx_stream_pass_match(ngx_listening_t *ls, ngx_addr_t *addr);
|
||||
static void *ngx_stream_pass_create_srv_conf(ngx_conf_t *cf);
|
||||
static char *ngx_stream_pass(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
|
||||
@ -125,6 +130,10 @@ ngx_stream_pass_handler(ngx_stream_session_t *s)
|
||||
ngx_log_debug1(NGX_LOG_DEBUG_STREAM, c->log, 0,
|
||||
"stream pass addr: \"%V\"", &addr->name);
|
||||
|
||||
if (ngx_stream_pass_check_cycle(c) != NGX_OK) {
|
||||
goto failed;
|
||||
}
|
||||
|
||||
ls = ngx_cycle->listening.elts;
|
||||
|
||||
for (i = 0; i < ngx_cycle->listening.nelts; i++) {
|
||||
@ -163,6 +172,48 @@ failed:
|
||||
}
|
||||
|
||||
|
||||
static ngx_int_t
|
||||
ngx_stream_pass_check_cycle(ngx_connection_t *c)
|
||||
{
|
||||
ngx_uint_t *num;
|
||||
ngx_pool_cleanup_t *cln;
|
||||
|
||||
for (cln = c->pool->cleanup; cln; cln = cln->next) {
|
||||
if (cln->handler != ngx_stream_pass_cleanup) {
|
||||
continue;
|
||||
}
|
||||
|
||||
num = cln->data;
|
||||
|
||||
if (++(*num) > NGX_STREAM_PASS_MAX_PASSES) {
|
||||
ngx_log_error(NGX_LOG_ERR, c->log, 0, "stream pass cycle");
|
||||
return NGX_ERROR;
|
||||
}
|
||||
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
cln = ngx_pool_cleanup_add(c->pool, sizeof(ngx_uint_t));
|
||||
if (cln == NULL) {
|
||||
return NGX_ERROR;
|
||||
}
|
||||
|
||||
cln->handler = ngx_stream_pass_cleanup;
|
||||
|
||||
num = cln->data;
|
||||
*num = 1;
|
||||
|
||||
return NGX_OK;
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
ngx_stream_pass_cleanup(void *data)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
static ngx_int_t
|
||||
ngx_stream_pass_match(ngx_listening_t *ls, ngx_addr_t *addr)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user