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