]> git.kaiwu.me - nginx.git/commitdiff
Resolver: fixed possible use-after-free while resolving PTR.
authorSergey Kandaurov <pluknet@nginx.com>
Tue, 10 Sep 2019 12:42:34 +0000 (15:42 +0300)
committerSergey Kandaurov <pluknet@nginx.com>
Tue, 10 Sep 2019 12:42:34 +0000 (15:42 +0300)
Previously, if a response to the PTR request was cached, and ngx_resolver_dup()
failed to allocate memory for the resulting name, then the original node was
freed but left in expire_queue.  A subsequent address resolving would end up
in a use-after-free memory access of the node either in ngx_resolver_expire()
or ngx_resolver_process_ptr(), when accessing it through expire_queue.

The fix is to leave the resolver node intact.

src/core/ngx_resolver.c

index 593645d5d92f141d11feeba443c4cd4a625940de..e51712c0a2830bd910d1ccde54bfcae7e1d95483 100644 (file)
@@ -972,7 +972,8 @@ ngx_resolve_addr(ngx_resolver_ctx_t *ctx)
 
             name = ngx_resolver_dup(r, rn->name, rn->nlen);
             if (name == NULL) {
-                goto failed;
+                ngx_resolver_free(r, ctx);
+                return NGX_ERROR;
             }
 
             ctx->name.len = rn->nlen;