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