]> git.kaiwu.me - nginx.git/commit
Perl: propagate errors.
authorMaxim Dounin <mdounin@mdounin.ru>
Fri, 12 Jul 2019 10:56:21 +0000 (13:56 +0300)
committerMaxim Dounin <mdounin@mdounin.ru>
Fri, 12 Jul 2019 10:56:21 +0000 (13:56 +0300)
commit4a0771f9a62eccf168e651a502e67ec17d1cd6c7
tree319303da69644b844f703076221883c72b855905
parenteae5e4dd01dfaff9d15c3dd7818f082e2995cc74
Perl: propagate errors.

When an error happens, the ctx->error bit is now set, and croak()
is called to terminate further processing.  The ctx->error bit is
checked in ngx_http_perl_call_handler() to cancel further processing,
and is also checked in various output functions - to make sure these won't
be called if croak() was handled by an eval{} in perl code.

In particular, this ensures that output chain won't be called after
errors, as filters might not expect this to happen.  This fixes some
segmentation faults under low memory conditions.  Also this stops
request processing after filter finalization or request body reading
errors.

For cases where an HTTP error status can be additionally returned (for
example, 416 (Requested Range Not Satisfiable) from the range filter),
the ctx->status field is also added.
src/http/modules/perl/nginx.xs
src/http/modules/perl/ngx_http_perl_module.c
src/http/modules/perl/ngx_http_perl_module.h