]> granicus.if.org Git - apache/blob - server/util_script.c
Merge of 1761434,1761477 from trunk:
[apache] / server / util_script.c
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "apr.h"
18 #include "apr_lib.h"
19 #include "apr_strings.h"
20
21 #define APR_WANT_STRFUNC
22 #include "apr_want.h"
23
24 #if APR_HAVE_STDLIB_H
25 #include <stdlib.h>
26 #endif
27
28 #include "ap_config.h"
29 #include "httpd.h"
30 #include "http_config.h"
31 #include "http_main.h"
32 #include "http_log.h"
33 #include "http_core.h"
34 #include "http_protocol.h"
35 #include "http_request.h"       /* for sub_req_lookup_uri() */
36 #include "util_script.h"
37 #include "apr_date.h"           /* For apr_date_parse_http() */
38 #include "util_ebcdic.h"
39
40 #ifdef OS2
41 #define INCL_DOS
42 #include <os2.h>
43 #endif
44
45 /*
46  * Various utility functions which are common to a whole lot of
47  * script-type extensions mechanisms, and might as well be gathered
48  * in one place (if only to avoid creating inter-module dependancies
49  * where there don't have to be).
50  */
51
52 /* we know core's module_index is 0 */
53 #undef APLOG_MODULE_INDEX
54 #define APLOG_MODULE_INDEX AP_CORE_MODULE_INDEX
55
56 static char *http2env(request_rec *r, const char *w)
57 {
58     char *res = (char *)apr_palloc(r->pool, sizeof("HTTP_") + strlen(w));
59     char *cp = res;
60     char c;
61
62     *cp++ = 'H';
63     *cp++ = 'T';
64     *cp++ = 'T';
65     *cp++ = 'P';
66     *cp++ = '_';
67
68     while ((c = *w++) != 0) {
69         if (apr_isalnum(c)) {
70             *cp++ = apr_toupper(c);
71         }
72         else if (c == '-') {
73             *cp++ = '_';
74         }
75         else {
76             if (APLOGrtrace1(r))
77                 ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r,
78                             "Not exporting header with invalid name as envvar: %s",
79                             ap_escape_logitem(r->pool, w));
80             return NULL;
81         }
82     }
83     *cp = 0;
84
85     return res;
86 }
87
88 static void add_unless_null(apr_table_t *table, const char *name, const char *val)
89 {
90     if (name && val) {
91         apr_table_addn(table, name, val);
92     }
93 }
94
95 static void env2env(apr_table_t *table, const char *name)
96 {
97     add_unless_null(table, name, getenv(name));
98 }
99
100 AP_DECLARE(char **) ap_create_environment(apr_pool_t *p, apr_table_t *t)
101 {
102     const apr_array_header_t *env_arr = apr_table_elts(t);
103     const apr_table_entry_t *elts = (const apr_table_entry_t *) env_arr->elts;
104     char **env = (char **) apr_palloc(p, (env_arr->nelts + 2) * sizeof(char *));
105     int i, j;
106     char *tz;
107     char *whack;
108
109     j = 0;
110     if (!apr_table_get(t, "TZ")) {
111         tz = getenv("TZ");
112         if (tz != NULL) {
113             env[j++] = apr_pstrcat(p, "TZ=", tz, NULL);
114         }
115     }
116     for (i = 0; i < env_arr->nelts; ++i) {
117         if (!elts[i].key) {
118             continue;
119         }
120         env[j] = apr_pstrcat(p, elts[i].key, "=", elts[i].val, NULL);
121         whack = env[j];
122         if (apr_isdigit(*whack)) {
123             *whack++ = '_';
124         }
125         while (*whack != '=') {
126 #ifdef WIN32
127             if (!apr_isalnum(*whack) && *whack != '(' && *whack != ')') {
128 #else
129             if (!apr_isalnum(*whack)) {
130 #endif
131                 *whack = '_';
132             }
133             ++whack;
134         }
135         ++j;
136     }
137
138     env[j] = NULL;
139     return env;
140 }
141
142 AP_DECLARE(void) ap_add_common_vars(request_rec *r)
143 {
144     apr_table_t *e;
145     server_rec *s = r->server;
146     conn_rec *c = r->connection;
147     core_dir_config *conf =
148         (core_dir_config *)ap_get_core_module_config(r->per_dir_config);
149     const char *env_temp;
150     const apr_array_header_t *hdrs_arr = apr_table_elts(r->headers_in);
151     const apr_table_entry_t *hdrs = (const apr_table_entry_t *) hdrs_arr->elts;
152     int i;
153     apr_port_t rport;
154     char *q;
155
156     /* use a temporary apr_table_t which we'll overlap onto
157      * r->subprocess_env later
158      * (exception: if r->subprocess_env is empty at the start,
159      * write directly into it)
160      */
161     if (apr_is_empty_table(r->subprocess_env)) {
162         e = r->subprocess_env;
163     }
164     else {
165         e = apr_table_make(r->pool, 25 + hdrs_arr->nelts);
166     }
167
168     /* First, add environment vars from headers... this is as per
169      * CGI specs, though other sorts of scripting interfaces see
170      * the same vars...
171      */
172
173     for (i = 0; i < hdrs_arr->nelts; ++i) {
174         if (!hdrs[i].key) {
175             continue;
176         }
177
178         /* A few headers are special cased --- Authorization to prevent
179          * rogue scripts from capturing passwords; content-type and -length
180          * for no particular reason.
181          */
182
183         if (!strcasecmp(hdrs[i].key, "Content-type")) {
184             apr_table_addn(e, "CONTENT_TYPE", hdrs[i].val);
185         }
186         else if (!strcasecmp(hdrs[i].key, "Content-length")) {
187             apr_table_addn(e, "CONTENT_LENGTH", hdrs[i].val);
188         }
189         /* HTTP_PROXY collides with a popular envvar used to configure
190          * proxies, don't let clients set/override it.  But, if you must...
191          */
192 #ifndef SECURITY_HOLE_PASS_PROXY
193         else if (!ap_cstr_casecmp(hdrs[i].key, "Proxy")) {
194             ;
195         }
196 #endif
197         /*
198          * You really don't want to disable this check, since it leaves you
199          * wide open to CGIs stealing passwords and people viewing them
200          * in the environment with "ps -e".  But, if you must...
201          */
202 #ifndef SECURITY_HOLE_PASS_AUTHORIZATION
203         else if (!strcasecmp(hdrs[i].key, "Authorization")
204                  || !strcasecmp(hdrs[i].key, "Proxy-Authorization")) {
205             if (conf->cgi_pass_auth == AP_CGI_PASS_AUTH_ON) {
206                 add_unless_null(e, http2env(r, hdrs[i].key), hdrs[i].val);
207             }
208         }
209 #endif
210         else
211             add_unless_null(e, http2env(r, hdrs[i].key), hdrs[i].val);
212     }
213
214     env_temp = apr_table_get(r->subprocess_env, "PATH");
215     if (env_temp == NULL) {
216         env_temp = getenv("PATH");
217     }
218     if (env_temp == NULL) {
219         env_temp = DEFAULT_PATH;
220     }
221     apr_table_addn(e, "PATH", apr_pstrdup(r->pool, env_temp));
222
223 #if defined(WIN32)
224     env2env(e, "SystemRoot");
225     env2env(e, "COMSPEC");
226     env2env(e, "PATHEXT");
227     env2env(e, "WINDIR");
228 #elif defined(OS2)
229     env2env(e, "COMSPEC");
230     env2env(e, "ETC");
231     env2env(e, "DPATH");
232     env2env(e, "PERLLIB_PREFIX");
233 #elif defined(BEOS)
234     env2env(e, "LIBRARY_PATH");
235 #elif defined(DARWIN)
236     env2env(e, "DYLD_LIBRARY_PATH");
237 #elif defined(_AIX)
238     env2env(e, "LIBPATH");
239 #elif defined(__HPUX__)
240     /* HPUX PARISC 2.0W knows both, otherwise redundancy is harmless */
241     env2env(e, "SHLIB_PATH");
242     env2env(e, "LD_LIBRARY_PATH");
243 #else /* Some Unix */
244     env2env(e, "LD_LIBRARY_PATH");
245 #endif
246
247     apr_table_addn(e, "SERVER_SIGNATURE", ap_psignature("", r));
248     apr_table_addn(e, "SERVER_SOFTWARE", ap_get_server_banner());
249     apr_table_addn(e, "SERVER_NAME",
250                    ap_escape_html(r->pool, ap_get_server_name_for_url(r)));
251     apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip);  /* Apache */
252     apr_table_addn(e, "SERVER_PORT",
253                   apr_psprintf(r->pool, "%u", ap_get_server_port(r)));
254     add_unless_null(e, "REMOTE_HOST",
255                     ap_get_useragent_host(r, REMOTE_HOST, NULL));
256     apr_table_addn(e, "REMOTE_ADDR", r->useragent_ip);
257     apr_table_addn(e, "DOCUMENT_ROOT", ap_document_root(r));    /* Apache */
258     apr_table_setn(e, "REQUEST_SCHEME", ap_http_scheme(r));
259     apr_table_addn(e, "CONTEXT_PREFIX", ap_context_prefix(r));
260     apr_table_addn(e, "CONTEXT_DOCUMENT_ROOT", ap_context_document_root(r));
261     apr_table_addn(e, "SERVER_ADMIN", s->server_admin); /* Apache */
262     if (apr_table_get(r->notes, "proxy-noquery") && (q = ap_strchr(r->filename, '?'))) {
263         *q = '\0';
264         apr_table_addn(e, "SCRIPT_FILENAME", apr_pstrdup(r->pool, r->filename));
265         *q = '?';
266     }
267     else {
268         apr_table_addn(e, "SCRIPT_FILENAME", r->filename);  /* Apache */
269     }
270
271     rport = c->client_addr->port;
272     apr_table_addn(e, "REMOTE_PORT", apr_itoa(r->pool, rport));
273
274     if (r->user) {
275         apr_table_addn(e, "REMOTE_USER", r->user);
276     }
277     else if (r->prev) {
278         request_rec *back = r->prev;
279
280         while (back) {
281             if (back->user) {
282                 apr_table_addn(e, "REDIRECT_REMOTE_USER", back->user);
283                 break;
284             }
285             back = back->prev;
286         }
287     }
288     add_unless_null(e, "AUTH_TYPE", r->ap_auth_type);
289     env_temp = ap_get_remote_logname(r);
290     if (env_temp) {
291         apr_table_addn(e, "REMOTE_IDENT", apr_pstrdup(r->pool, env_temp));
292     }
293
294     /* Apache custom error responses. If we have redirected set two new vars */
295
296     if (r->prev) {
297         if (conf->qualify_redirect_url != AP_CORE_CONFIG_ON) { 
298             add_unless_null(e, "REDIRECT_URL", r->prev->uri);
299         }
300         else { 
301             /* PR#57785: reconstruct full URL here */
302             apr_uri_t *uri = &r->prev->parsed_uri;
303             if (!uri->scheme) {
304                 uri->scheme = (char*)ap_http_scheme(r->prev);
305             }
306             if (!uri->port) {
307                 uri->port = ap_get_server_port(r->prev);
308                 uri->port_str = apr_psprintf(r->pool, "%u", uri->port);
309             }
310             if (!uri->hostname) {
311                 uri->hostname = (char*)ap_get_server_name_for_url(r->prev);
312             }
313             add_unless_null(e, "REDIRECT_URL",
314                             apr_uri_unparse(r->pool, uri, 0));
315         }
316         add_unless_null(e, "REDIRECT_QUERY_STRING", r->prev->args);
317     }
318
319     if (e != r->subprocess_env) {
320         apr_table_overlap(r->subprocess_env, e, APR_OVERLAP_TABLES_SET);
321     }
322 }
323
324 /* This "cute" little function comes about because the path info on
325  * filenames and URLs aren't always the same. So we take the two,
326  * and find as much of the two that match as possible.
327  */
328
329 AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info)
330 {
331     int lu = strlen(uri);
332     int lp = strlen(path_info);
333
334     while (lu-- && lp-- && uri[lu] == path_info[lp]) {
335         if (path_info[lp] == '/') {
336             while (lu && uri[lu-1] == '/') lu--;
337         }
338     }
339
340     if (lu == -1) {
341         lu = 0;
342     }
343
344     while (uri[lu] != '\0' && uri[lu] != '/') {
345         lu++;
346     }
347     return lu;
348 }
349
350 /* Obtain the Request-URI from the original request-line, returning
351  * a new string from the request pool containing the URI or "".
352  */
353 static char *original_uri(request_rec *r)
354 {
355     char *first, *last;
356
357     if (r->the_request == NULL) {
358         return (char *) apr_pcalloc(r->pool, 1);
359     }
360
361     first = r->the_request;     /* use the request-line */
362
363     while (*first && !apr_isspace(*first)) {
364         ++first;                /* skip over the method */
365     }
366     while (apr_isspace(*first)) {
367         ++first;                /*   and the space(s)   */
368     }
369
370     last = first;
371     while (*last && !apr_isspace(*last)) {
372         ++last;                 /* end at next whitespace */
373     }
374
375     return apr_pstrmemdup(r->pool, first, last - first);
376 }
377
378 AP_DECLARE(void) ap_add_cgi_vars(request_rec *r)
379 {
380     apr_table_t *e = r->subprocess_env;
381     core_dir_config *conf =
382         (core_dir_config *)ap_get_core_module_config(r->per_dir_config);
383     int request_uri_from_original = 1;
384     const char *request_uri_rule;
385
386     apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
387     apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);
388     apr_table_setn(e, "REQUEST_METHOD", r->method);
389     apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
390
391     if (conf->cgi_var_rules) {
392         request_uri_rule = apr_hash_get(conf->cgi_var_rules, "REQUEST_URI",
393                                         APR_HASH_KEY_STRING);
394         if (request_uri_rule && !strcmp(request_uri_rule, "current-uri")) {
395             request_uri_from_original = 0;
396         }
397     }
398     apr_table_setn(e, "REQUEST_URI",
399                    request_uri_from_original ? original_uri(r) : r->uri);
400
401     /* Note that the code below special-cases scripts run from includes,
402      * because it "knows" that the sub_request has been hacked to have the
403      * args and path_info of the original request, and not any that may have
404      * come with the script URI in the include command.  Ugh.
405      */
406
407     if (!strcmp(r->protocol, "INCLUDED")) {
408         apr_table_setn(e, "SCRIPT_NAME", r->uri);
409         if (r->path_info && *r->path_info) {
410             apr_table_setn(e, "PATH_INFO", r->path_info);
411         }
412     }
413     else if (!r->path_info || !*r->path_info) {
414         apr_table_setn(e, "SCRIPT_NAME", r->uri);
415     }
416     else {
417         int path_info_start = ap_find_path_info(r->uri, r->path_info);
418
419         apr_table_setn(e, "SCRIPT_NAME",
420                       apr_pstrndup(r->pool, r->uri, path_info_start));
421
422         apr_table_setn(e, "PATH_INFO", r->path_info);
423     }
424
425     if (r->path_info && r->path_info[0]) {
426         /*
427          * To get PATH_TRANSLATED, treat PATH_INFO as a URI path.
428          * Need to re-escape it for this, since the entire URI was
429          * un-escaped before we determined where the PATH_INFO began.
430          */
431         request_rec *pa_req;
432
433         pa_req = ap_sub_req_lookup_uri(ap_escape_uri(r->pool, r->path_info), r,
434                                        NULL);
435
436         if (pa_req->filename) {
437             char *pt = apr_pstrcat(r->pool, pa_req->filename, pa_req->path_info,
438                                   NULL);
439 #ifdef WIN32
440             /* We need to make this a real Windows path name */
441             apr_filepath_merge(&pt, "", pt, APR_FILEPATH_NATIVE, r->pool);
442 #endif
443             apr_table_setn(e, "PATH_TRANSLATED", pt);
444         }
445         ap_destroy_sub_req(pa_req);
446     }
447 }
448
449
450 static int set_cookie_doo_doo(void *v, const char *key, const char *val)
451 {
452     apr_table_addn(v, key, val);
453     return 1;
454 }
455
456 #define HTTP_UNSET (-HTTP_OK)
457 #define SCRIPT_LOG_MARK  __FILE__,__LINE__,module_index
458
459 AP_DECLARE(int) ap_scan_script_header_err_core_ex(request_rec *r, char *buffer,
460                                        int (*getsfunc) (char *, int, void *),
461                                        void *getsfunc_data,
462                                        int module_index)
463 {
464     char x[MAX_STRING_LEN];
465     char *w, *l;
466     int p;
467     int cgi_status = HTTP_UNSET;
468     apr_table_t *merge;
469     apr_table_t *cookie_table;
470     int trace_log = APLOG_R_MODULE_IS_LEVEL(r, module_index, APLOG_TRACE1);
471     int first_header = 1;
472
473     if (buffer) {
474         *buffer = '\0';
475     }
476     w = buffer ? buffer : x;
477
478     /* temporary place to hold headers to merge in later */
479     merge = apr_table_make(r->pool, 10);
480
481     /* The HTTP specification says that it is legal to merge duplicate
482      * headers into one.  Some browsers that support Cookies don't like
483      * merged headers and prefer that each Set-Cookie header is sent
484      * separately.  Lets humour those browsers by not merging.
485      * Oh what a pain it is.
486      */
487     cookie_table = apr_table_make(r->pool, 2);
488     apr_table_do(set_cookie_doo_doo, cookie_table, r->err_headers_out, "Set-Cookie", NULL);
489
490     while (1) {
491
492         int rv = (*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data);
493         if (rv == 0) {
494             const char *msg = "Premature end of script headers";
495             if (first_header)
496                 msg = "End of script output before headers";
497             /* Intentional no APLOGNO */
498             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
499                           "%s: %s", msg,
500                           apr_filepath_name_get(r->filename));
501             return HTTP_INTERNAL_SERVER_ERROR;
502         }
503         else if (rv == -1) {
504             /* Intentional no APLOGNO */
505             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
506                           "Script timed out before returning headers: %s",
507                           apr_filepath_name_get(r->filename));
508             return HTTP_GATEWAY_TIME_OUT;
509         }
510
511         /* Delete terminal (CR?)LF */
512
513         p = strlen(w);
514              /* Indeed, the host's '\n':
515                 '\012' for UNIX; '\015' for MacOS; '\025' for OS/390
516                  -- whatever the script generates.
517              */
518         if (p > 0 && w[p - 1] == '\n') {
519             if (p > 1 && w[p - 2] == CR) {
520                 w[p - 2] = '\0';
521             }
522             else {
523                 w[p - 1] = '\0';
524             }
525         }
526
527         /*
528          * If we've finished reading the headers, check to make sure any
529          * HTTP/1.1 conditions are met.  If so, we're done; normal processing
530          * will handle the script's output.  If not, just return the error.
531          * The appropriate thing to do would be to send the script process a
532          * SIGPIPE to let it know we're ignoring it, close the channel to the
533          * script process, and *then* return the failed-to-meet-condition
534          * error.  Otherwise we'd be waiting for the script to finish
535          * blithering before telling the client the output was no good.
536          * However, we don't have the information to do that, so we have to
537          * leave it to an upper layer.
538          */
539         if (w[0] == '\0') {
540             int cond_status = OK;
541
542             /* PR#38070: This fails because it gets confused when a
543              * CGI Status header overrides ap_meets_conditions.
544              *
545              * We can fix that by dropping ap_meets_conditions when
546              * Status has been set.  Since this is the only place
547              * cgi_status gets used, let's test it explicitly.
548              *
549              * The alternative would be to ignore CGI Status when
550              * ap_meets_conditions returns anything interesting.
551              * That would be safer wrt HTTP, but would break CGI.
552              */
553             if ((cgi_status == HTTP_UNSET) && (r->method_number == M_GET)) {
554                 cond_status = ap_meets_conditions(r);
555             }
556             apr_table_overlap(r->err_headers_out, merge,
557                 APR_OVERLAP_TABLES_MERGE);
558             if (!apr_is_empty_table(cookie_table)) {
559                 /* the cookies have already been copied to the cookie_table */
560                 apr_table_unset(r->err_headers_out, "Set-Cookie");
561                 r->err_headers_out = apr_table_overlay(r->pool,
562                     r->err_headers_out, cookie_table);
563             }
564             return cond_status;
565         }
566
567         if (trace_log) {
568             if (first_header)
569                 ap_log_rerror(SCRIPT_LOG_MARK, APLOG_TRACE4, 0, r,
570                               "Headers from script '%s':",
571                               apr_filepath_name_get(r->filename));
572             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_TRACE4, 0, r, "  %s", w);
573         }
574
575         /* if we see a bogus header don't ignore it. Shout and scream */
576
577 #if APR_CHARSET_EBCDIC
578             /* Chances are that we received an ASCII header text instead of
579              * the expected EBCDIC header lines. Try to auto-detect:
580              */
581         if (!(l = strchr(w, ':'))) {
582             int maybeASCII = 0, maybeEBCDIC = 0;
583             unsigned char *cp, native;
584             apr_size_t inbytes_left, outbytes_left;
585
586             for (cp = w; *cp != '\0'; ++cp) {
587                 native = apr_xlate_conv_byte(ap_hdrs_from_ascii, *cp);
588                 if (apr_isprint(*cp) && !apr_isprint(native))
589                     ++maybeEBCDIC;
590                 if (!apr_isprint(*cp) && apr_isprint(native))
591                     ++maybeASCII;
592             }
593             if (maybeASCII > maybeEBCDIC) {
594                 ap_log_error(SCRIPT_LOG_MARK, APLOG_ERR, 0, r->server,
595                              APLOGNO(02660) "CGI Interface Error: "
596                              "Script headers apparently ASCII: (CGI = %s)",
597                              r->filename);
598                 inbytes_left = outbytes_left = cp - w;
599                 apr_xlate_conv_buffer(ap_hdrs_from_ascii,
600                                       w, &inbytes_left, w, &outbytes_left);
601             }
602         }
603 #endif /*APR_CHARSET_EBCDIC*/
604         if (!(l = strchr(w, ':'))) {
605             if (!buffer) {
606                 /* Soak up all the script output - may save an outright kill */
607                 while ((*getsfunc)(w, MAX_STRING_LEN - 1, getsfunc_data) > 0) {
608                     continue;
609                 }
610             }
611
612             /* Intentional no APLOGNO */
613             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
614                           "malformed header from script '%s': Bad header: %.30s",
615                           apr_filepath_name_get(r->filename), w);
616             return HTTP_INTERNAL_SERVER_ERROR;
617         }
618
619         *l++ = '\0';
620         while (apr_isspace(*l)) {
621             ++l;
622         }
623
624         if (!strcasecmp(w, "Content-type")) {
625             char *tmp;
626
627             /* Nuke trailing whitespace */
628
629             char *endp = l + strlen(l) - 1;
630             while (endp > l && apr_isspace(*endp)) {
631                 *endp-- = '\0';
632             }
633
634             tmp = apr_pstrdup(r->pool, l);
635             ap_content_type_tolower(tmp);
636             ap_set_content_type(r, tmp);
637         }
638         /*
639          * If the script returned a specific status, that's what
640          * we'll use - otherwise we assume 200 OK.
641          */
642         else if (!strcasecmp(w, "Status")) {
643             r->status = cgi_status = atoi(l);
644             if (!ap_is_HTTP_VALID_RESPONSE(cgi_status))
645                 /* Intentional no APLOGNO */
646                 ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
647                               "Invalid status line from script '%s': %.30s",
648                               apr_filepath_name_get(r->filename), l);
649             else
650                 if (APLOGrtrace1(r))
651                    ap_log_rerror(SCRIPT_LOG_MARK, APLOG_TRACE1, 0, r,
652                                  "Status line from script '%s': %.30s",
653                                  apr_filepath_name_get(r->filename), l);
654             r->status_line = apr_pstrdup(r->pool, l);
655         }
656         else if (!strcasecmp(w, "Location")) {
657             apr_table_set(r->headers_out, w, l);
658         }
659         else if (!strcasecmp(w, "Content-Length")) {
660             apr_table_set(r->headers_out, w, l);
661         }
662         else if (!strcasecmp(w, "Content-Range")) {
663             apr_table_set(r->headers_out, w, l);
664         }
665         else if (!strcasecmp(w, "Transfer-Encoding")) {
666             apr_table_set(r->headers_out, w, l);
667         }
668         else if (!strcasecmp(w, "ETag")) {
669             apr_table_set(r->headers_out, w, l);
670         }
671         /*
672          * If the script gave us a Last-Modified header, we can't just
673          * pass it on blindly because of restrictions on future values.
674          */
675         else if (!strcasecmp(w, "Last-Modified")) {
676             ap_update_mtime(r, apr_date_parse_http(l));
677             ap_set_last_modified(r);
678         }
679         else if (!strcasecmp(w, "Set-Cookie")) {
680             apr_table_add(cookie_table, w, l);
681         }
682         else {
683             apr_table_add(merge, w, l);
684         }
685         first_header = 0;
686     }
687     /* never reached - we leave this function within the while loop above */
688     return OK;
689 }
690
691 AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
692                                        int (*getsfunc) (char *, int, void *),
693                                        void *getsfunc_data)
694 {
695     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc,
696                                              getsfunc_data,
697                                              APLOG_MODULE_INDEX);
698 }
699
700 static int getsfunc_FILE(char *buf, int len, void *f)
701 {
702     return apr_file_gets(buf, len, (apr_file_t *) f) == APR_SUCCESS;
703 }
704
705 AP_DECLARE(int) ap_scan_script_header_err(request_rec *r, apr_file_t *f,
706                                           char *buffer)
707 {
708     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_FILE, f,
709                                              APLOG_MODULE_INDEX);
710 }
711
712 AP_DECLARE(int) ap_scan_script_header_err_ex(request_rec *r, apr_file_t *f,
713                                           char *buffer, int module_index)
714 {
715     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_FILE, f,
716                                              module_index);
717 }
718
719
720 static int getsfunc_BRIGADE(char *buf, int len, void *arg)
721 {
722     apr_bucket_brigade *bb = (apr_bucket_brigade *)arg;
723     const char *dst_end = buf + len - 1; /* leave room for terminating null */
724     char *dst = buf;
725     apr_bucket *e = APR_BRIGADE_FIRST(bb);
726     apr_status_t rv;
727     int done = 0;
728
729     while ((dst < dst_end) && !done && e != APR_BRIGADE_SENTINEL(bb)
730            && !APR_BUCKET_IS_EOS(e)) {
731         const char *bucket_data;
732         apr_size_t bucket_data_len;
733         const char *src;
734         const char *src_end;
735         apr_bucket * next;
736
737         rv = apr_bucket_read(e, &bucket_data, &bucket_data_len,
738                              APR_BLOCK_READ);
739         if (rv != APR_SUCCESS || (bucket_data_len == 0)) {
740             *dst = '\0';
741             return APR_STATUS_IS_TIMEUP(rv) ? -1 : 0;
742         }
743         src = bucket_data;
744         src_end = bucket_data + bucket_data_len;
745         while ((src < src_end) && (dst < dst_end) && !done) {
746             if (*src == '\n') {
747                 done = 1;
748             }
749             else if (*src != '\r') {
750                 *dst++ = *src;
751             }
752             src++;
753         }
754
755         if (src < src_end) {
756             apr_bucket_split(e, src - bucket_data);
757         }
758         next = APR_BUCKET_NEXT(e);
759         apr_bucket_delete(e);
760         e = next;
761     }
762     *dst = 0;
763     return done;
764 }
765
766 AP_DECLARE(int) ap_scan_script_header_err_brigade(request_rec *r,
767                                                   apr_bucket_brigade *bb,
768                                                   char *buffer)
769 {
770     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_BRIGADE, bb,
771                                              APLOG_MODULE_INDEX);
772 }
773
774 AP_DECLARE(int) ap_scan_script_header_err_brigade_ex(request_rec *r,
775                                                      apr_bucket_brigade *bb,
776                                                      char *buffer,
777                                                      int module_index)
778 {
779     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_BRIGADE, bb,
780                                              module_index);
781 }
782
783
784 struct vastrs {
785     va_list args;
786     int arg;
787     const char *curpos;
788 };
789
790 static int getsfunc_STRING(char *w, int len, void *pvastrs)
791 {
792     struct vastrs *strs = (struct vastrs*) pvastrs;
793     const char *p;
794     int t;
795
796     if (!strs->curpos || !*strs->curpos) {
797         w[0] = '\0';
798         return 0;
799     }
800     p = ap_strchr_c(strs->curpos, '\n');
801     if (p)
802         ++p;
803     else
804         p = ap_strchr_c(strs->curpos, '\0');
805     t = p - strs->curpos;
806     if (t > len)
807         t = len;
808     strncpy (w, strs->curpos, t);
809     w[t] = '\0';
810     if (!strs->curpos[t]) {
811         ++strs->arg;
812         strs->curpos = va_arg(strs->args, const char *);
813     }
814     else
815         strs->curpos += t;
816     return t;
817 }
818
819 /* ap_scan_script_header_err_strs() accepts additional const char* args...
820  * each is treated as one or more header lines, and the first non-header
821  * character is returned to **arg, **data.  (The first optional arg is
822  * counted as 0.)
823  */
824 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs_ex(request_rec *r,
825                                                          char *buffer,
826                                                          int module_index,
827                                                          const char **termch,
828                                                          int *termarg, ...)
829 {
830     struct vastrs strs;
831     int res;
832
833     va_start(strs.args, termarg);
834     strs.arg = 0;
835     strs.curpos = va_arg(strs.args, char*);
836     res = ap_scan_script_header_err_core_ex(r, buffer, getsfunc_STRING,
837                                             (void *) &strs, module_index);
838     if (termch)
839         *termch = strs.curpos;
840     if (termarg)
841         *termarg = strs.arg;
842     va_end(strs.args);
843     return res;
844 }
845
846 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r,
847                                                       char *buffer,
848                                                       const char **termch,
849                                                       int *termarg, ...)
850 {
851     struct vastrs strs;
852     int res;
853
854     va_start(strs.args, termarg);
855     strs.arg = 0;
856     strs.curpos = va_arg(strs.args, char*);
857     res = ap_scan_script_header_err_core_ex(r, buffer, getsfunc_STRING,
858                                             (void *) &strs, APLOG_MODULE_INDEX);
859     if (termch)
860         *termch = strs.curpos;
861     if (termarg)
862         *termarg = strs.arg;
863     va_end(strs.args);
864     return res;
865 }
866
867 static void
868 argstr_to_table(char *str, apr_table_t *parms)
869 {
870     char *key;
871     char *value;
872     char *strtok_state;
873
874     if (str == NULL) {
875         return;
876     }
877
878     key = apr_strtok(str, "&", &strtok_state);
879     while (key) {
880         value = strchr(key, '=');
881         if (value) {
882             *value = '\0';      /* Split the string in two */
883             value++;            /* Skip passed the = */
884         }
885         else {
886             value = "1";
887         }
888         ap_unescape_url(key);
889         ap_unescape_url(value);
890         apr_table_set(parms, key, value);
891         key = apr_strtok(NULL, "&", &strtok_state);
892     }
893 }
894
895 AP_DECLARE(void) ap_args_to_table(request_rec *r, apr_table_t **table)
896 {
897     apr_table_t *t = apr_table_make(r->pool, 10);
898     argstr_to_table(apr_pstrdup(r->pool, r->args), t);
899     *table = t;
900 }