Using malloc/free for the http fields hash.
This is required due to lack of a graceful shutdown: there is a small gap between the runtime's memory pool release and router process's exit. Thus, a worker thread may start processing a request between these two operations, which may result in an http fields hash access and subsequent crash. To simplify issue reproduction, it makes sense to add a 2 sec sleep before exit() in nxt_runtime_exit().
This commit is contained in:
@@ -245,9 +245,9 @@ nxt_http_date(u_char *buf, struct tm *tm)
|
||||
}
|
||||
|
||||
|
||||
nxt_int_t nxt_http_init(nxt_task_t *task, nxt_runtime_t *rt);
|
||||
nxt_int_t nxt_h1p_init(nxt_task_t *task, nxt_runtime_t *rt);
|
||||
nxt_int_t nxt_http_response_hash_init(nxt_task_t *task, nxt_runtime_t *rt);
|
||||
nxt_int_t nxt_http_init(nxt_task_t *task);
|
||||
nxt_int_t nxt_h1p_init(nxt_task_t *task);
|
||||
nxt_int_t nxt_http_response_hash_init(nxt_task_t *task);
|
||||
|
||||
void nxt_http_conn_init(nxt_task_t *task, void *obj, void *data);
|
||||
nxt_http_request_t *nxt_http_request_create(nxt_task_t *task);
|
||||
|
||||
Reference in New Issue
Block a user