annotate src/http/modules/perl/nginx.xs @ 7871:5f765427c17a

Fixed SSL logging with lingering close. Recent fixes to SSL shutdown with lingering close (554c6ae25ffc, 1.19.5) broke logging of SSL variables. To make sure logging of SSL variables works properly, avoid freeing c->ssl when doing an SSL shutdown before lingering close. Reported by Reinis Rozitis (http://mailman.nginx.org/pipermail/nginx/2021-May/060670.html).
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 01 Jun 2021 17:37:51 +0300
parents 56b4fb46ba7d
children ef6a3a99a81a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
1
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
2 /*
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
3 * Copyright (C) Igor Sysoev
4412
d620f497c50f Copyright updated.
Maxim Konovalov <maxim@nginx.com>
parents: 4196
diff changeset
4 * Copyright (C) Nginx, Inc.
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
5 */
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
6
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
7
882
26c3e48b9996 the PERL_NO_GET_CONTEXT is actually required, see perlguts
Igor Sysoev <igor@sysoev.ru>
parents: 869
diff changeset
8 #define PERL_NO_GET_CONTEXT
26c3e48b9996 the PERL_NO_GET_CONTEXT is actually required, see perlguts
Igor Sysoev <igor@sysoev.ru>
parents: 869
diff changeset
9
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
10 #include <ngx_config.h>
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
11 #include <ngx_core.h>
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
12 #include <ngx_http.h>
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
13 #include <ngx_http_perl_module.h>
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
14
603
858700ae46b4 nginx-0.3.23-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 601
diff changeset
15 #include "XSUB.h"
858700ae46b4 nginx-0.3.23-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 601
diff changeset
16
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
17
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
18 #define ngx_http_perl_set_request(r, ctx) \
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
19 \
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
20 ctx = INT2PTR(ngx_http_perl_ctx_t *, SvIV((SV *) SvRV(ST(0)))); \
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
21 r = ctx->request
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
22
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
23
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
24 #define ngx_http_perl_set_targ(p, len) \
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
25 \
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
26 SvUPGRADE(TARG, SVt_PV); \
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
27 SvPOK_on(TARG); \
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
28 sv_setpvn(TARG, (char *) p, len)
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
29
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
30
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
31 static ngx_int_t
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
32 ngx_http_perl_sv2str(pTHX_ ngx_http_request_t *r, ngx_str_t *s, SV *sv)
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
33 {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
34 u_char *p;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
35 STRLEN len;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
36
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
37 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PV) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
38 sv = SvRV(sv);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
39 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
40
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
41 p = (u_char *) SvPV(sv, len);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
42
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
43 s->len = len;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
44
1703
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
45 if (SvREADONLY(sv) && SvPOK(sv)) {
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
46 s->data = p;
1703
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
47
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
48 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
49 "perl sv2str: %08XD \"%V\"", sv->sv_flags, s);
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
50
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
51 return NGX_OK;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
52 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
53
2049
2a92804f4109 *) back out r2040
Igor Sysoev <igor@sysoev.ru>
parents: 1898
diff changeset
54 s->data = ngx_pnalloc(r->pool, len);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
55 if (s->data == NULL) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
56 return NGX_ERROR;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
57 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
58
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
59 ngx_memcpy(s->data, p, len);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
60
1703
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
61 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
62 "perl sv2str: %08XD \"%V\"", sv->sv_flags, s);
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
63
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
64 return NGX_OK;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
65 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
66
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
67
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
68 static ngx_int_t
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
69 ngx_http_perl_output(ngx_http_request_t *r, ngx_http_perl_ctx_t *ctx,
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
70 ngx_buf_t *b)
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
71 {
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
72 ngx_chain_t out;
617
51b27717f140 nginx-0.3.30-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 613
diff changeset
73 #if (NGX_HTTP_SSI)
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
74 ngx_chain_t *cl;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
75
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
76 if (ctx->ssi) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
77 cl = ngx_alloc_chain_link(r->pool);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
78 if (cl == NULL) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
79 return NGX_ERROR;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
80 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
81
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
82 cl->buf = b;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
83 cl->next = NULL;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
84 *ctx->ssi->last_out = cl;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
85 ctx->ssi->last_out = &cl->next;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
86
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
87 return NGX_OK;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
88 }
617
51b27717f140 nginx-0.3.30-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 613
diff changeset
89 #endif
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
90
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
91 out.buf = b;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
92 out.next = NULL;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
93
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
94 return ngx_http_output_filter(r, &out);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
95 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
96
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
97
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
98 MODULE = nginx PACKAGE = nginx
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
99
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
100
6233
c6cc0b79a43d Perl: prototyping behavior explicitly specified.
Maxim Dounin <mdounin@mdounin.ru>
parents: 6232
diff changeset
101 PROTOTYPES: DISABLE
c6cc0b79a43d Perl: prototyping behavior explicitly specified.
Maxim Dounin <mdounin@mdounin.ru>
parents: 6232
diff changeset
102
c6cc0b79a43d Perl: prototyping behavior explicitly specified.
Maxim Dounin <mdounin@mdounin.ru>
parents: 6232
diff changeset
103
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
104 void
915
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
105 status(r, code)
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
106 CODE:
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
107
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
108 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
109 ngx_http_perl_ctx_t *ctx;
915
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
110
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
111 ngx_http_perl_set_request(r, ctx);
915
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
112
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
113 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
114 croak("status(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
115 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
116
915
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
117 r->headers_out.status = SvIV(ST(1));
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
118
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
119 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
120 "perl status: %d", r->headers_out.status);
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
121
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
122 XSRETURN_UNDEF;
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
123
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
124
28aa941811e6 $r->status
Igor Sysoev <igor@sysoev.ru>
parents: 912
diff changeset
125 void
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
126 send_http_header(r, ...)
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
127 CODE:
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
128
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
129 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
130 ngx_http_perl_ctx_t *ctx;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
131 SV *sv;
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
132 ngx_int_t rc;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
133
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
134 ngx_http_perl_set_request(r, ctx);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
135
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
136 if (ctx->error) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
137 croak("send_http_header(): called after error");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
138 }
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
139
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
140 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
141 croak("send_http_header(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
142 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
143
7531
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
144 if (ctx->header_sent) {
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
145 croak("send_http_header(): header already sent");
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
146 }
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
147
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
148 if (ctx->redirect_uri.len) {
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
149 croak("send_http_header(): cannot be used with internal_redirect()");
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
150 }
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
151
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
152 if (r->headers_out.status == 0) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
153 r->headers_out.status = NGX_HTTP_OK;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
154 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
155
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
156 if (items != 1) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
157 sv = ST(1);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
158
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
159 if (ngx_http_perl_sv2str(aTHX_ r, &r->headers_out.content_type, sv)
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
160 != NGX_OK)
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
161 {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
162 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
163 croak("ngx_http_perl_sv2str() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
164 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
165
1444
37938e68910b allow to append charset to the "Content-Type" header
Igor Sysoev <igor@sysoev.ru>
parents: 1372
diff changeset
166 r->headers_out.content_type_len = r->headers_out.content_type.len;
37938e68910b allow to append charset to the "Content-Type" header
Igor Sysoev <igor@sysoev.ru>
parents: 1372
diff changeset
167
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
168 } else {
673
b80f94fa2197 nginx-0.3.58-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 667
diff changeset
169 if (ngx_http_set_content_type(r) != NGX_OK) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
170 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
171 croak("ngx_http_set_content_type() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
172 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
173 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
174
7530
fd9252844ec1 Perl: avoid returning 500 if header was already sent.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7528
diff changeset
175 ctx->header_sent = 1;
fd9252844ec1 Perl: avoid returning 500 if header was already sent.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7528
diff changeset
176
7516
36c52a0f6ded Perl: disabled not_modified filter (ticket #1786).
Maxim Dounin <mdounin@mdounin.ru>
parents: 6986
diff changeset
177 r->disable_not_modified = 1;
36c52a0f6ded Perl: disabled not_modified filter (ticket #1786).
Maxim Dounin <mdounin@mdounin.ru>
parents: 6986
diff changeset
178
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
179 rc = ngx_http_send_header(r);
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
180
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
181 if (rc == NGX_ERROR || rc > NGX_OK) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
182 ctx->error = 1;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
183 ctx->status = rc;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
184 croak("ngx_http_send_header() failed");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
185 }
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
186
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
187
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
188 void
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
189 header_only(r)
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
190 CODE:
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
191
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
192 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
193 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
194 ngx_http_perl_ctx_t *ctx;
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
195
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
196 ngx_http_perl_set_request(r, ctx);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
197
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
198 sv_upgrade(TARG, SVt_IV);
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
199 sv_setiv(TARG, r->header_only);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
200
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
201 ST(0) = TARG;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
202
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
203
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
204 void
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
205 uri(r)
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
206 CODE:
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
207
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
208 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
209 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
210 ngx_http_perl_ctx_t *ctx;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
211
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
212 ngx_http_perl_set_request(r, ctx);
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
213 ngx_http_perl_set_targ(r->uri.data, r->uri.len);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
214
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
215 ST(0) = TARG;
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
216
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
217
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
218 void
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
219 args(r)
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
220 CODE:
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
221
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
222 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
223 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
224 ngx_http_perl_ctx_t *ctx;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
225
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
226 ngx_http_perl_set_request(r, ctx);
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
227 ngx_http_perl_set_targ(r->args.data, r->args.len);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
228
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
229 ST(0) = TARG;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
230
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
231
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
232 void
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
233 request_method(r)
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
234 CODE:
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
235
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
236 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
237 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
238 ngx_http_perl_ctx_t *ctx;
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
239
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
240 ngx_http_perl_set_request(r, ctx);
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
241 ngx_http_perl_set_targ(r->method_name.data, r->method_name.len);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
242
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
243 ST(0) = TARG;
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
244
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
245
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
246 void
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
247 remote_addr(r)
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
248 CODE:
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
249
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
250 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
251 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
252 ngx_http_perl_ctx_t *ctx;
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
253
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
254 ngx_http_perl_set_request(r, ctx);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
255 ngx_http_perl_set_targ(r->connection->addr_text.data,
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
256 r->connection->addr_text.len);
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
257
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
258 ST(0) = TARG;
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
259
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
260
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
261 void
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
262 header_in(r, key)
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
263 CODE:
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
264
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
265 dXSTARG;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
266 ngx_http_request_t *r;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
267 ngx_http_perl_ctx_t *ctx;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
268 SV *key;
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
269 u_char *p, *lowcase_key, *value, sep;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
270 STRLEN len;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
271 ssize_t size;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
272 ngx_uint_t i, n, hash;
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
273 ngx_array_t *a;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
274 ngx_list_part_t *part;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
275 ngx_table_elt_t *h, **ph;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
276 ngx_http_header_t *hh;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
277 ngx_http_core_main_conf_t *cmcf;
629
65bf042c0b4f nginx-0.3.36-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 617
diff changeset
278
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
279 ngx_http_perl_set_request(r, ctx);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
280
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
281 key = ST(1);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
282
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
283 if (SvROK(key) && SvTYPE(SvRV(key)) == SVt_PV) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
284 key = SvRV(key);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
285 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
286
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
287 p = (u_char *) SvPV(key, len);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
288
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
289 /* look up hashed headers */
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
290
2049
2a92804f4109 *) back out r2040
Igor Sysoev <igor@sysoev.ru>
parents: 1898
diff changeset
291 lowcase_key = ngx_pnalloc(r->pool, len);
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
292 if (lowcase_key == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
293 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
294 croak("ngx_pnalloc() failed");
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
295 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
296
2136
7a7c9e9024dd ngx_hash_strlow()
Igor Sysoev <igor@sysoev.ru>
parents: 2129
diff changeset
297 hash = ngx_hash_strlow(lowcase_key, p, len);
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
298
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
299 cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
300
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
301 hh = ngx_hash_find(&cmcf->headers_in_hash, hash, lowcase_key, len);
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
302
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
303 if (hh) {
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
304
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
305 if (hh->offset == offsetof(ngx_http_headers_in_t, cookies)) {
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
306 sep = ';';
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
307 goto multi;
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
308 }
5306
43900b822890 Perl: fixed syntax usage for C preprocessor directives.
Sergey Kandaurov <pluknet@nginx.com>
parents: 5248
diff changeset
309 #if (NGX_HTTP_X_FORWARDED_FOR)
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
310 if (hh->offset == offsetof(ngx_http_headers_in_t, x_forwarded_for)) {
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
311 sep = ',';
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
312 goto multi;
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
313 }
5306
43900b822890 Perl: fixed syntax usage for C preprocessor directives.
Sergey Kandaurov <pluknet@nginx.com>
parents: 5248
diff changeset
314 #endif
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
315
6232
5f2a0739da19 Perl: fixed warning about "sep" may be used uninitialized.
Maxim Dounin <mdounin@mdounin.ru>
parents: 5306
diff changeset
316 ph = (ngx_table_elt_t **) ((char *) &r->headers_in + hh->offset);
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
317
6232
5f2a0739da19 Perl: fixed warning about "sep" may be used uninitialized.
Maxim Dounin <mdounin@mdounin.ru>
parents: 5306
diff changeset
318 if (*ph) {
5f2a0739da19 Perl: fixed warning about "sep" may be used uninitialized.
Maxim Dounin <mdounin@mdounin.ru>
parents: 5306
diff changeset
319 ngx_http_perl_set_targ((*ph)->value.data, (*ph)->value.len);
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
320
6232
5f2a0739da19 Perl: fixed warning about "sep" may be used uninitialized.
Maxim Dounin <mdounin@mdounin.ru>
parents: 5306
diff changeset
321 goto done;
5f2a0739da19 Perl: fixed warning about "sep" may be used uninitialized.
Maxim Dounin <mdounin@mdounin.ru>
parents: 5306
diff changeset
322 }
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
323
6232
5f2a0739da19 Perl: fixed warning about "sep" may be used uninitialized.
Maxim Dounin <mdounin@mdounin.ru>
parents: 5306
diff changeset
324 XSRETURN_UNDEF;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
325
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
326 multi:
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
327
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
328 /* Cookie, X-Forwarded-For */
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
329
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
330 a = (ngx_array_t *) ((char *) &r->headers_in + hh->offset);
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
331
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
332 n = a->nelts;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
333
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
334 if (n == 0) {
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
335 XSRETURN_UNDEF;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
336 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
337
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
338 ph = a->elts;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
339
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
340 if (n == 1) {
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
341 ngx_http_perl_set_targ((*ph)->value.data, (*ph)->value.len);
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
342
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
343 goto done;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
344 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
345
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
346 size = - (ssize_t) (sizeof("; ") - 1);
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
347
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
348 for (i = 0; i < n; i++) {
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
349 size += ph[i]->value.len + sizeof("; ") - 1;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
350 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
351
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
352 value = ngx_pnalloc(r->pool, size);
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
353 if (value == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
354 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
355 croak("ngx_pnalloc() failed");
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
356 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
357
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
358 p = value;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
359
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
360 for (i = 0; /* void */ ; i++) {
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
361 p = ngx_copy(p, ph[i]->value.data, ph[i]->value.len);
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
362
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
363 if (i == n - 1) {
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
364 break;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
365 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
366
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
367 *p++ = sep; *p++ = ' ';
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
368 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
369
5248
f5626ab8cb87 Perl: fixed r->header_in("Cookie") (ticket #351).
Maxim Dounin <mdounin@mdounin.ru>
parents: 5198
diff changeset
370 ngx_http_perl_set_targ(value, size);
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
371
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
372 goto done;
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
373 }
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
374
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
375 /* iterate over all headers */
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
376
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
377 part = &r->headers_in.headers.part;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
378 h = part->elts;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
379
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
380 for (i = 0; /* void */ ; i++) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
381
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
382 if (i >= part->nelts) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
383 if (part->next == NULL) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
384 break;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
385 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
386
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
387 part = part->next;
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
388 h = part->elts;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
389 i = 0;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
390 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
391
667
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
392 if (len != h[i].key.len
63a820b0bc6c nginx-0.3.55-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 633
diff changeset
393 || ngx_strcasecmp(p, h[i].key.data) != 0)
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
394 {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
395 continue;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
396 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
397
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
398 ngx_http_perl_set_targ(h[i].value.data, h[i].value.len);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
399
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
400 goto done;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
401 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
402
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
403 XSRETURN_UNDEF;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
404
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
405 done:
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
406
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
407 ST(0) = TARG;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
408
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
409
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
410 void
681
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
411 has_request_body(r, next)
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
412 CODE:
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
413
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
414 dXSTARG;
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
415 ngx_http_request_t *r;
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
416 ngx_http_perl_ctx_t *ctx;
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
417 ngx_int_t rc;
681
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
418
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
419 ngx_http_perl_set_request(r, ctx);
681
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
420
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
421 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
422 croak("has_request_body(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
423 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
424
7527
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
425 if (ctx->next) {
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
426 croak("has_request_body(): another handler active");
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
427 }
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
428
5181
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
429 if (r->headers_in.content_length_n <= 0 && !r->headers_in.chunked) {
681
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
430 XSRETURN_UNDEF;
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
431 }
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
432
909
f01e6664f9be fix $r->has_request_body()
Igor Sysoev <igor@sysoev.ru>
parents: 907
diff changeset
433 ctx->next = SvRV(ST(1));
681
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
434
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
435 r->request_body_in_single_buf = 1;
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
436 r->request_body_in_persistent_file = 1;
1075
4d203f76b757 undo "client_body_in_file_only any"
Igor Sysoev <igor@sysoev.ru>
parents: 1056
diff changeset
437 r->request_body_in_clean_file = 1;
681
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
438
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
439 if (r->request_body_in_file_only) {
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
440 r->request_body_file_log_level = 0;
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
441 }
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
442
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
443 rc = ngx_http_read_client_request_body(r, ngx_http_perl_handle_request);
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
444
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
445 if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
446 ctx->error = 1;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
447 ctx->status = rc;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
448 ctx->next = NULL;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
449 croak("ngx_http_read_client_request_body() failed");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
450 }
681
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
451
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
452 sv_upgrade(TARG, SVt_IV);
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
453 sv_setiv(TARG, 1);
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
454
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
455 ST(0) = TARG;
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
456
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
457
7e24168b0853 nginx-0.4.0-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 673
diff changeset
458 void
631
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
459 request_body(r)
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
460 CODE:
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
461
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
462 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
463 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
464 ngx_http_perl_ctx_t *ctx;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
465 u_char *p, *data;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
466 size_t len;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
467 ngx_buf_t *buf;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
468 ngx_chain_t *cl;
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
469
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
470 ngx_http_perl_set_request(r, ctx);
631
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
471
941
97489c43e755 fix segfault
Igor Sysoev <igor@sysoev.ru>
parents: 915
diff changeset
472 if (r->request_body == NULL
97489c43e755 fix segfault
Igor Sysoev <igor@sysoev.ru>
parents: 915
diff changeset
473 || r->request_body->temp_file
97489c43e755 fix segfault
Igor Sysoev <igor@sysoev.ru>
parents: 915
diff changeset
474 || r->request_body->bufs == NULL)
97489c43e755 fix segfault
Igor Sysoev <igor@sysoev.ru>
parents: 915
diff changeset
475 {
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
476 XSRETURN_UNDEF;
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
477 }
631
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
478
5181
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
479 cl = r->request_body->bufs;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
480 buf = cl->buf;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
481
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
482 if (cl->next == NULL) {
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
483 len = buf->last - buf->pos;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
484 data = buf->pos;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
485 goto done;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
486 }
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
487
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
488 len = buf->last - buf->pos;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
489 cl = cl->next;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
490
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
491 for ( /* void */ ; cl; cl = cl->next) {
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
492 buf = cl->buf;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
493 len += buf->last - buf->pos;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
494 }
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
495
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
496 p = ngx_pnalloc(r->pool, len);
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
497 if (p == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
498 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
499 croak("ngx_pnalloc() failed");
5181
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
500 }
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
501
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
502 data = p;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
503 cl = r->request_body->bufs;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
504
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
505 for ( /* void */ ; cl; cl = cl->next) {
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
506 buf = cl->buf;
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
507 p = ngx_cpymem(p, buf->pos, buf->last - buf->pos);
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
508 }
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
509
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
510 done:
631
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
511
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
512 if (len == 0) {
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
513 XSRETURN_UNDEF;
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
514 }
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
515
5181
4d0ac175f6e4 Perl: request body handling fixed.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4644
diff changeset
516 ngx_http_perl_set_targ(data, len);
631
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
517
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
518 ST(0) = TARG;
631
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
519
5d2b8078c1c2 nginx-0.3.37-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 629
diff changeset
520
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
521 void
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
522 request_body_file(r)
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
523 CODE:
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
524
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
525 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
526 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
527 ngx_http_perl_ctx_t *ctx;
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
528
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
529 ngx_http_perl_set_request(r, ctx);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
530
941
97489c43e755 fix segfault
Igor Sysoev <igor@sysoev.ru>
parents: 915
diff changeset
531 if (r->request_body == NULL || r->request_body->temp_file == NULL) {
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
532 XSRETURN_UNDEF;
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
533 }
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
534
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
535 ngx_http_perl_set_targ(r->request_body->temp_file->file.name.data,
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
536 r->request_body->temp_file->file.name.len);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
537
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
538 ST(0) = TARG;
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
539
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
540
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
541 void
1371
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
542 discard_request_body(r)
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
543 CODE:
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
544
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
545 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
546 ngx_http_perl_ctx_t *ctx;
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
547 ngx_int_t rc;
1371
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
548
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
549 ngx_http_perl_set_request(r, ctx);
1371
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
550
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
551 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
552 croak("discard_request_body(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
553 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
554
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
555 rc = ngx_http_discard_request_body(r);
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
556
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
557 if (rc != NGX_OK) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
558 ctx->error = 1;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
559 ctx->status = rc;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
560 croak("ngx_http_discard_request_body() failed");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
561 }
1371
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
562
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
563
7dbdf47cdcba $r->discard_request_body
Igor Sysoev <igor@sysoev.ru>
parents: 1178
diff changeset
564 void
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
565 header_out(r, key, value)
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
566 CODE:
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
567
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
568 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
569 ngx_http_perl_ctx_t *ctx;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
570 SV *key;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
571 SV *value;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
572 ngx_table_elt_t *header;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
573
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
574 ngx_http_perl_set_request(r, ctx);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
575
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
576 if (ctx->error) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
577 croak("header_out(): called after error");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
578 }
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
579
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
580 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
581 croak("header_out(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
582 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
583
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
584 key = ST(1);
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
585 value = ST(2);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
586
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
587 header = ngx_list_push(&r->headers_out.headers);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
588 if (header == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
589 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
590 croak("ngx_list_push() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
591 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
592
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
593 header->hash = 1;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
594
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
595 if (ngx_http_perl_sv2str(aTHX_ r, &header->key, key) != NGX_OK) {
6986
0cdee26605f3 Cleaned up r->headers_out.headers allocation error handling.
Sergey Kandaurov <pluknet@nginx.com>
parents: 6960
diff changeset
596 header->hash = 0;
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
597 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
598 croak("ngx_http_perl_sv2str() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
599 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
600
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
601 if (ngx_http_perl_sv2str(aTHX_ r, &header->value, value) != NGX_OK) {
6986
0cdee26605f3 Cleaned up r->headers_out.headers allocation error handling.
Sergey Kandaurov <pluknet@nginx.com>
parents: 6960
diff changeset
602 header->hash = 0;
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
603 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
604 croak("ngx_http_perl_sv2str() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
605 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
606
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
607 if (header->key.len == sizeof("Content-Length") - 1
3870
8cd7594916ec fix warnings
Igor Sysoev <igor@sysoev.ru>
parents: 3500
diff changeset
608 && ngx_strncasecmp(header->key.data, (u_char *) "Content-Length",
741
63a08390a8a2 $r->headers_out("Content-Length", "NNN") did not work
Igor Sysoev <igor@sysoev.ru>
parents: 681
diff changeset
609 sizeof("Content-Length") - 1) == 0)
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
610 {
741
63a08390a8a2 $r->headers_out("Content-Length", "NNN") did not work
Igor Sysoev <igor@sysoev.ru>
parents: 681
diff changeset
611 r->headers_out.content_length_n = (off_t) SvIV(value);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
612 r->headers_out.content_length = header;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
613 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
614
4196
190ae1a7f917 Handling of Content-Encoding set from perl.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4188
diff changeset
615 if (header->key.len == sizeof("Content-Encoding") - 1
4644
95763fce86a8 Fixed warning during nginx.xs compilation.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4494
diff changeset
616 && ngx_strncasecmp(header->key.data, (u_char *) "Content-Encoding",
4196
190ae1a7f917 Handling of Content-Encoding set from perl.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4188
diff changeset
617 sizeof("Content-Encoding") - 1) == 0)
190ae1a7f917 Handling of Content-Encoding set from perl.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4188
diff changeset
618 {
190ae1a7f917 Handling of Content-Encoding set from perl.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4188
diff changeset
619 r->headers_out.content_encoding = header;
190ae1a7f917 Handling of Content-Encoding set from perl.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4188
diff changeset
620 }
190ae1a7f917 Handling of Content-Encoding set from perl.
Maxim Dounin <mdounin@mdounin.ru>
parents: 4188
diff changeset
621
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
622
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
623 void
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
624 filename(r)
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
625 CODE:
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
626
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
627 dXSTARG;
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
628 ngx_http_request_t *r;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
629 ngx_http_perl_ctx_t *ctx;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
630 size_t root;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
631
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
632 ngx_http_perl_set_request(r, ctx);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
633
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
634 if (ctx->filename.data) {
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
635 goto done;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
636 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
637
774
589841f06b87 previous commit broke two modules
Igor Sysoev <igor@sysoev.ru>
parents: 741
diff changeset
638 if (ngx_http_map_uri_to_path(r, &ctx->filename, &root, 0) == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
639 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
640 croak("ngx_http_map_uri_to_path() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
641 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
642
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
643 ctx->filename.len--;
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
644 sv_setpv(PL_statname, (char *) ctx->filename.data);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
645
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
646 done:
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
647
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
648 ngx_http_perl_set_targ(ctx->filename.data, ctx->filename.len);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
649
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
650 ST(0) = TARG;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
651
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
652
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
653 void
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
654 print(r, ...)
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
655 CODE:
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
656
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
657 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
658 ngx_http_perl_ctx_t *ctx;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
659 SV *sv;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
660 int i;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
661 u_char *p;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
662 size_t size;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
663 STRLEN len;
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
664 ngx_int_t rc;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
665 ngx_buf_t *b;
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
666
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
667 ngx_http_perl_set_request(r, ctx);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
668
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
669 if (ctx->error) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
670 croak("print(): called after error");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
671 }
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
672
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
673 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
674 croak("print(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
675 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
676
7531
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
677 if (!ctx->header_sent) {
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
678 croak("print(): header not sent");
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
679 }
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
680
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
681 if (items == 2) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
682
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
683 /*
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
684 * do zero copy for prolate single read-only SV:
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
685 * $r->print("some text\n");
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
686 */
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
687
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
688 sv = ST(1);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
689
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
690 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PV) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
691 sv = SvRV(sv);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
692 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
693
1703
43747661804d *) copy regex captures $1, $2, etc.
Igor Sysoev <igor@sysoev.ru>
parents: 1565
diff changeset
694 if (SvREADONLY(sv) && SvPOK(sv)) {
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
695
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
696 p = (u_char *) SvPV(sv, len);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
697
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
698 if (len == 0) {
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
699 XSRETURN_EMPTY;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
700 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
701
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
702 b = ngx_calloc_buf(r->pool);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
703 if (b == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
704 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
705 croak("ngx_calloc_buf() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
706 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
707
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
708 b->memory = 1;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
709 b->pos = p;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
710 b->last = p + len;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
711 b->start = p;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
712 b->end = b->last;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
713
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
714 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
715 "$r->print: read-only SV: %z", len);
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
716
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
717 goto out;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
718 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
719 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
720
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
721 size = 0;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
722
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
723 for (i = 1; i < items; i++) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
724
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
725 sv = ST(i);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
726
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
727 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PV) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
728 sv = SvRV(sv);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
729 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
730
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
731 (void) SvPV(sv, len);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
732
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
733 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
734 "$r->print: copy SV: %z", len);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
735
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
736 size += len;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
737 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
738
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
739 if (size == 0) {
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
740 XSRETURN_EMPTY;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
741 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
742
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
743 b = ngx_create_temp_buf(r->pool, size);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
744 if (b == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
745 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
746 croak("ngx_create_temp_buf() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
747 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
748
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
749 for (i = 1; i < items; i++) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
750 sv = ST(i);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
751
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
752 if (SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PV) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
753 sv = SvRV(sv);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
754 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
755
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
756 p = (u_char *) SvPV(sv, len);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
757 b->last = ngx_cpymem(b->last, p, len);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
758 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
759
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
760 out:
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
761
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
762 rc = ngx_http_perl_output(r, ctx, b);
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
763
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
764 if (rc == NGX_ERROR) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
765 ctx->error = 1;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
766 croak("ngx_http_perl_output() failed");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
767 }
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
768
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
769
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
770 void
613
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
771 sendfile(r, filename, offset = -1, bytes = 0)
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
772 CODE:
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
773
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
774 ngx_http_request_t *r;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
775 ngx_http_perl_ctx_t *ctx;
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
776 char *filename;
2794
92bd6afe8d9c use off_t in $r->sendfile(), this allows to use 64-bit off_t on platforms
Igor Sysoev <igor@sysoev.ru>
parents: 2756
diff changeset
777 off_t offset;
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
778 size_t bytes;
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
779 ngx_int_t rc;
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
780 ngx_str_t path;
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
781 ngx_buf_t *b;
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
782 ngx_open_file_info_t of;
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
783 ngx_http_core_loc_conf_t *clcf;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
784
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
785 ngx_http_perl_set_request(r, ctx);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
786
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
787 if (ctx->error) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
788 croak("sendfile(): called after error");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
789 }
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
790
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
791 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
792 croak("sendfile(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
793 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
794
7531
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
795 if (!ctx->header_sent) {
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
796 croak("sendfile(): header not sent");
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
797 }
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
798
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
799 filename = SvPV_nolen(ST(1));
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
800
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
801 if (filename == NULL) {
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
802 croak("sendfile(): NULL filename");
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
803 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
804
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
805 offset = items < 3 ? -1 : SvIV(ST(2));
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
806 bytes = items < 4 ? 0 : SvIV(ST(3));
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
807
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
808 b = ngx_calloc_buf(r->pool);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
809 if (b == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
810 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
811 croak("ngx_calloc_buf() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
812 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
813
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
814 b->file = ngx_pcalloc(r->pool, sizeof(ngx_file_t));
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
815 if (b->file == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
816 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
817 croak("ngx_pcalloc() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
818 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
819
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
820 path.len = ngx_strlen(filename);
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
821
2061
b0a1c84725cf change useless ngx_pcalloc() to ngx_pnalloc()
Igor Sysoev <igor@sysoev.ru>
parents: 2049
diff changeset
822 path.data = ngx_pnalloc(r->pool, path.len + 1);
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
823 if (path.data == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
824 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
825 croak("ngx_pnalloc() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
826 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
827
3870
8cd7594916ec fix warnings
Igor Sysoev <igor@sysoev.ru>
parents: 3500
diff changeset
828 (void) ngx_cpystrn(path.data, (u_char *) filename, path.len + 1);
1560
25ee6eee7573 style fix: remove trailing spaces
Igor Sysoev <igor@sysoev.ru>
parents: 1457
diff changeset
829
2063
67a29af877ed initialize of.uniq in ngx_open_cached_file()
Igor Sysoev <igor@sysoev.ru>
parents: 2061
diff changeset
830 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
67a29af877ed initialize of.uniq in ngx_open_cached_file()
Igor Sysoev <igor@sysoev.ru>
parents: 2061
diff changeset
831
2068
75a8d34459c5 ngx_memzero() ngx_open_file_info_t
Igor Sysoev <igor@sysoev.ru>
parents: 2063
diff changeset
832 ngx_memzero(&of, sizeof(ngx_open_file_info_t));
75a8d34459c5 ngx_memzero() ngx_open_file_info_t
Igor Sysoev <igor@sysoev.ru>
parents: 2063
diff changeset
833
3178
975f0558aab3 read_ahead
Igor Sysoev <igor@sysoev.ru>
parents: 2794
diff changeset
834 of.read_ahead = clcf->read_ahead;
2129
25add486e7aa directio
Igor Sysoev <igor@sysoev.ru>
parents: 2068
diff changeset
835 of.directio = clcf->directio;
2063
67a29af877ed initialize of.uniq in ngx_open_cached_file()
Igor Sysoev <igor@sysoev.ru>
parents: 2061
diff changeset
836 of.valid = clcf->open_file_cache_valid;
67a29af877ed initialize of.uniq in ngx_open_cached_file()
Igor Sysoev <igor@sysoev.ru>
parents: 2061
diff changeset
837 of.min_uses = clcf->open_file_cache_min_uses;
67a29af877ed initialize of.uniq in ngx_open_cached_file()
Igor Sysoev <igor@sysoev.ru>
parents: 2061
diff changeset
838 of.errors = clcf->open_file_cache_errors;
67a29af877ed initialize of.uniq in ngx_open_cached_file()
Igor Sysoev <igor@sysoev.ru>
parents: 2061
diff changeset
839 of.events = clcf->open_file_cache_events;
4494
13e09cf11d4e Disable symlinks: initialization of the "disable_symlinks" field in
Valentin Bartenev <vbart@nginx.com>
parents: 4478
diff changeset
840
13e09cf11d4e Disable symlinks: initialization of the "disable_symlinks" field in
Valentin Bartenev <vbart@nginx.com>
parents: 4478
diff changeset
841 if (ngx_http_set_disable_symlinks(r, clcf, &path, &of) != NGX_OK) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
842 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
843 croak("ngx_http_set_disable_symlinks() failed");
4494
13e09cf11d4e Disable symlinks: initialization of the "disable_symlinks" field in
Valentin Bartenev <vbart@nginx.com>
parents: 4478
diff changeset
844 }
2063
67a29af877ed initialize of.uniq in ngx_open_cached_file()
Igor Sysoev <igor@sysoev.ru>
parents: 2061
diff changeset
845
1799
0b5b94805d26 optimization
Igor Sysoev <igor@sysoev.ru>
parents: 1772
diff changeset
846 if (ngx_open_cached_file(clcf->open_file_cache, &path, &of, r->pool)
0b5b94805d26 optimization
Igor Sysoev <igor@sysoev.ru>
parents: 1772
diff changeset
847 != NGX_OK)
0b5b94805d26 optimization
Igor Sysoev <igor@sysoev.ru>
parents: 1772
diff changeset
848 {
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
849 if (of.err == 0) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
850 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
851 croak("ngx_open_cached_file() failed");
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
852 }
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
853
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
854 ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
2756
09cab3f8d92e *) of.test_only to not open file if only stat() is enough
Igor Sysoev <igor@sysoev.ru>
parents: 2231
diff changeset
855 "%s \"%s\" failed", of.failed, filename);
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
856
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
857 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
858 croak("ngx_open_cached_file() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
859 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
860
613
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
861 if (offset == -1) {
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
862 offset = 0;
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
863 }
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
864
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
865 if (bytes == 0) {
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
866 bytes = of.size - offset;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
867 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
868
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
869 b->in_file = 1;
613
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
870
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
871 b->file_pos = offset;
c73c5c58c619 nginx-0.3.28-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 603
diff changeset
872 b->file_last = offset + bytes;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
873
1454
f497ed7682a7 open_file_cache in HTTP
Igor Sysoev <igor@sysoev.ru>
parents: 1444
diff changeset
874 b->file->fd = of.fd;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
875 b->file->log = r->connection->log;
2231
8564129d49b6 *) handle unaligned file part for directio
Igor Sysoev <igor@sysoev.ru>
parents: 2136
diff changeset
876 b->file->directio = of.is_directio;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
877
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
878 rc = ngx_http_perl_output(r, ctx, b);
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
879
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
880 if (rc == NGX_ERROR) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
881 ctx->error = 1;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
882 croak("ngx_http_perl_output() failed");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
883 }
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
884
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
885
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
886 void
1178
a77f6980de50 rename $r->rflush to $r->flush
Igor Sysoev <igor@sysoev.ru>
parents: 1075
diff changeset
887 flush(r)
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
888 CODE:
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
889
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
890 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
891 ngx_http_perl_ctx_t *ctx;
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
892 ngx_int_t rc;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
893 ngx_buf_t *b;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
894
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
895 ngx_http_perl_set_request(r, ctx);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
896
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
897 if (ctx->error) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
898 croak("flush(): called after error");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
899 }
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
900
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
901 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
902 croak("flush(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
903 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
904
7531
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
905 if (!ctx->header_sent) {
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
906 croak("flush(): header not sent");
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
907 }
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
908
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
909 b = ngx_calloc_buf(r->pool);
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
910 if (b == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
911 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
912 croak("ngx_calloc_buf() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
913 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
914
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
915 b->flush = 1;
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
916
1178
a77f6980de50 rename $r->rflush to $r->flush
Igor Sysoev <igor@sysoev.ru>
parents: 1075
diff changeset
917 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "$r->flush");
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
918
7525
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
919 rc = ngx_http_perl_output(r, ctx, b);
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
920
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
921 if (rc == NGX_ERROR) {
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
922 ctx->error = 1;
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
923 croak("ngx_http_perl_output() failed");
575480d3fd01 Perl: propagate errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7524
diff changeset
924 }
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
925
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
926 XSRETURN_EMPTY;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
927
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
928
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
929 void
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
930 internal_redirect(r, uri)
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
931 CODE:
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
932
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
933 ngx_http_request_t *r;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
934 ngx_http_perl_ctx_t *ctx;
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
935 SV *uri;
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
936
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
937 ngx_http_perl_set_request(r, ctx);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
938
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
939 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
940 croak("internal_redirect(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
941 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
942
7531
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
943 if (ctx->header_sent) {
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
944 croak("internal_redirect(): header already sent");
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
945 }
ede052c67512 Perl: additional ctx->header_sent checks.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7530
diff changeset
946
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
947 uri = ST(1);
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
948
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
949 if (ngx_http_perl_sv2str(aTHX_ r, &ctx->redirect_uri, uri) != NGX_OK) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
950 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
951 croak("ngx_http_perl_sv2str() failed");
599
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
952 }
869b6444d234 nginx-0.3.21-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents:
diff changeset
953
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
954
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
955 void
811
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
956 allow_ranges(r)
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
957 CODE:
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
958
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
959 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
960 ngx_http_perl_ctx_t *ctx;
811
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
961
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
962 ngx_http_perl_set_request(r, ctx);
811
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
963
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
964 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
965 croak("allow_ranges(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
966 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
967
811
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
968 r->allow_ranges = 1;
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
969
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
970
35454083769f $r->allow_ranges
Igor Sysoev <igor@sysoev.ru>
parents: 774
diff changeset
971 void
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
972 unescape(r, text, type = 0)
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
973 CODE:
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
974
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
975 dXSTARG;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
976 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
977 ngx_http_perl_ctx_t *ctx;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
978 SV *text;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
979 int type;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
980 u_char *p, *dst, *src;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
981 STRLEN len;
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
982
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
983 ngx_http_perl_set_request(r, ctx);
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
984
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
985 text = ST(1);
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
986
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
987 src = (u_char *) SvPV(text, len);
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
988
2049
2a92804f4109 *) back out r2040
Igor Sysoev <igor@sysoev.ru>
parents: 1898
diff changeset
989 p = ngx_pnalloc(r->pool, len + 1);
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
990 if (p == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
991 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
992 croak("ngx_pnalloc() failed");
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
993 }
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
994
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
995 dst = p;
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
996
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
997 type = items < 3 ? 0 : SvIV(ST(2));
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
998
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
999 ngx_unescape_uri(&dst, &src, len, (ngx_uint_t) type);
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
1000 *dst = '\0';
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
1001
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
1002 ngx_http_perl_set_targ(p, dst - p);
601
77f77f53214a nginx-0.3.22-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 599
diff changeset
1003
633
f971949ffb58 nginx-0.3.38-RELEASE import
Igor Sysoev <igor@sysoev.ru>
parents: 631
diff changeset
1004 ST(0) = TARG;
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1005
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1006
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1007 void
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1008 variable(r, name, value = NULL)
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1009 CODE:
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1010
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1011 dXSTARG;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1012 ngx_http_request_t *r;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1013 ngx_http_perl_ctx_t *ctx;
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1014 SV *name, *value;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1015 u_char *p, *lowcase;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1016 STRLEN len;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1017 ngx_str_t var, val;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1018 ngx_uint_t i, hash;
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1019 ngx_http_perl_var_t *v;
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1020 ngx_http_variable_value_t *vv;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1021
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1022 ngx_http_perl_set_request(r, ctx);
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1023
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1024 name = ST(1);
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1025
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1026 if (SvROK(name) && SvTYPE(SvRV(name)) == SVt_PV) {
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1027 name = SvRV(name);
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1028 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1029
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1030 if (items == 2) {
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1031 value = NULL;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1032
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1033 } else {
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1034 value = ST(2);
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1035
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1036 if (SvROK(value) && SvTYPE(SvRV(value)) == SVt_PV) {
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1037 value = SvRV(value);
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1038 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1039
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1040 if (ngx_http_perl_sv2str(aTHX_ r, &val, value) != NGX_OK) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1041 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1042 croak("ngx_http_perl_sv2str() failed");
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1043 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1044 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1045
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1046 p = (u_char *) SvPV(name, len);
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1047
2049
2a92804f4109 *) back out r2040
Igor Sysoev <igor@sysoev.ru>
parents: 1898
diff changeset
1048 lowcase = ngx_pnalloc(r->pool, len);
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1049 if (lowcase == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1050 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1051 croak("ngx_pnalloc() failed");
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1052 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1053
2136
7a7c9e9024dd ngx_hash_strlow()
Igor Sysoev <igor@sysoev.ru>
parents: 2129
diff changeset
1054 hash = ngx_hash_strlow(lowcase, p, len);
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1055
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1056 var.len = len;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1057 var.data = lowcase;
5306
43900b822890 Perl: fixed syntax usage for C preprocessor directives.
Sergey Kandaurov <pluknet@nginx.com>
parents: 5248
diff changeset
1058 #if (NGX_DEBUG)
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1059
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1060 if (value) {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1061 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1062 "perl variable: \"%V\"=\"%V\"", &var, &val);
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1063 } else {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1064 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1065 "perl variable: \"%V\"", &var);
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1066 }
5306
43900b822890 Perl: fixed syntax usage for C preprocessor directives.
Sergey Kandaurov <pluknet@nginx.com>
parents: 5248
diff changeset
1067 #endif
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1068
3500
0eb46e3c5c02 change processing variables accessed by SSI and perl module:
Igor Sysoev <igor@sysoev.ru>
parents: 3447
diff changeset
1069 vv = ngx_http_get_variable(r, &var, hash);
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1070 if (vv == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1071 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1072 croak("ngx_http_get_variable() failed");
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1073 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1074
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1075 if (vv->not_found) {
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1076
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1077 if (ctx->variables) {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1078
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1079 v = ctx->variables->elts;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1080 for (i = 0; i < ctx->variables->nelts; i++) {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1081
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1082 if (hash != v[i].hash
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1083 || len != v[i].name.len
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1084 || ngx_strncmp(lowcase, v[i].name.data, len) != 0)
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1085 {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1086 continue;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1087 }
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1088
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1089 if (value) {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1090 v[i].value = val;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1091 XSRETURN_UNDEF;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1092 }
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1093
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
1094 ngx_http_perl_set_targ(v[i].value.data, v[i].value.len);
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1095
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1096 goto done;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1097 }
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1098 }
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1099
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1100 if (value) {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1101 if (ctx->variables == NULL) {
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1102 ctx->variables = ngx_array_create(r->pool, 1,
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1103 sizeof(ngx_http_perl_var_t));
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1104 if (ctx->variables == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1105 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1106 croak("ngx_array_create() failed");
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1107 }
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1108 }
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1109
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1110 v = ngx_array_push(ctx->variables);
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1111 if (v == NULL) {
7526
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1112 ctx->error = 1;
8125552a10ca Perl: handling of allocation errors.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7525
diff changeset
1113 croak("ngx_array_push() failed");
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1114 }
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1115
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1116 v->hash = hash;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1117 v->name.len = len;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1118 v->name.data = lowcase;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1119 v->value = val;
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1120
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1121 XSRETURN_UNDEF;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1122 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1123
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1124 XSRETURN_UNDEF;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1125 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1126
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1127 if (value) {
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1128 vv->len = val.len;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1129 vv->valid = 1;
1565
4c43e25d11ea fix English grammar
Igor Sysoev <igor@sysoev.ru>
parents: 1560
diff changeset
1130 vv->no_cacheable = 0;
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1131 vv->not_found = 0;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1132 vv->data = val.data;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1133
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1134 XSRETURN_UNDEF;
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1135 }
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1136
1739
5b7baef2e11e copy return values to perl's allocated memory
Igor Sysoev <igor@sysoev.ru>
parents: 1703
diff changeset
1137 ngx_http_perl_set_targ(vv->data, vv->len);
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1138
912
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1139 done:
7fa926a7926d $r->variable() supports perl only variables
Igor Sysoev <igor@sysoev.ru>
parents: 911
diff changeset
1140
833
dbc6819acfcc $r->variable
Igor Sysoev <igor@sysoev.ru>
parents: 811
diff changeset
1141 ST(0) = TARG;
907
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1142
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1143
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1144 void
911
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1145 sleep(r, sleep, next)
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1146 CODE:
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1147
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1148 ngx_http_request_t *r;
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1149 ngx_http_perl_ctx_t *ctx;
1897
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1150 ngx_msec_t sleep;
911
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1151
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1152 ngx_http_perl_set_request(r, ctx);
911
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1153
7528
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
1154 if (ctx->variable) {
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
1155 croak("sleep(): cannot be used in variable handler");
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
1156 }
0cb693b4cbbb Perl: disabled unrelated calls from variable handlers.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7527
diff changeset
1157
7527
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
1158 if (ctx->next) {
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
1159 croak("sleep(): another handler active");
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
1160 }
02cd116ebe2a Perl: protection against duplicate $r->sleep() calls.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7526
diff changeset
1161
1898
9a73235ce453 fix previous commit
Igor Sysoev <igor@sysoev.ru>
parents: 1897
diff changeset
1162 sleep = (ngx_msec_t) SvIV(ST(1));
1897
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1163
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1164 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1165 "perl sleep: %M", sleep);
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1166
911
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1167 ctx->next = SvRV(ST(2));
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1168
6960
1c5e5e5b008d Perl: fixed delaying subrequests.
Maxim Dounin <mdounin@mdounin.ru>
parents: 6233
diff changeset
1169 r->connection->write->delayed = 1;
1897
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1170 ngx_add_timer(r->connection->write, sleep);
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1171
b43f244d0430 optimize $r->sleep
Igor Sysoev <igor@sysoev.ru>
parents: 1895
diff changeset
1172 r->write_event_handler = ngx_http_perl_sleep_handler;
3447
de70f912ad58 fix request counter for $r->sleep(), the bug was introduced in r3050
Igor Sysoev <igor@sysoev.ru>
parents: 3317
diff changeset
1173 r->main->count++;
911
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1174
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1175
73c66ed9a9cd $r->sleep()
Igor Sysoev <igor@sysoev.ru>
parents: 910
diff changeset
1176 void
907
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1177 log_error(r, err, msg)
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1178 CODE:
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1179
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1180 ngx_http_request_t *r;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1181 ngx_http_perl_ctx_t *ctx;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1182 SV *err, *msg;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1183 u_char *p;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1184 STRLEN len;
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1185 ngx_err_t e;
907
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1186
7524
deebe988cbd7 Perl: reworked perl module to pass ctx instead of request.
Maxim Dounin <mdounin@mdounin.ru>
parents: 7516
diff changeset
1187 ngx_http_perl_set_request(r, ctx);
907
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1188
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1189 err = ST(1);
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1190
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1191 if (SvROK(err) && SvTYPE(SvRV(err)) == SVt_PV) {
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1192 err = SvRV(err);
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1193 }
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1194
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1195 e = SvIV(err);
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1196
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1197 msg = ST(2);
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1198
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1199 if (SvROK(msg) && SvTYPE(SvRV(msg)) == SVt_PV) {
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1200 msg = SvRV(msg);
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1201 }
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1202
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1203 p = (u_char *) SvPV(msg, len);
424636f52f44 $r->log_error()
Igor Sysoev <igor@sysoev.ru>
parents: 882
diff changeset
1204
910
918e19c51a65 style fix
Igor Sysoev <igor@sysoev.ru>
parents: 909
diff changeset
1205 ngx_log_error(NGX_LOG_ERR, r->connection->log, e, "perl: %s", p);