]> granicus.if.org Git - apache/blob - server/util_script.c
Added many log numbers to log statements that
[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 (!ap_casecmpstr(hdrs[i].key, "Content-type")) {
184             apr_table_addn(e, "CONTENT_TYPE", hdrs[i].val);
185         }
186         else if (!ap_casecmpstr(hdrs[i].key, "Content-length")) {
187             apr_table_addn(e, "CONTENT_LENGTH", hdrs[i].val);
188         }
189         /*
190          * You really don't want to disable this check, since it leaves you
191          * wide open to CGIs stealing passwords and people viewing them
192          * in the environment with "ps -e".  But, if you must...
193          */
194 #ifndef SECURITY_HOLE_PASS_AUTHORIZATION
195         else if (!ap_casecmpstr(hdrs[i].key, "Authorization")
196                  || !ap_casecmpstr(hdrs[i].key, "Proxy-Authorization")) {
197             if (conf->cgi_pass_auth == AP_CGI_PASS_AUTH_ON) {
198                 add_unless_null(e, http2env(r, hdrs[i].key), hdrs[i].val);
199             }
200         }
201 #endif
202         else
203             add_unless_null(e, http2env(r, hdrs[i].key), hdrs[i].val);
204     }
205
206     env_temp = apr_table_get(r->subprocess_env, "PATH");
207     if (env_temp == NULL) {
208         env_temp = getenv("PATH");
209     }
210     if (env_temp == NULL) {
211         env_temp = DEFAULT_PATH;
212     }
213     apr_table_addn(e, "PATH", apr_pstrdup(r->pool, env_temp));
214
215 #if defined(WIN32)
216     env2env(e, "SystemRoot");
217     env2env(e, "COMSPEC");
218     env2env(e, "PATHEXT");
219     env2env(e, "WINDIR");
220 #elif defined(OS2)
221     env2env(e, "COMSPEC");
222     env2env(e, "ETC");
223     env2env(e, "DPATH");
224     env2env(e, "PERLLIB_PREFIX");
225 #elif defined(BEOS)
226     env2env(e, "LIBRARY_PATH");
227 #elif defined(DARWIN)
228     env2env(e, "DYLD_LIBRARY_PATH");
229 #elif defined(_AIX)
230     env2env(e, "LIBPATH");
231 #elif defined(__HPUX__)
232     /* HPUX PARISC 2.0W knows both, otherwise redundancy is harmless */
233     env2env(e, "SHLIB_PATH");
234     env2env(e, "LD_LIBRARY_PATH");
235 #else /* Some Unix */
236     env2env(e, "LD_LIBRARY_PATH");
237 #endif
238
239     apr_table_addn(e, "SERVER_SIGNATURE", ap_psignature("", r));
240     apr_table_addn(e, "SERVER_SOFTWARE", ap_get_server_banner());
241     apr_table_addn(e, "SERVER_NAME",
242                    ap_escape_html(r->pool, ap_get_server_name_for_url(r)));
243     apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip);  /* Apache */
244     apr_table_addn(e, "SERVER_PORT",
245                   apr_psprintf(r->pool, "%u", ap_get_server_port(r)));
246     add_unless_null(e, "REMOTE_HOST",
247                     ap_get_remote_host(c, r->per_dir_config, REMOTE_HOST, NULL));
248     apr_table_addn(e, "REMOTE_ADDR", r->useragent_ip);
249     apr_table_addn(e, "DOCUMENT_ROOT", ap_document_root(r));    /* Apache */
250     apr_table_setn(e, "REQUEST_SCHEME", ap_http_scheme(r));
251     apr_table_addn(e, "CONTEXT_PREFIX", ap_context_prefix(r));
252     apr_table_addn(e, "CONTEXT_DOCUMENT_ROOT", ap_context_document_root(r));
253     apr_table_addn(e, "SERVER_ADMIN", s->server_admin); /* Apache */
254     if (apr_table_get(r->notes, "proxy-noquery") && (q = ap_strchr(r->filename, '?'))) {
255         *q = '\0';
256         apr_table_addn(e, "SCRIPT_FILENAME", apr_pstrdup(r->pool, r->filename));
257         *q = '?';
258     }
259     else {
260         apr_table_addn(e, "SCRIPT_FILENAME", r->filename);  /* Apache */
261     }
262
263     rport = c->client_addr->port;
264     apr_table_addn(e, "REMOTE_PORT", apr_itoa(r->pool, rport));
265
266     if (r->user) {
267         apr_table_addn(e, "REMOTE_USER", r->user);
268     }
269     else if (r->prev) {
270         request_rec *back = r->prev;
271
272         while (back) {
273             if (back->user) {
274                 apr_table_addn(e, "REDIRECT_REMOTE_USER", back->user);
275                 break;
276             }
277             back = back->prev;
278         }
279     }
280     add_unless_null(e, "AUTH_TYPE", r->ap_auth_type);
281     env_temp = ap_get_remote_logname(r);
282     if (env_temp) {
283         apr_table_addn(e, "REMOTE_IDENT", apr_pstrdup(r->pool, env_temp));
284     }
285
286     /* Apache custom error responses. If we have redirected set two new vars */
287
288     if (r->prev) {
289         if (conf->qualify_redirect_url != AP_CORE_CONFIG_ON) { 
290             add_unless_null(e, "REDIRECT_URL", r->prev->uri);
291         }
292         else { 
293             /* PR#57785: reconstruct full URL here */
294             apr_uri_t *uri = &r->prev->parsed_uri;
295             if (!uri->scheme) {
296                 uri->scheme = (char*)ap_http_scheme(r->prev);
297             }
298             if (!uri->port) {
299                 uri->port = ap_get_server_port(r->prev);
300                 uri->port_str = apr_psprintf(r->pool, "%u", uri->port);
301             }
302             if (!uri->hostname) {
303                 uri->hostname = (char*)ap_get_server_name_for_url(r->prev);
304             }
305             add_unless_null(e, "REDIRECT_URL",
306                             apr_uri_unparse(r->pool, uri, 0));
307         }
308         add_unless_null(e, "REDIRECT_QUERY_STRING", r->prev->args);
309     }
310
311     if (e != r->subprocess_env) {
312         apr_table_overlap(r->subprocess_env, e, APR_OVERLAP_TABLES_SET);
313     }
314 }
315
316 /* This "cute" little function comes about because the path info on
317  * filenames and URLs aren't always the same. So we take the two,
318  * and find as much of the two that match as possible.
319  */
320
321 AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info)
322 {
323     int lu = strlen(uri);
324     int lp = strlen(path_info);
325
326     while (lu-- && lp-- && uri[lu] == path_info[lp]) {
327         if (path_info[lp] == '/') {
328             while (lu && uri[lu-1] == '/') lu--;
329         }
330     }
331
332     if (lu == -1) {
333         lu = 0;
334     }
335
336     while (uri[lu] != '\0' && uri[lu] != '/') {
337         lu++;
338     }
339     return lu;
340 }
341
342 /* Obtain the Request-URI from the original request-line, returning
343  * a new string from the request pool containing the URI or "".
344  */
345 static char *original_uri(request_rec *r)
346 {
347     char *first, *last;
348
349     if (r->the_request == NULL) {
350         return (char *) apr_pcalloc(r->pool, 1);
351     }
352
353     first = r->the_request;     /* use the request-line */
354
355     while (*first && !apr_isspace(*first)) {
356         ++first;                /* skip over the method */
357     }
358     while (apr_isspace(*first)) {
359         ++first;                /*   and the space(s)   */
360     }
361
362     last = first;
363     while (*last && !apr_isspace(*last)) {
364         ++last;                 /* end at next whitespace */
365     }
366
367     return apr_pstrmemdup(r->pool, first, last - first);
368 }
369
370 AP_DECLARE(void) ap_add_cgi_vars(request_rec *r)
371 {
372     apr_table_t *e = r->subprocess_env;
373
374     apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
375     apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);
376     apr_table_setn(e, "REQUEST_METHOD", r->method);
377     apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
378     apr_table_setn(e, "REQUEST_URI", original_uri(r));
379
380     /* Note that the code below special-cases scripts run from includes,
381      * because it "knows" that the sub_request has been hacked to have the
382      * args and path_info of the original request, and not any that may have
383      * come with the script URI in the include command.  Ugh.
384      */
385
386     if (!strcmp(r->protocol, "INCLUDED")) {
387         apr_table_setn(e, "SCRIPT_NAME", r->uri);
388         if (r->path_info && *r->path_info) {
389             apr_table_setn(e, "PATH_INFO", r->path_info);
390         }
391     }
392     else if (!r->path_info || !*r->path_info) {
393         apr_table_setn(e, "SCRIPT_NAME", r->uri);
394     }
395     else {
396         int path_info_start = ap_find_path_info(r->uri, r->path_info);
397
398         apr_table_setn(e, "SCRIPT_NAME",
399                       apr_pstrndup(r->pool, r->uri, path_info_start));
400
401         apr_table_setn(e, "PATH_INFO", r->path_info);
402     }
403
404     if (r->path_info && r->path_info[0]) {
405         /*
406          * To get PATH_TRANSLATED, treat PATH_INFO as a URI path.
407          * Need to re-escape it for this, since the entire URI was
408          * un-escaped before we determined where the PATH_INFO began.
409          */
410         request_rec *pa_req;
411
412         pa_req = ap_sub_req_lookup_uri(ap_escape_uri(r->pool, r->path_info), r,
413                                        NULL);
414
415         if (pa_req->filename) {
416             char *pt = apr_pstrcat(r->pool, pa_req->filename, pa_req->path_info,
417                                   NULL);
418 #ifdef WIN32
419             /* We need to make this a real Windows path name */
420             apr_filepath_merge(&pt, "", pt, APR_FILEPATH_NATIVE, r->pool);
421 #endif
422             apr_table_setn(e, "PATH_TRANSLATED", pt);
423         }
424         ap_destroy_sub_req(pa_req);
425     }
426 }
427
428
429 static int set_cookie_doo_doo(void *v, const char *key, const char *val)
430 {
431     apr_table_addn(v, key, val);
432     return 1;
433 }
434
435 #define HTTP_UNSET (-HTTP_OK)
436 #define SCRIPT_LOG_MARK  __FILE__,__LINE__,module_index
437
438 AP_DECLARE(int) ap_scan_script_header_err_core_ex(request_rec *r, char *buffer,
439                                        int (*getsfunc) (char *, int, void *),
440                                        void *getsfunc_data,
441                                        int module_index)
442 {
443     char x[MAX_STRING_LEN];
444     char *w, *l;
445     int p;
446     int cgi_status = HTTP_UNSET;
447     apr_table_t *merge;
448     apr_table_t *cookie_table;
449     int trace_log = APLOG_R_MODULE_IS_LEVEL(r, module_index, APLOG_TRACE1);
450     int first_header = 1;
451
452     if (buffer) {
453         *buffer = '\0';
454     }
455     w = buffer ? buffer : x;
456
457     /* temporary place to hold headers to merge in later */
458     merge = apr_table_make(r->pool, 10);
459
460     /* The HTTP specification says that it is legal to merge duplicate
461      * headers into one.  Some browsers that support Cookies don't like
462      * merged headers and prefer that each Set-Cookie header is sent
463      * separately.  Lets humour those browsers by not merging.
464      * Oh what a pain it is.
465      */
466     cookie_table = apr_table_make(r->pool, 2);
467     apr_table_do(set_cookie_doo_doo, cookie_table, r->err_headers_out, "Set-Cookie", NULL);
468
469     while (1) {
470
471         int rv = (*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data);
472         if (rv == 0) {
473             const char *msg = "Premature end of script headers";
474             if (first_header)
475                 msg = "End of script output before headers";
476             /* Intentional no APLOGNO */
477             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
478                           "%s: %s", msg,
479                           apr_filepath_name_get(r->filename));
480             return HTTP_INTERNAL_SERVER_ERROR;
481         }
482         else if (rv == -1) {
483             /* Intentional no APLOGNO */
484             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
485                           "Script timed out before returning headers: %s",
486                           apr_filepath_name_get(r->filename));
487             return HTTP_GATEWAY_TIME_OUT;
488         }
489
490         /* Delete terminal (CR?)LF */
491
492         p = strlen(w);
493              /* Indeed, the host's '\n':
494                 '\012' for UNIX; '\015' for MacOS; '\025' for OS/390
495                  -- whatever the script generates.
496              */
497         if (p > 0 && w[p - 1] == '\n') {
498             if (p > 1 && w[p - 2] == CR) {
499                 w[p - 2] = '\0';
500             }
501             else {
502                 w[p - 1] = '\0';
503             }
504         }
505
506         /*
507          * If we've finished reading the headers, check to make sure any
508          * HTTP/1.1 conditions are met.  If so, we're done; normal processing
509          * will handle the script's output.  If not, just return the error.
510          * The appropriate thing to do would be to send the script process a
511          * SIGPIPE to let it know we're ignoring it, close the channel to the
512          * script process, and *then* return the failed-to-meet-condition
513          * error.  Otherwise we'd be waiting for the script to finish
514          * blithering before telling the client the output was no good.
515          * However, we don't have the information to do that, so we have to
516          * leave it to an upper layer.
517          */
518         if (w[0] == '\0') {
519             int cond_status = OK;
520
521             /* PR#38070: This fails because it gets confused when a
522              * CGI Status header overrides ap_meets_conditions.
523              *
524              * We can fix that by dropping ap_meets_conditions when
525              * Status has been set.  Since this is the only place
526              * cgi_status gets used, let's test it explicitly.
527              *
528              * The alternative would be to ignore CGI Status when
529              * ap_meets_conditions returns anything interesting.
530              * That would be safer wrt HTTP, but would break CGI.
531              */
532             if ((cgi_status == HTTP_UNSET) && (r->method_number == M_GET)) {
533                 cond_status = ap_meets_conditions(r);
534             }
535             apr_table_overlap(r->err_headers_out, merge,
536                 APR_OVERLAP_TABLES_MERGE);
537             if (!apr_is_empty_table(cookie_table)) {
538                 /* the cookies have already been copied to the cookie_table */
539                 apr_table_unset(r->err_headers_out, "Set-Cookie");
540                 r->err_headers_out = apr_table_overlay(r->pool,
541                     r->err_headers_out, cookie_table);
542             }
543             return cond_status;
544         }
545
546         if (trace_log) {
547             if (first_header)
548                 ap_log_rerror(SCRIPT_LOG_MARK, APLOG_TRACE4, 0, r,
549                               "Headers from script '%s':",
550                               apr_filepath_name_get(r->filename));
551             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_TRACE4, 0, r, "  %s", w);
552         }
553
554         /* if we see a bogus header don't ignore it. Shout and scream */
555
556 #if APR_CHARSET_EBCDIC
557             /* Chances are that we received an ASCII header text instead of
558              * the expected EBCDIC header lines. Try to auto-detect:
559              */
560         if (!(l = strchr(w, ':'))) {
561             int maybeASCII = 0, maybeEBCDIC = 0;
562             unsigned char *cp, native;
563             apr_size_t inbytes_left, outbytes_left;
564
565             for (cp = w; *cp != '\0'; ++cp) {
566                 native = apr_xlate_conv_byte(ap_hdrs_from_ascii, *cp);
567                 if (apr_isprint(*cp) && !apr_isprint(native))
568                     ++maybeEBCDIC;
569                 if (!apr_isprint(*cp) && apr_isprint(native))
570                     ++maybeASCII;
571             }
572             if (maybeASCII > maybeEBCDIC) {
573                 ap_log_error(SCRIPT_LOG_MARK, APLOG_ERR, 0, r->server,
574                              APLOGNO(02660) "CGI Interface Error: "
575                              "Script headers apparently ASCII: (CGI = %s)",
576                              r->filename);
577                 inbytes_left = outbytes_left = cp - w;
578                 apr_xlate_conv_buffer(ap_hdrs_from_ascii,
579                                       w, &inbytes_left, w, &outbytes_left);
580             }
581         }
582 #endif /*APR_CHARSET_EBCDIC*/
583         if (!(l = strchr(w, ':'))) {
584             if (!buffer) {
585                 /* Soak up all the script output - may save an outright kill */
586                 while ((*getsfunc)(w, MAX_STRING_LEN - 1, getsfunc_data) > 0) {
587                     continue;
588                 }
589             }
590
591             /* Intentional no APLOGNO */
592             ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
593                           "malformed header from script '%s': Bad header: %.30s",
594                           apr_filepath_name_get(r->filename), w);
595             return HTTP_INTERNAL_SERVER_ERROR;
596         }
597
598         *l++ = '\0';
599         while (apr_isspace(*l)) {
600             ++l;
601         }
602
603         if (!ap_casecmpstr(w, "Content-type")) {
604             char *tmp;
605
606             /* Nuke trailing whitespace */
607
608             char *endp = l + strlen(l) - 1;
609             while (endp > l && apr_isspace(*endp)) {
610                 *endp-- = '\0';
611             }
612
613             tmp = apr_pstrdup(r->pool, l);
614             ap_content_type_tolower(tmp);
615             ap_set_content_type(r, tmp);
616         }
617         /*
618          * If the script returned a specific status, that's what
619          * we'll use - otherwise we assume 200 OK.
620          */
621         else if (!ap_casecmpstr(w, "Status")) {
622             r->status = cgi_status = atoi(l);
623             if (!ap_is_HTTP_VALID_RESPONSE(cgi_status))
624                 /* Intentional no APLOGNO */
625                 ap_log_rerror(SCRIPT_LOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
626                               "Invalid status line from script '%s': %.30s",
627                               apr_filepath_name_get(r->filename), l);
628             else
629                 if (APLOGrtrace1(r))
630                    ap_log_rerror(SCRIPT_LOG_MARK, APLOG_TRACE1, 0, r,
631                                  "Status line from script '%s': %.30s",
632                                  apr_filepath_name_get(r->filename), l);
633             r->status_line = apr_pstrdup(r->pool, l);
634         }
635         else if (!ap_casecmpstr(w, "Location")) {
636             apr_table_set(r->headers_out, w, l);
637         }
638         else if (!ap_casecmpstr(w, "Content-Length")) {
639             apr_table_set(r->headers_out, w, l);
640         }
641         else if (!ap_casecmpstr(w, "Content-Range")) {
642             apr_table_set(r->headers_out, w, l);
643         }
644         else if (!ap_casecmpstr(w, "Transfer-Encoding")) {
645             apr_table_set(r->headers_out, w, l);
646         }
647         else if (!ap_casecmpstr(w, "ETag")) {
648             apr_table_set(r->headers_out, w, l);
649         }
650         /*
651          * If the script gave us a Last-Modified header, we can't just
652          * pass it on blindly because of restrictions on future values.
653          */
654         else if (!ap_casecmpstr(w, "Last-Modified")) {
655             ap_update_mtime(r, apr_date_parse_http(l));
656             ap_set_last_modified(r);
657         }
658         else if (!ap_casecmpstr(w, "Set-Cookie")) {
659             apr_table_add(cookie_table, w, l);
660         }
661         else {
662             apr_table_add(merge, w, l);
663         }
664         first_header = 0;
665     }
666     /* never reached - we leave this function within the while loop above */
667     return OK;
668 }
669
670 AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
671                                        int (*getsfunc) (char *, int, void *),
672                                        void *getsfunc_data)
673 {
674     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc,
675                                              getsfunc_data,
676                                              APLOG_MODULE_INDEX);
677 }
678
679 static int getsfunc_FILE(char *buf, int len, void *f)
680 {
681     return apr_file_gets(buf, len, (apr_file_t *) f) == APR_SUCCESS;
682 }
683
684 AP_DECLARE(int) ap_scan_script_header_err(request_rec *r, apr_file_t *f,
685                                           char *buffer)
686 {
687     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_FILE, f,
688                                              APLOG_MODULE_INDEX);
689 }
690
691 AP_DECLARE(int) ap_scan_script_header_err_ex(request_rec *r, apr_file_t *f,
692                                           char *buffer, int module_index)
693 {
694     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_FILE, f,
695                                              module_index);
696 }
697
698
699 static int getsfunc_BRIGADE(char *buf, int len, void *arg)
700 {
701     apr_bucket_brigade *bb = (apr_bucket_brigade *)arg;
702     const char *dst_end = buf + len - 1; /* leave room for terminating null */
703     char *dst = buf;
704     apr_bucket *e = APR_BRIGADE_FIRST(bb);
705     apr_status_t rv;
706     int done = 0;
707
708     while ((dst < dst_end) && !done && e != APR_BRIGADE_SENTINEL(bb)
709            && !APR_BUCKET_IS_EOS(e)) {
710         const char *bucket_data;
711         apr_size_t bucket_data_len;
712         const char *src;
713         const char *src_end;
714         apr_bucket * next;
715
716         rv = apr_bucket_read(e, &bucket_data, &bucket_data_len,
717                              APR_BLOCK_READ);
718         if (rv != APR_SUCCESS || (bucket_data_len == 0)) {
719             *dst = '\0';
720             return APR_STATUS_IS_TIMEUP(rv) ? -1 : 0;
721         }
722         src = bucket_data;
723         src_end = bucket_data + bucket_data_len;
724         while ((src < src_end) && (dst < dst_end) && !done) {
725             if (*src == '\n') {
726                 done = 1;
727             }
728             else if (*src != '\r') {
729                 *dst++ = *src;
730             }
731             src++;
732         }
733
734         if (src < src_end) {
735             apr_bucket_split(e, src - bucket_data);
736         }
737         next = APR_BUCKET_NEXT(e);
738         apr_bucket_delete(e);
739         e = next;
740     }
741     *dst = 0;
742     return done;
743 }
744
745 AP_DECLARE(int) ap_scan_script_header_err_brigade(request_rec *r,
746                                                   apr_bucket_brigade *bb,
747                                                   char *buffer)
748 {
749     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_BRIGADE, bb,
750                                              APLOG_MODULE_INDEX);
751 }
752
753 AP_DECLARE(int) ap_scan_script_header_err_brigade_ex(request_rec *r,
754                                                      apr_bucket_brigade *bb,
755                                                      char *buffer,
756                                                      int module_index)
757 {
758     return ap_scan_script_header_err_core_ex(r, buffer, getsfunc_BRIGADE, bb,
759                                              module_index);
760 }
761
762
763 struct vastrs {
764     va_list args;
765     int arg;
766     const char *curpos;
767 };
768
769 static int getsfunc_STRING(char *w, int len, void *pvastrs)
770 {
771     struct vastrs *strs = (struct vastrs*) pvastrs;
772     const char *p;
773     int t;
774
775     if (!strs->curpos || !*strs->curpos) {
776         w[0] = '\0';
777         return 0;
778     }
779     p = ap_strchr_c(strs->curpos, '\n');
780     if (p)
781         ++p;
782     else
783         p = ap_strchr_c(strs->curpos, '\0');
784     t = p - strs->curpos;
785     if (t > len)
786         t = len;
787     strncpy (w, strs->curpos, t);
788     w[t] = '\0';
789     if (!strs->curpos[t]) {
790         ++strs->arg;
791         strs->curpos = va_arg(strs->args, const char *);
792     }
793     else
794         strs->curpos += t;
795     return t;
796 }
797
798 /* ap_scan_script_header_err_strs() accepts additional const char* args...
799  * each is treated as one or more header lines, and the first non-header
800  * character is returned to **arg, **data.  (The first optional arg is
801  * counted as 0.)
802  */
803 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs_ex(request_rec *r,
804                                                          char *buffer,
805                                                          int module_index,
806                                                          const char **termch,
807                                                          int *termarg, ...)
808 {
809     struct vastrs strs;
810     int res;
811
812     va_start(strs.args, termarg);
813     strs.arg = 0;
814     strs.curpos = va_arg(strs.args, char*);
815     res = ap_scan_script_header_err_core_ex(r, buffer, getsfunc_STRING,
816                                             (void *) &strs, module_index);
817     if (termch)
818         *termch = strs.curpos;
819     if (termarg)
820         *termarg = strs.arg;
821     va_end(strs.args);
822     return res;
823 }
824
825 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r,
826                                                       char *buffer,
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, APLOG_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 static void
847 argstr_to_table(char *str, apr_table_t *parms)
848 {
849     char *key;
850     char *value;
851     char *strtok_state;
852
853     if (str == NULL) {
854         return;
855     }
856
857     key = apr_strtok(str, "&", &strtok_state);
858     while (key) {
859         value = strchr(key, '=');
860         if (value) {
861             *value = '\0';      /* Split the string in two */
862             value++;            /* Skip passed the = */
863         }
864         else {
865             value = "1";
866         }
867         ap_unescape_url(key);
868         ap_unescape_url(value);
869         apr_table_set(parms, key, value);
870         key = apr_strtok(NULL, "&", &strtok_state);
871     }
872 }
873
874 AP_DECLARE(void) ap_args_to_table(request_rec *r, apr_table_t **table)
875 {
876     apr_table_t *t = apr_table_make(r->pool, 10);
877     argstr_to_table(apr_pstrdup(r->pool, r->args), t);
878     *table = t;
879 }