]> granicus.if.org Git - apache/blob - server/util_script.c
75fd7813506373e9ab9df459e23286c26cb89a70
[apache] / server / util_script.c
1 /* ====================================================================
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. The end-user documentation included with the redistribution,
20  *    if any, must include the following acknowledgment:
21  *       "This product includes software developed by the
22  *        Apache Software Foundation (http://www.apache.org/)."
23  *    Alternately, this acknowledgment may appear in the software itself,
24  *    if and wherever such third-party acknowledgments normally appear.
25  *
26  * 4. The names "Apache" and "Apache Software Foundation" must
27  *    not be used to endorse or promote products derived from this
28  *    software without prior written permission. For written
29  *    permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache",
32  *    nor may "Apache" appear in their name, without prior written
33  *    permission of the Apache Software Foundation.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation.  For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  *
54  * Portions of this software are based upon public domain software
55  * originally written at the National Center for Supercomputing Applications,
56  * University of Illinois, Urbana-Champaign.
57  */
58
59 #include "apr.h"
60 #include "apr_lib.h"
61 #include "apr_strings.h"
62
63 #define APR_WANT_STRFUNC
64 #include "apr_want.h"
65
66 #if APR_HAVE_STDLIB_H
67 #include <stdlib.h>
68 #endif
69
70 #define CORE_PRIVATE
71 #include "ap_config.h"
72 #include "httpd.h"
73 #include "http_config.h"
74 #include "http_main.h"
75 #include "http_log.h"
76 #include "http_core.h"
77 #include "http_protocol.h"
78 #include "http_request.h"       /* for sub_req_lookup_uri() */
79 #include "util_script.h"
80 #include "apr_date.h"           /* For apr_date_parse_http() */
81 #include "util_ebcdic.h"
82
83 #ifdef OS2
84 #define INCL_DOS
85 #include <os2.h>
86 #endif
87
88 /*
89  * Various utility functions which are common to a whole lot of
90  * script-type extensions mechanisms, and might as well be gathered
91  * in one place (if only to avoid creating inter-module dependancies
92  * where there don't have to be).
93  */
94
95 #define MALFORMED_MESSAGE "malformed header from script. Bad header="
96 #define MALFORMED_HEADER_LENGTH_TO_SHOW 30
97
98 static char *http2env(apr_pool_t *a, const char *w)
99 {
100     char *res = (char *)apr_palloc(a, sizeof("HTTP_") + strlen(w));
101     char *cp = res;
102     char c;
103
104     *cp++ = 'H';
105     *cp++ = 'T';
106     *cp++ = 'T';
107     *cp++ = 'P';
108     *cp++ = '_';
109
110     while ((c = *w++) != 0) {
111         if (!apr_isalnum(c)) {
112             *cp++ = '_';
113         }
114         else {
115             *cp++ = apr_toupper(c);
116         }
117     }
118     *cp = 0;
119  
120     return res;
121 }
122
123 AP_DECLARE(char **) ap_create_environment(apr_pool_t *p, apr_table_t *t)
124 {
125     const apr_array_header_t *env_arr = apr_table_elts(t);
126     const apr_table_entry_t *elts = (const apr_table_entry_t *) env_arr->elts;
127     char **env = (char **) apr_palloc(p, (env_arr->nelts + 2) * sizeof(char *));
128     int i, j;
129     char *tz;
130     char *whack;
131
132     j = 0;
133     if (!apr_table_get(t, "TZ")) {
134         tz = getenv("TZ");
135         if (tz != NULL) {
136             env[j++] = apr_pstrcat(p, "TZ=", tz, NULL);
137         }
138     }
139     for (i = 0; i < env_arr->nelts; ++i) {
140         if (!elts[i].key) {
141             continue;
142         }
143         env[j] = apr_pstrcat(p, elts[i].key, "=", elts[i].val, NULL);
144         whack = env[j];
145         if (apr_isdigit(*whack)) {
146             *whack++ = '_';
147         }
148         while (*whack != '=') {
149             if (!apr_isalnum(*whack) && *whack != '_') {
150                 *whack = '_';
151             }
152             ++whack;
153         }
154         ++j;
155     }
156
157     env[j] = NULL;
158     return env;
159 }
160
161 AP_DECLARE(void) ap_add_common_vars(request_rec *r)
162 {
163     apr_table_t *e;
164     server_rec *s = r->server;
165     conn_rec *c = r->connection;
166     const char *rem_logname;
167     char *env_path;
168 #if defined(WIN32) || defined(OS2) || defined(BEOS)
169     char *env_temp;
170 #endif
171     const char *host;
172     const apr_array_header_t *hdrs_arr = apr_table_elts(r->headers_in);
173     const apr_table_entry_t *hdrs = (const apr_table_entry_t *) hdrs_arr->elts;
174     int i;
175     apr_port_t rport;
176
177     /* use a temporary apr_table_t which we'll overlap onto
178      * r->subprocess_env later
179      * (exception: if r->subprocess_env is empty at the start,
180      * write directly into it)
181      */
182     if (apr_is_empty_table(r->subprocess_env)) {
183       e = r->subprocess_env;
184     }
185     else {
186       e = apr_table_make(r->pool, 25 + hdrs_arr->nelts);
187     }
188
189     /* First, add environment vars from headers... this is as per
190      * CGI specs, though other sorts of scripting interfaces see
191      * the same vars...
192      */
193
194     for (i = 0; i < hdrs_arr->nelts; ++i) {
195         if (!hdrs[i].key) {
196             continue;
197         }
198
199         /* A few headers are special cased --- Authorization to prevent
200          * rogue scripts from capturing passwords; content-type and -length
201          * for no particular reason.
202          */
203
204         if (!strcasecmp(hdrs[i].key, "Content-type")) {
205             apr_table_addn(e, "CONTENT_TYPE", hdrs[i].val);
206         }
207         else if (!strcasecmp(hdrs[i].key, "Content-length")) {
208             apr_table_addn(e, "CONTENT_LENGTH", hdrs[i].val);
209         }
210         /*
211          * You really don't want to disable this check, since it leaves you
212          * wide open to CGIs stealing passwords and people viewing them
213          * in the environment with "ps -e".  But, if you must...
214          */
215 #ifndef SECURITY_HOLE_PASS_AUTHORIZATION
216         else if (!strcasecmp(hdrs[i].key, "Authorization") 
217                  || !strcasecmp(hdrs[i].key, "Proxy-Authorization")) {
218             continue;
219         }
220 #endif
221         else {
222             apr_table_addn(e, http2env(r->pool, hdrs[i].key), hdrs[i].val);
223         }
224     }
225
226     if (!(env_path = getenv("PATH"))) {
227         env_path = DEFAULT_PATH;
228     }
229     apr_table_addn(e, "PATH", apr_pstrdup(r->pool, env_path));
230
231 #ifdef WIN32
232     if (env_temp = getenv("SystemRoot")) {
233         apr_table_addn(e, "SystemRoot", env_temp);         
234     }
235     if (env_temp = getenv("COMSPEC")) {
236         apr_table_addn(e, "COMSPEC", env_temp);            
237     }
238     if (env_temp = getenv("PATHEXT")) {
239         apr_table_addn(e, "PATHEXT", env_temp);            
240     }
241     if (env_temp = getenv("WINDIR")) {
242         apr_table_addn(e, "WINDIR", env_temp);
243     }
244 #endif
245
246 #ifdef OS2
247     if ((env_temp = getenv("COMSPEC")) != NULL) {
248         apr_table_addn(e, "COMSPEC", env_temp);            
249     }
250     if ((env_temp = getenv("ETC")) != NULL) {
251         apr_table_addn(e, "ETC", env_temp);            
252     }
253     if ((env_temp = getenv("DPATH")) != NULL) {
254         apr_table_addn(e, "DPATH", env_temp);            
255     }
256     if ((env_temp = getenv("PERLLIB_PREFIX")) != NULL) {
257         apr_table_addn(e, "PERLLIB_PREFIX", env_temp);            
258     }
259 #endif
260
261 #ifdef BEOS
262     if ((env_temp = getenv("LIBRARY_PATH")) != NULL) {
263         apr_table_addn(e, "LIBRARY_PATH", env_temp);            
264     }
265 #endif
266
267     apr_table_addn(e, "SERVER_SIGNATURE", ap_psignature("", r));
268     apr_table_addn(e, "SERVER_SOFTWARE", ap_get_server_version());
269     apr_table_addn(e, "SERVER_NAME",
270                    ap_escape_html(r->pool, ap_get_server_name(r)));
271     apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip);  /* Apache */
272     apr_table_addn(e, "SERVER_PORT",
273                   apr_psprintf(r->pool, "%u", ap_get_server_port(r)));
274     host = ap_get_remote_host(c, r->per_dir_config, REMOTE_HOST, NULL);
275     if (host) {
276         apr_table_addn(e, "REMOTE_HOST", host);
277     }
278     apr_table_addn(e, "REMOTE_ADDR", c->remote_ip);
279     apr_table_addn(e, "DOCUMENT_ROOT", ap_document_root(r));    /* Apache */
280     apr_table_addn(e, "SERVER_ADMIN", s->server_admin); /* Apache */
281     apr_table_addn(e, "SCRIPT_FILENAME", r->filename);  /* Apache */
282
283     apr_sockaddr_port_get(&rport, c->remote_addr);
284     apr_table_addn(e, "REMOTE_PORT", apr_itoa(r->pool, rport));
285
286     if (r->user) {
287         apr_table_addn(e, "REMOTE_USER", r->user);
288     }
289     if (r->ap_auth_type) {
290         apr_table_addn(e, "AUTH_TYPE", r->ap_auth_type);
291     }
292     rem_logname = ap_get_remote_logname(r);
293     if (rem_logname) {
294         apr_table_addn(e, "REMOTE_IDENT", apr_pstrdup(r->pool, rem_logname));
295     }
296
297     /* Apache custom error responses. If we have redirected set two new vars */
298
299     if (r->prev) {
300         if (r->prev->args) {
301             apr_table_addn(e, "REDIRECT_QUERY_STRING", r->prev->args);
302         }
303         if (r->prev->uri) {
304             apr_table_addn(e, "REDIRECT_URL", r->prev->uri);
305         }
306     }
307
308     if (e != r->subprocess_env) {
309       apr_table_overlap(r->subprocess_env, e, APR_OVERLAP_TABLES_SET);
310     }
311 }
312
313 /* This "cute" little function comes about because the path info on
314  * filenames and URLs aren't always the same. So we take the two,
315  * and find as much of the two that match as possible.
316  */
317
318 AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info)
319 {
320     int lu = strlen(uri);
321     int lp = strlen(path_info);
322
323     while (lu-- && lp-- && uri[lu] == path_info[lp]);
324
325     if (lu == -1) {
326         lu = 0;
327     }
328
329     while (uri[lu] != '\0' && uri[lu] != '/') {
330         lu++;
331     }
332     return lu;
333 }
334
335 /* Obtain the Request-URI from the original request-line, returning
336  * a new string from the request pool containing the URI or "".
337  */
338 static char *original_uri(request_rec *r)
339 {
340     char *first, *last;
341
342     if (r->the_request == NULL) {
343         return (char *) apr_pcalloc(r->pool, 1);
344     }
345
346     first = r->the_request;     /* use the request-line */
347
348     while (*first && !apr_isspace(*first)) {
349         ++first;                /* skip over the method */
350     }
351     while (apr_isspace(*first)) {
352         ++first;                /*   and the space(s)   */
353     }
354
355     last = first;
356     while (*last && !apr_isspace(*last)) {
357         ++last;                 /* end at next whitespace */
358     }
359
360     return apr_pstrmemdup(r->pool, first, last - first);
361 }
362
363 AP_DECLARE(void) ap_add_cgi_vars(request_rec *r)
364 {
365     apr_table_t *e = r->subprocess_env;
366
367     apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
368     apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);
369     apr_table_setn(e, "REQUEST_METHOD", r->method);
370     apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
371     apr_table_setn(e, "REQUEST_URI", original_uri(r)); 
372
373     /* Note that the code below special-cases scripts run from includes,
374      * because it "knows" that the sub_request has been hacked to have the
375      * args and path_info of the original request, and not any that may have
376      * come with the script URI in the include command.  Ugh.
377      */
378
379     if (!strcmp(r->protocol, "INCLUDED")) {
380         apr_table_setn(e, "SCRIPT_NAME", r->uri);
381         if (r->path_info && *r->path_info) {
382             apr_table_setn(e, "PATH_INFO", r->path_info);
383         }
384     }
385     else if (!r->path_info || !*r->path_info) {
386         apr_table_setn(e, "SCRIPT_NAME", r->uri);
387     }
388     else {
389         int path_info_start = ap_find_path_info(r->uri, r->path_info);
390
391         apr_table_setn(e, "SCRIPT_NAME",
392                       apr_pstrndup(r->pool, r->uri, path_info_start));
393
394         apr_table_setn(e, "PATH_INFO", r->path_info);
395     }
396
397     if (r->path_info && r->path_info[0]) {
398         /*
399          * To get PATH_TRANSLATED, treat PATH_INFO as a URI path.
400          * Need to re-escape it for this, since the entire URI was
401          * un-escaped before we determined where the PATH_INFO began.
402          */
403         request_rec *pa_req;
404
405         pa_req = ap_sub_req_lookup_uri(ap_escape_uri(r->pool, r->path_info), r,
406                                        NULL);
407
408         if (pa_req->filename) {
409             char *pt = apr_pstrcat(r->pool, pa_req->filename, pa_req->path_info,
410                                   NULL);
411 #ifdef WIN32
412             /* We need to make this a real Windows path name */
413             apr_filepath_merge(&pt, "", pt, APR_FILEPATH_NATIVE, r->pool);
414 #endif
415             apr_table_setn(e, "PATH_TRANSLATED", pt);
416         }
417         ap_destroy_sub_req(pa_req);
418     }
419 }
420
421
422 static int set_cookie_doo_doo(void *v, const char *key, const char *val)
423 {
424     apr_table_addn(v, key, val);
425     return 1;
426 }
427
428 AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
429                                        int (*getsfunc) (char *, int, void *),
430                                        void *getsfunc_data)
431 {
432     char x[MAX_STRING_LEN];
433     char *w, *l;
434     int p;
435     int cgi_status = HTTP_OK;
436     apr_table_t *merge;
437     apr_table_t *cookie_table;
438
439     if (buffer) {
440         *buffer = '\0';
441     }
442     w = buffer ? buffer : x;
443
444     /* temporary place to hold headers to merge in later */
445     merge = apr_table_make(r->pool, 10);
446
447     /* The HTTP specification says that it is legal to merge duplicate
448      * headers into one.  Some browsers that support Cookies don't like
449      * merged headers and prefer that each Set-Cookie header is sent
450      * separately.  Lets humour those browsers by not merging.
451      * Oh what a pain it is.
452      */
453     cookie_table = apr_table_make(r->pool, 2);
454     apr_table_do(set_cookie_doo_doo, cookie_table, r->err_headers_out, "Set-Cookie", NULL);
455
456     while (1) {
457
458         if ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data) == 0) {
459             ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
460                           "Premature end of script headers: %s", 
461                           apr_filename_of_pathname(r->filename));
462             return HTTP_INTERNAL_SERVER_ERROR;
463         }
464
465         /* Delete terminal (CR?)LF */
466
467         p = strlen(w);
468              /* Indeed, the host's '\n':
469                 '\012' for UNIX; '\015' for MacOS; '\025' for OS/390
470                  -- whatever the script generates.
471              */                                  
472         if (p > 0 && w[p - 1] == '\n') {
473             if (p > 1 && w[p - 2] == CR) {
474                 w[p - 2] = '\0';
475             }
476             else {
477                 w[p - 1] = '\0';
478             }
479         }
480
481         /*
482          * If we've finished reading the headers, check to make sure any
483          * HTTP/1.1 conditions are met.  If so, we're done; normal processing
484          * will handle the script's output.  If not, just return the error.
485          * The appropriate thing to do would be to send the script process a
486          * SIGPIPE to let it know we're ignoring it, close the channel to the
487          * script process, and *then* return the failed-to-meet-condition
488          * error.  Otherwise we'd be waiting for the script to finish
489          * blithering before telling the client the output was no good.
490          * However, we don't have the information to do that, so we have to
491          * leave it to an upper layer.
492          */
493         if (w[0] == '\0') {
494             int cond_status = OK;
495
496             if ((cgi_status == HTTP_OK) && (r->method_number == M_GET)) {
497                 cond_status = ap_meets_conditions(r);
498             }
499             apr_table_overlap(r->err_headers_out, merge,
500                 APR_OVERLAP_TABLES_MERGE);
501             if (!apr_is_empty_table(cookie_table)) {
502                 /* the cookies have already been copied to the cookie_table */
503                 apr_table_unset(r->err_headers_out, "Set-Cookie");
504                 r->err_headers_out = apr_table_overlay(r->pool,
505                     r->err_headers_out, cookie_table);
506             }
507             return cond_status;
508         }
509
510         /* if we see a bogus header don't ignore it. Shout and scream */
511
512 #if APR_CHARSET_EBCDIC
513             /* Chances are that we received an ASCII header text instead of
514              * the expected EBCDIC header lines. Try to auto-detect:
515              */
516         if (!(l = strchr(w, ':'))) {
517             int maybeASCII = 0, maybeEBCDIC = 0;
518             unsigned char *cp, native;
519             apr_size_t inbytes_left, outbytes_left;
520
521             for (cp = w; *cp != '\0'; ++cp) {
522                 native = apr_xlate_conv_byte(ap_hdrs_from_ascii, *cp);
523                 if (apr_isprint(*cp) && !apr_isprint(native))
524                     ++maybeEBCDIC;
525                 if (!apr_isprint(*cp) && apr_isprint(native))
526                     ++maybeASCII;
527             }
528             if (maybeASCII > maybeEBCDIC) {
529                 ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
530                              "CGI Interface Error: Script headers apparently ASCII: (CGI = %s)",
531                              r->filename);
532                 inbytes_left = outbytes_left = cp - w;
533                 apr_xlate_conv_buffer(ap_hdrs_from_ascii,
534                                       w, &inbytes_left, w, &outbytes_left);
535             }
536         }
537 #endif /*APR_CHARSET_EBCDIC*/
538         if (!(l = strchr(w, ':'))) {
539             char malformed[(sizeof MALFORMED_MESSAGE) + 1
540                            + MALFORMED_HEADER_LENGTH_TO_SHOW];
541
542             strcpy(malformed, MALFORMED_MESSAGE);
543             strncat(malformed, w, MALFORMED_HEADER_LENGTH_TO_SHOW);
544
545             if (!buffer) {
546                 /* Soak up all the script output - may save an outright kill */
547                 while ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data)) {
548                     continue;
549                 }
550             }
551
552             ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
553                           "%s: %s", malformed, 
554                           apr_filename_of_pathname(r->filename));
555             return HTTP_INTERNAL_SERVER_ERROR;
556         }
557
558         *l++ = '\0';
559         while (*l && apr_isspace(*l)) {
560             ++l;
561         }
562
563         if (!strcasecmp(w, "Content-type")) {
564             char *tmp;
565
566             /* Nuke trailing whitespace */
567
568             char *endp = l + strlen(l) - 1;
569             while (endp > l && apr_isspace(*endp)) {
570                 *endp-- = '\0';
571             }
572
573             tmp = apr_pstrdup(r->pool, l);
574             ap_content_type_tolower(tmp);
575             ap_set_content_type(r, tmp);
576         }
577         /*
578          * If the script returned a specific status, that's what
579          * we'll use - otherwise we assume 200 OK.
580          */
581         else if (!strcasecmp(w, "Status")) {
582             r->status = cgi_status = atoi(l);
583             r->status_line = apr_pstrdup(r->pool, l);
584         }
585         else if (!strcasecmp(w, "Location")) {
586             apr_table_set(r->headers_out, w, l);
587         }
588         else if (!strcasecmp(w, "Content-Length")) {
589             apr_table_set(r->headers_out, w, l);
590         }
591         else if (!strcasecmp(w, "Transfer-Encoding")) {
592             apr_table_set(r->headers_out, w, l);
593         }
594         /*
595          * If the script gave us a Last-Modified header, we can't just
596          * pass it on blindly because of restrictions on future values.
597          */
598         else if (!strcasecmp(w, "Last-Modified")) {
599             ap_update_mtime(r, apr_date_parse_http(l));
600             ap_set_last_modified(r);
601         }
602         else if (!strcasecmp(w, "Set-Cookie")) {
603             apr_table_add(cookie_table, w, l);
604         }
605         else {
606             apr_table_add(merge, w, l);
607         }
608     }
609
610     return OK;
611 }
612
613 static int getsfunc_FILE(char *buf, int len, void *f)
614 {
615     return apr_file_gets(buf, len, (apr_file_t *) f) == APR_SUCCESS;
616 }
617
618 AP_DECLARE(int) ap_scan_script_header_err(request_rec *r, apr_file_t *f,
619                                           char *buffer)
620 {
621     return ap_scan_script_header_err_core(r, buffer, getsfunc_FILE, f);
622 }
623
624 static int getsfunc_BRIGADE(char *buf, int len, void *arg)
625 {
626     apr_bucket_brigade *bb = (apr_bucket_brigade *)arg;
627     const char *dst_end = buf + len - 1; /* leave room for terminating null */
628     char *dst = buf;
629     apr_bucket *e = APR_BRIGADE_FIRST(bb);
630     apr_status_t rv;
631     int done = 0;
632
633     while ((dst < dst_end) && !done && !APR_BUCKET_IS_EOS(e)) {
634         const char *bucket_data;
635         apr_size_t bucket_data_len;
636         const char *src;
637         const char *src_end;
638         apr_bucket * next;
639
640         rv = apr_bucket_read(e, &bucket_data, &bucket_data_len,
641                              APR_BLOCK_READ);
642         if (!APR_STATUS_IS_SUCCESS(rv) || (bucket_data_len == 0)) {
643             return 0;
644         }
645         src = bucket_data;
646         src_end = bucket_data + bucket_data_len;
647         while ((src < src_end) && (dst < dst_end) && !done) {
648             if (*src == '\n') {
649                 done = 1;
650             }
651             else if (*src != '\r') {
652                 *dst++ = *src;
653             }
654             src++;
655         }
656
657         if (src < src_end) {
658             apr_bucket_split(e, src - bucket_data);
659         }
660         next = APR_BUCKET_NEXT(e);
661         APR_BUCKET_REMOVE(e);
662         apr_bucket_destroy(e);
663         e = next;
664     }
665     *dst = 0;
666     return 1;
667 }
668
669 AP_DECLARE(int) ap_scan_script_header_err_brigade(request_rec *r,
670                                                   apr_bucket_brigade *bb,
671                                                   char *buffer)
672 {
673     return ap_scan_script_header_err_core(r, buffer, getsfunc_BRIGADE, bb);
674 }
675
676 struct vastrs {
677     va_list args;
678     int arg;
679     const char *curpos;
680 };
681
682 static int getsfunc_STRING(char *w, int len, void *pvastrs)
683 {
684     struct vastrs *strs = (struct vastrs*) pvastrs;
685     const char *p;
686     int t;
687     
688     if (!strs->curpos || !*strs->curpos) 
689         return 0;
690     p = ap_strchr_c(strs->curpos, '\n');
691     if (p)
692         ++p;
693     else
694         p = ap_strchr_c(strs->curpos, '\0');
695     t = p - strs->curpos;
696     if (t > len)
697         t = len;
698     strncpy (w, strs->curpos, t);
699     w[t] = '\0';
700     if (!strs->curpos[t]) {
701         ++strs->arg;
702         strs->curpos = va_arg(strs->args, const char *);
703     }
704     else
705         strs->curpos += t;
706     return t;    
707 }
708
709 /* ap_scan_script_header_err_strs() accepts additional const char* args...
710  * each is treated as one or more header lines, and the first non-header
711  * character is returned to **arg, **data.  (The first optional arg is
712  * counted as 0.)
713  */
714 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r, 
715                                                       char *buffer, 
716                                                       const char **termch,
717                                                       int *termarg, ...)
718 {
719     struct vastrs strs;
720     int res;
721
722     va_start(strs.args, termarg);
723     strs.arg = 0;
724     strs.curpos = va_arg(strs.args, char*);
725     res = ap_scan_script_header_err_core(r, buffer, getsfunc_STRING, (void *) &strs);
726     if (termch)
727         *termch = strs.curpos;
728     if (termarg)
729         *termarg = strs.arg;
730     va_end(strs.args);
731     return res;
732 }