]> granicus.if.org Git - apache/blob - server/util_script.c
mod_session_cookie: Add a session implementation capable of storing
[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 #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_banner());
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         if (path_info[lp] == '/') {
294             while (lu && uri[lu-1] == '/') lu--;
295         }
296     }
297
298     if (lu == -1) {
299         lu = 0;
300     }
301
302     while (uri[lu] != '\0' && uri[lu] != '/') {
303         lu++;
304     }
305     return lu;
306 }
307
308 /* Obtain the Request-URI from the original request-line, returning
309  * a new string from the request pool containing the URI or "".
310  */
311 static char *original_uri(request_rec *r)
312 {
313     char *first, *last;
314
315     if (r->the_request == NULL) {
316         return (char *) apr_pcalloc(r->pool, 1);
317     }
318
319     first = r->the_request;     /* use the request-line */
320
321     while (*first && !apr_isspace(*first)) {
322         ++first;                /* skip over the method */
323     }
324     while (apr_isspace(*first)) {
325         ++first;                /*   and the space(s)   */
326     }
327
328     last = first;
329     while (*last && !apr_isspace(*last)) {
330         ++last;                 /* end at next whitespace */
331     }
332
333     return apr_pstrmemdup(r->pool, first, last - first);
334 }
335
336 AP_DECLARE(void) ap_add_cgi_vars(request_rec *r)
337 {
338     apr_table_t *e = r->subprocess_env;
339
340     apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
341     apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);
342     apr_table_setn(e, "REQUEST_METHOD", r->method);
343     apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
344     apr_table_setn(e, "REQUEST_URI", original_uri(r));
345
346     /* Note that the code below special-cases scripts run from includes,
347      * because it "knows" that the sub_request has been hacked to have the
348      * args and path_info of the original request, and not any that may have
349      * come with the script URI in the include command.  Ugh.
350      */
351
352     if (!strcmp(r->protocol, "INCLUDED")) {
353         apr_table_setn(e, "SCRIPT_NAME", r->uri);
354         if (r->path_info && *r->path_info) {
355             apr_table_setn(e, "PATH_INFO", r->path_info);
356         }
357     }
358     else if (!r->path_info || !*r->path_info) {
359         apr_table_setn(e, "SCRIPT_NAME", r->uri);
360     }
361     else {
362         int path_info_start = ap_find_path_info(r->uri, r->path_info);
363
364         apr_table_setn(e, "SCRIPT_NAME",
365                       apr_pstrndup(r->pool, r->uri, path_info_start));
366
367         apr_table_setn(e, "PATH_INFO", r->path_info);
368     }
369
370     if (r->path_info && r->path_info[0]) {
371         /*
372          * To get PATH_TRANSLATED, treat PATH_INFO as a URI path.
373          * Need to re-escape it for this, since the entire URI was
374          * un-escaped before we determined where the PATH_INFO began.
375          */
376         request_rec *pa_req;
377
378         pa_req = ap_sub_req_lookup_uri(ap_escape_uri(r->pool, r->path_info), r,
379                                        NULL);
380
381         if (pa_req->filename) {
382             char *pt = apr_pstrcat(r->pool, pa_req->filename, pa_req->path_info,
383                                   NULL);
384 #ifdef WIN32
385             /* We need to make this a real Windows path name */
386             apr_filepath_merge(&pt, "", pt, APR_FILEPATH_NATIVE, r->pool);
387 #endif
388             apr_table_setn(e, "PATH_TRANSLATED", pt);
389         }
390         ap_destroy_sub_req(pa_req);
391     }
392 }
393
394
395 static int set_cookie_doo_doo(void *v, const char *key, const char *val)
396 {
397     apr_table_addn(v, key, val);
398     return 1;
399 }
400
401 #define HTTP_UNSET (-HTTP_OK)
402
403 AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
404                                        int (*getsfunc) (char *, int, void *),
405                                        void *getsfunc_data)
406 {
407     char x[MAX_STRING_LEN];
408     char *w, *l;
409     int p;
410     int cgi_status = HTTP_UNSET;
411     apr_table_t *merge;
412     apr_table_t *cookie_table;
413
414     if (buffer) {
415         *buffer = '\0';
416     }
417     w = buffer ? buffer : x;
418
419     /* temporary place to hold headers to merge in later */
420     merge = apr_table_make(r->pool, 10);
421
422     /* The HTTP specification says that it is legal to merge duplicate
423      * headers into one.  Some browsers that support Cookies don't like
424      * merged headers and prefer that each Set-Cookie header is sent
425      * separately.  Lets humour those browsers by not merging.
426      * Oh what a pain it is.
427      */
428     cookie_table = apr_table_make(r->pool, 2);
429     apr_table_do(set_cookie_doo_doo, cookie_table, r->err_headers_out, "Set-Cookie", NULL);
430
431     while (1) {
432
433         if ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data) == 0) {
434             ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
435                           "Premature end of script headers: %s",
436                           apr_filepath_name_get(r->filename));
437             return HTTP_INTERNAL_SERVER_ERROR;
438         }
439
440         /* Delete terminal (CR?)LF */
441
442         p = strlen(w);
443              /* Indeed, the host's '\n':
444                 '\012' for UNIX; '\015' for MacOS; '\025' for OS/390
445                  -- whatever the script generates.
446              */
447         if (p > 0 && w[p - 1] == '\n') {
448             if (p > 1 && w[p - 2] == CR) {
449                 w[p - 2] = '\0';
450             }
451             else {
452                 w[p - 1] = '\0';
453             }
454         }
455
456         /*
457          * If we've finished reading the headers, check to make sure any
458          * HTTP/1.1 conditions are met.  If so, we're done; normal processing
459          * will handle the script's output.  If not, just return the error.
460          * The appropriate thing to do would be to send the script process a
461          * SIGPIPE to let it know we're ignoring it, close the channel to the
462          * script process, and *then* return the failed-to-meet-condition
463          * error.  Otherwise we'd be waiting for the script to finish
464          * blithering before telling the client the output was no good.
465          * However, we don't have the information to do that, so we have to
466          * leave it to an upper layer.
467          */
468         if (w[0] == '\0') {
469             int cond_status = OK;
470
471             /* PR#38070: This fails because it gets confused when a
472              * CGI Status header overrides ap_meets_conditions.
473              * 
474              * We can fix that by dropping ap_meets_conditions when
475              * Status has been set.  Since this is the only place
476              * cgi_status gets used, let's test it explicitly.
477              *
478              * The alternative would be to ignore CGI Status when
479              * ap_meets_conditions returns anything interesting.
480              * That would be safer wrt HTTP, but would break CGI.
481              */
482             if ((cgi_status == HTTP_UNSET) && (r->method_number == M_GET)) {
483                 cond_status = ap_meets_conditions(r);
484             }
485             apr_table_overlap(r->err_headers_out, merge,
486                 APR_OVERLAP_TABLES_MERGE);
487             if (!apr_is_empty_table(cookie_table)) {
488                 /* the cookies have already been copied to the cookie_table */
489                 apr_table_unset(r->err_headers_out, "Set-Cookie");
490                 r->err_headers_out = apr_table_overlay(r->pool,
491                     r->err_headers_out, cookie_table);
492             }
493             return cond_status;
494         }
495
496         /* if we see a bogus header don't ignore it. Shout and scream */
497
498 #if APR_CHARSET_EBCDIC
499             /* Chances are that we received an ASCII header text instead of
500              * the expected EBCDIC header lines. Try to auto-detect:
501              */
502         if (!(l = strchr(w, ':'))) {
503             int maybeASCII = 0, maybeEBCDIC = 0;
504             unsigned char *cp, native;
505             apr_size_t inbytes_left, outbytes_left;
506
507             for (cp = w; *cp != '\0'; ++cp) {
508                 native = apr_xlate_conv_byte(ap_hdrs_from_ascii, *cp);
509                 if (apr_isprint(*cp) && !apr_isprint(native))
510                     ++maybeEBCDIC;
511                 if (!apr_isprint(*cp) && apr_isprint(native))
512                     ++maybeASCII;
513             }
514             if (maybeASCII > maybeEBCDIC) {
515                 ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
516                              "CGI Interface Error: Script headers apparently ASCII: (CGI = %s)",
517                              r->filename);
518                 inbytes_left = outbytes_left = cp - w;
519                 apr_xlate_conv_buffer(ap_hdrs_from_ascii,
520                                       w, &inbytes_left, w, &outbytes_left);
521             }
522         }
523 #endif /*APR_CHARSET_EBCDIC*/
524         if (!(l = strchr(w, ':'))) {
525             char malformed[(sizeof MALFORMED_MESSAGE) + 1
526                            + MALFORMED_HEADER_LENGTH_TO_SHOW];
527
528             strcpy(malformed, MALFORMED_MESSAGE);
529             strncat(malformed, w, MALFORMED_HEADER_LENGTH_TO_SHOW);
530
531             if (!buffer) {
532                 /* Soak up all the script output - may save an outright kill */
533                 while ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data)) {
534                     continue;
535                 }
536             }
537
538             ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_TOCLIENT, 0, r,
539                           "%s: %s", malformed,
540                           apr_filepath_name_get(r->filename));
541             return HTTP_INTERNAL_SERVER_ERROR;
542         }
543
544         *l++ = '\0';
545         while (*l && apr_isspace(*l)) {
546             ++l;
547         }
548
549         if (!strcasecmp(w, "Content-type")) {
550             char *tmp;
551
552             /* Nuke trailing whitespace */
553
554             char *endp = l + strlen(l) - 1;
555             while (endp > l && apr_isspace(*endp)) {
556                 *endp-- = '\0';
557             }
558
559             tmp = apr_pstrdup(r->pool, l);
560             ap_content_type_tolower(tmp);
561             ap_set_content_type(r, tmp);
562         }
563         /*
564          * If the script returned a specific status, that's what
565          * we'll use - otherwise we assume 200 OK.
566          */
567         else if (!strcasecmp(w, "Status")) {
568             r->status = cgi_status = atoi(l);
569             r->status_line = apr_pstrdup(r->pool, l);
570         }
571         else if (!strcasecmp(w, "Location")) {
572             apr_table_set(r->headers_out, w, l);
573         }
574         else if (!strcasecmp(w, "Content-Length")) {
575             apr_table_set(r->headers_out, w, l);
576         }
577         else if (!strcasecmp(w, "Content-Range")) {
578             apr_table_set(r->headers_out, w, l);
579         }
580         else if (!strcasecmp(w, "Transfer-Encoding")) {
581             apr_table_set(r->headers_out, w, l);
582         }
583         else if (!strcasecmp(w, "ETag")) {
584             apr_table_set(r->headers_out, w, l);
585         }
586         /*
587          * If the script gave us a Last-Modified header, we can't just
588          * pass it on blindly because of restrictions on future values.
589          */
590         else if (!strcasecmp(w, "Last-Modified")) {
591             ap_update_mtime(r, apr_date_parse_http(l));
592             ap_set_last_modified(r);
593         }
594         else if (!strcasecmp(w, "Set-Cookie")) {
595             apr_table_add(cookie_table, w, l);
596         }
597         else {
598             apr_table_add(merge, w, l);
599         }
600     }
601
602     return OK;
603 }
604
605 static int getsfunc_FILE(char *buf, int len, void *f)
606 {
607     return apr_file_gets(buf, len, (apr_file_t *) f) == APR_SUCCESS;
608 }
609
610 AP_DECLARE(int) ap_scan_script_header_err(request_rec *r, apr_file_t *f,
611                                           char *buffer)
612 {
613     return ap_scan_script_header_err_core(r, buffer, getsfunc_FILE, f);
614 }
615
616 static int getsfunc_BRIGADE(char *buf, int len, void *arg)
617 {
618     apr_bucket_brigade *bb = (apr_bucket_brigade *)arg;
619     const char *dst_end = buf + len - 1; /* leave room for terminating null */
620     char *dst = buf;
621     apr_bucket *e = APR_BRIGADE_FIRST(bb);
622     apr_status_t rv;
623     int done = 0;
624
625     while ((dst < dst_end) && !done && !APR_BUCKET_IS_EOS(e)) {
626         const char *bucket_data;
627         apr_size_t bucket_data_len;
628         const char *src;
629         const char *src_end;
630         apr_bucket * next;
631
632         rv = apr_bucket_read(e, &bucket_data, &bucket_data_len,
633                              APR_BLOCK_READ);
634         if (rv != APR_SUCCESS || (bucket_data_len == 0)) {
635             return 0;
636         }
637         src = bucket_data;
638         src_end = bucket_data + bucket_data_len;
639         while ((src < src_end) && (dst < dst_end) && !done) {
640             if (*src == '\n') {
641                 done = 1;
642             }
643             else if (*src != '\r') {
644                 *dst++ = *src;
645             }
646             src++;
647         }
648
649         if (src < src_end) {
650             apr_bucket_split(e, src - bucket_data);
651         }
652         next = APR_BUCKET_NEXT(e);
653         APR_BUCKET_REMOVE(e);
654         apr_bucket_destroy(e);
655         e = next;
656     }
657     *dst = 0;
658     return 1;
659 }
660
661 AP_DECLARE(int) ap_scan_script_header_err_brigade(request_rec *r,
662                                                   apr_bucket_brigade *bb,
663                                                   char *buffer)
664 {
665     return ap_scan_script_header_err_core(r, buffer, getsfunc_BRIGADE, bb);
666 }
667
668 struct vastrs {
669     va_list args;
670     int arg;
671     const char *curpos;
672 };
673
674 static int getsfunc_STRING(char *w, int len, void *pvastrs)
675 {
676     struct vastrs *strs = (struct vastrs*) pvastrs;
677     const char *p;
678     int t;
679
680     if (!strs->curpos || !*strs->curpos)
681         return 0;
682     p = ap_strchr_c(strs->curpos, '\n');
683     if (p)
684         ++p;
685     else
686         p = ap_strchr_c(strs->curpos, '\0');
687     t = p - strs->curpos;
688     if (t > len)
689         t = len;
690     strncpy (w, strs->curpos, t);
691     w[t] = '\0';
692     if (!strs->curpos[t]) {
693         ++strs->arg;
694         strs->curpos = va_arg(strs->args, const char *);
695     }
696     else
697         strs->curpos += t;
698     return t;
699 }
700
701 /* ap_scan_script_header_err_strs() accepts additional const char* args...
702  * each is treated as one or more header lines, and the first non-header
703  * character is returned to **arg, **data.  (The first optional arg is
704  * counted as 0.)
705  */
706 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r,
707                                                       char *buffer,
708                                                       const char **termch,
709                                                       int *termarg, ...)
710 {
711     struct vastrs strs;
712     int res;
713
714     va_start(strs.args, termarg);
715     strs.arg = 0;
716     strs.curpos = va_arg(strs.args, char*);
717     res = ap_scan_script_header_err_core(r, buffer, getsfunc_STRING, (void *) &strs);
718     if (termch)
719         *termch = strs.curpos;
720     if (termarg)
721         *termarg = strs.arg;
722     va_end(strs.args);
723     return res;
724 }