]> granicus.if.org Git - apache/blob - server/util_script.c
351b08b5a2b9e490ee2f5fa2f40838954e7506d6
[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", ap_get_server_name(r));
270     apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip);  /* Apache */
271     apr_table_addn(e, "SERVER_PORT",
272                   apr_psprintf(r->pool, "%u", ap_get_server_port(r)));
273     host = ap_get_remote_host(c, r->per_dir_config, REMOTE_HOST, NULL);
274     if (host) {
275         apr_table_addn(e, "REMOTE_HOST", host);
276     }
277     apr_table_addn(e, "REMOTE_ADDR", c->remote_ip);
278     apr_table_addn(e, "DOCUMENT_ROOT", ap_document_root(r));    /* Apache */
279     apr_table_addn(e, "SERVER_ADMIN", s->server_admin); /* Apache */
280     apr_table_addn(e, "SCRIPT_FILENAME", r->filename);  /* Apache */
281
282     apr_sockaddr_port_get(&rport, c->remote_addr);
283     apr_table_addn(e, "REMOTE_PORT", apr_itoa(r->pool, rport));
284
285     if (r->user) {
286         apr_table_addn(e, "REMOTE_USER", r->user);
287     }
288     if (r->ap_auth_type) {
289         apr_table_addn(e, "AUTH_TYPE", r->ap_auth_type);
290     }
291     rem_logname = ap_get_remote_logname(r);
292     if (rem_logname) {
293         apr_table_addn(e, "REMOTE_IDENT", apr_pstrdup(r->pool, rem_logname));
294     }
295
296     /* Apache custom error responses. If we have redirected set two new vars */
297
298     if (r->prev) {
299         if (r->prev->args) {
300             apr_table_addn(e, "REDIRECT_QUERY_STRING", r->prev->args);
301         }
302         if (r->prev->uri) {
303             apr_table_addn(e, "REDIRECT_URL", r->prev->uri);
304         }
305     }
306
307     if (e != r->subprocess_env) {
308       apr_table_overlap(r->subprocess_env, e, APR_OVERLAP_TABLES_SET);
309     }
310 }
311
312 /* This "cute" little function comes about because the path info on
313  * filenames and URLs aren't always the same. So we take the two,
314  * and find as much of the two that match as possible.
315  */
316
317 AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info)
318 {
319     int lu = strlen(uri);
320     int lp = strlen(path_info);
321
322     while (lu-- && lp-- && uri[lu] == path_info[lp]);
323
324     if (lu == -1) {
325         lu = 0;
326     }
327
328     while (uri[lu] != '\0' && uri[lu] != '/') {
329         lu++;
330     }
331     return lu;
332 }
333
334 /* Obtain the Request-URI from the original request-line, returning
335  * a new string from the request pool containing the URI or "".
336  */
337 static char *original_uri(request_rec *r)
338 {
339     char *first, *last;
340
341     if (r->the_request == NULL) {
342         return (char *) apr_pcalloc(r->pool, 1);
343     }
344
345     first = r->the_request;     /* use the request-line */
346
347     while (*first && !apr_isspace(*first)) {
348         ++first;                /* skip over the method */
349     }
350     while (apr_isspace(*first)) {
351         ++first;                /*   and the space(s)   */
352     }
353
354     last = first;
355     while (*last && !apr_isspace(*last)) {
356         ++last;                 /* end at next whitespace */
357     }
358
359     return apr_pstrmemdup(r->pool, first, last - first);
360 }
361
362 AP_DECLARE(void) ap_add_cgi_vars(request_rec *r)
363 {
364     apr_table_t *e = r->subprocess_env;
365
366     apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
367     apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);
368     apr_table_setn(e, "REQUEST_METHOD", r->method);
369     apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
370     apr_table_setn(e, "REQUEST_URI", original_uri(r)); 
371
372     /* Note that the code below special-cases scripts run from includes,
373      * because it "knows" that the sub_request has been hacked to have the
374      * args and path_info of the original request, and not any that may have
375      * come with the script URI in the include command.  Ugh.
376      */
377
378     if (!strcmp(r->protocol, "INCLUDED")) {
379         apr_table_setn(e, "SCRIPT_NAME", r->uri);
380         if (r->path_info && *r->path_info) {
381             apr_table_setn(e, "PATH_INFO", r->path_info);
382         }
383     }
384     else if (!r->path_info || !*r->path_info) {
385         apr_table_setn(e, "SCRIPT_NAME", r->uri);
386     }
387     else {
388         int path_info_start = ap_find_path_info(r->uri, r->path_info);
389
390         apr_table_setn(e, "SCRIPT_NAME",
391                       apr_pstrndup(r->pool, r->uri, path_info_start));
392
393         apr_table_setn(e, "PATH_INFO", r->path_info);
394     }
395
396     if (r->path_info && r->path_info[0]) {
397         /*
398          * To get PATH_TRANSLATED, treat PATH_INFO as a URI path.
399          * Need to re-escape it for this, since the entire URI was
400          * un-escaped before we determined where the PATH_INFO began.
401          */
402         request_rec *pa_req;
403
404         pa_req = ap_sub_req_lookup_uri(ap_escape_uri(r->pool, r->path_info), r,
405                                        NULL);
406
407         if (pa_req->filename) {
408             char *pt = apr_pstrcat(r->pool, pa_req->filename, pa_req->path_info,
409                                   NULL);
410 #ifdef WIN32
411             /* We need to make this a real Windows path name */
412             apr_filepath_merge(&pt, "", pt, APR_FILEPATH_NATIVE, r->pool);
413 #endif
414             apr_table_setn(e, "PATH_TRANSLATED", pt);
415         }
416         ap_destroy_sub_req(pa_req);
417     }
418 }
419
420
421 static int set_cookie_doo_doo(void *v, const char *key, const char *val)
422 {
423     apr_table_addn(v, key, val);
424     return 1;
425 }
426
427 AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
428                                        int (*getsfunc) (char *, int, void *),
429                                        void *getsfunc_data)
430 {
431     char x[MAX_STRING_LEN];
432     char *w, *l;
433     int p;
434     int cgi_status = HTTP_OK;
435     apr_table_t *merge;
436     apr_table_t *cookie_table;
437
438     if (buffer) {
439         *buffer = '\0';
440     }
441     w = buffer ? buffer : x;
442
443     /* temporary place to hold headers to merge in later */
444     merge = apr_table_make(r->pool, 10);
445
446     /* The HTTP specification says that it is legal to merge duplicate
447      * headers into one.  Some browsers that support Cookies don't like
448      * merged headers and prefer that each Set-Cookie header is sent
449      * separately.  Lets humour those browsers by not merging.
450      * Oh what a pain it is.
451      */
452     cookie_table = apr_table_make(r->pool, 2);
453     apr_table_do(set_cookie_doo_doo, cookie_table, r->err_headers_out, "Set-Cookie", NULL);
454
455     while (1) {
456
457         if ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data) == 0) {
458             ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r,
459                           "Premature end of script headers: %s", r->filename);
460             return HTTP_INTERNAL_SERVER_ERROR;
461         }
462
463         /* Delete terminal (CR?)LF */
464
465         p = strlen(w);
466              /* Indeed, the host's '\n':
467                 '\012' for UNIX; '\015' for MacOS; '\025' for OS/390
468                  -- whatever the script generates.
469              */                                  
470         if (p > 0 && w[p - 1] == '\n') {
471             if (p > 1 && w[p - 2] == CR) {
472                 w[p - 2] = '\0';
473             }
474             else {
475                 w[p - 1] = '\0';
476             }
477         }
478
479         /*
480          * If we've finished reading the headers, check to make sure any
481          * HTTP/1.1 conditions are met.  If so, we're done; normal processing
482          * will handle the script's output.  If not, just return the error.
483          * The appropriate thing to do would be to send the script process a
484          * SIGPIPE to let it know we're ignoring it, close the channel to the
485          * script process, and *then* return the failed-to-meet-condition
486          * error.  Otherwise we'd be waiting for the script to finish
487          * blithering before telling the client the output was no good.
488          * However, we don't have the information to do that, so we have to
489          * leave it to an upper layer.
490          */
491         if (w[0] == '\0') {
492             int cond_status = OK;
493
494             if ((cgi_status == HTTP_OK) && (r->method_number == M_GET)) {
495                 cond_status = ap_meets_conditions(r);
496             }
497             apr_table_overlap(r->err_headers_out, merge,
498                 APR_OVERLAP_TABLES_MERGE);
499             if (!apr_is_empty_table(cookie_table)) {
500                 /* the cookies have already been copied to the cookie_table */
501                 apr_table_unset(r->err_headers_out, "Set-Cookie");
502                 r->err_headers_out = apr_table_overlay(r->pool,
503                     r->err_headers_out, cookie_table);
504             }
505             return cond_status;
506         }
507
508         /* if we see a bogus header don't ignore it. Shout and scream */
509
510 #if APR_CHARSET_EBCDIC
511             /* Chances are that we received an ASCII header text instead of
512              * the expected EBCDIC header lines. Try to auto-detect:
513              */
514         if (!(l = strchr(w, ':'))) {
515             int maybeASCII = 0, maybeEBCDIC = 0;
516             unsigned char *cp, native;
517             apr_size_t inbytes_left, outbytes_left;
518
519             for (cp = w; *cp != '\0'; ++cp) {
520                 native = apr_xlate_conv_byte(ap_hdrs_from_ascii, *cp);
521                 if (isprint(*cp) && !isprint(native))
522                     ++maybeEBCDIC;
523                 if (!isprint(*cp) && isprint(native))
524                     ++maybeASCII;
525             }
526             if (maybeASCII > maybeEBCDIC) {
527                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r->server,
528                              "CGI Interface Error: Script headers apparently ASCII: (CGI = %s)",
529                              r->filename);
530                 inbytes_left = outbytes_left = cp - w;
531                 apr_xlate_conv_buffer(ap_hdrs_from_ascii,
532                                       w, &inbytes_left, w, &outbytes_left);
533             }
534         }
535 #endif /*APR_CHARSET_EBCDIC*/
536         if (!(l = strchr(w, ':'))) {
537             char malformed[(sizeof MALFORMED_MESSAGE) + 1
538                            + MALFORMED_HEADER_LENGTH_TO_SHOW];
539
540             strcpy(malformed, MALFORMED_MESSAGE);
541             strncat(malformed, w, MALFORMED_HEADER_LENGTH_TO_SHOW);
542
543             if (!buffer) {
544                 /* Soak up all the script output - may save an outright kill */
545                 while ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data)) {
546                     continue;
547                 }
548             }
549
550             ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r,
551                           "%s: %s", malformed, r->filename);
552             return HTTP_INTERNAL_SERVER_ERROR;
553         }
554
555         *l++ = '\0';
556         while (*l && apr_isspace(*l)) {
557             ++l;
558         }
559
560         if (!strcasecmp(w, "Content-type")) {
561             char *tmp;
562
563             /* Nuke trailing whitespace */
564
565             char *endp = l + strlen(l) - 1;
566             while (endp > l && apr_isspace(*endp)) {
567                 *endp-- = '\0';
568             }
569
570             tmp = apr_pstrdup(r->pool, l);
571             ap_content_type_tolower(tmp);
572             ap_set_content_type(r, tmp);
573         }
574         /*
575          * If the script returned a specific status, that's what
576          * we'll use - otherwise we assume 200 OK.
577          */
578         else if (!strcasecmp(w, "Status")) {
579             r->status = cgi_status = atoi(l);
580             r->status_line = apr_pstrdup(r->pool, l);
581         }
582         else if (!strcasecmp(w, "Location")) {
583             apr_table_set(r->headers_out, w, l);
584         }
585         else if (!strcasecmp(w, "Content-Length")) {
586             apr_table_set(r->headers_out, w, l);
587         }
588         else if (!strcasecmp(w, "Transfer-Encoding")) {
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
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 struct vastrs {
622     va_list args;
623     int arg;
624     const char *curpos;
625 };
626
627 static int getsfunc_STRING(char *w, int len, void *pvastrs)
628 {
629     struct vastrs *strs = (struct vastrs*) pvastrs;
630     const char *p;
631     int t;
632     
633     if (!strs->curpos || !*strs->curpos) 
634         return 0;
635     p = ap_strchr_c(strs->curpos, '\n');
636     if (p)
637         ++p;
638     else
639         p = ap_strchr_c(strs->curpos, '\0');
640     t = p - strs->curpos;
641     if (t > len)
642         t = len;
643     strncpy (w, strs->curpos, t);
644     w[t] = '\0';
645     if (!strs->curpos[t]) {
646         ++strs->arg;
647         strs->curpos = va_arg(strs->args, const char *);
648     }
649     else
650         strs->curpos += t;
651     return t;    
652 }
653
654 /* ap_scan_script_header_err_strs() accepts additional const char* args...
655  * each is treated as one or more header lines, and the first non-header
656  * character is returned to **arg, **data.  (The first optional arg is
657  * counted as 0.)
658  */
659 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r, 
660                                                       char *buffer, 
661                                                       const char **termch,
662                                                       int *termarg, ...)
663 {
664     struct vastrs strs;
665     int res;
666
667     va_start(strs.args, termarg);
668     strs.arg = 0;
669     strs.curpos = va_arg(strs.args, char*);
670     res = ap_scan_script_header_err_core(r, buffer, getsfunc_STRING, (void *) &strs);
671     if (termch)
672         *termch = strs.curpos;
673     if (termarg)
674         *termarg = strs.arg;
675     va_end(strs.args);
676     return res;
677 }