]> granicus.if.org Git - apache/blob - server/util.c
avoid duplication of APR_HOOK_LINK invocations
[apache] / server / util.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 /*
18  * util.c: string utility things
19  *
20  * 3/21/93 Rob McCool
21  * 1995-96 Many changes by the Apache Software Foundation
22  *
23  */
24
25 /* Debugging aid:
26  * #define DEBUG            to trace all cfg_open*()/cfg_closefile() calls
27  * #define DEBUG_CFG_LINES  to trace every line read from the config files
28  */
29
30 #include "apr.h"
31 #include "apr_strings.h"
32 #include "apr_lib.h"
33 #include "apr_md5.h"            /* for apr_password_validate */
34
35 #define APR_WANT_STDIO
36 #define APR_WANT_STRFUNC
37 #include "apr_want.h"
38
39 #if APR_HAVE_UNISTD_H
40 #include <unistd.h>
41 #endif
42 #if APR_HAVE_PROCESS_H
43 #include <process.h>            /* for getpid() on Win32 */
44 #endif
45 #if APR_HAVE_NETDB_H
46 #include <netdb.h>              /* for gethostbyname() */
47 #endif
48
49 #include "ap_config.h"
50 #include "apr_base64.h"
51 #include "httpd.h"
52 #include "http_main.h"
53 #include "http_log.h"
54 #include "http_protocol.h"
55 #include "http_config.h"
56 #include "http_core.h"
57 #include "util_ebcdic.h"
58 #include "util_varbuf.h"
59
60 #ifdef HAVE_PWD_H
61 #include <pwd.h>
62 #endif
63 #ifdef HAVE_GRP_H
64 #include <grp.h>
65 #endif
66 #ifdef HAVE_SYS_LOADAVG_H
67 #include <sys/loadavg.h>
68 #endif
69
70 #include "ap_mpm.h"
71
72 /* A bunch of functions in util.c scan strings looking for certain characters.
73  * To make that more efficient we encode a lookup table.  The test_char_table
74  * is generated automatically by gen_test_char.c.
75  */
76 #include "test_char.h"
77
78 /* we assume the folks using this ensure 0 <= c < 256... which means
79  * you need a cast to (unsigned char) first, you can't just plug a
80  * char in here and get it to work, because if char is signed then it
81  * will first be sign extended.
82  */
83 #define TEST_CHAR(c, f)        (test_char_table[(unsigned)(c)] & (f))
84
85 /* Win32/NetWare/OS2 need to check for both forward and back slashes
86  * in ap_getparents() and ap_escape_url.
87  */
88 #ifdef CASE_BLIND_FILESYSTEM
89 #define IS_SLASH(s) ((s == '/') || (s == '\\'))
90 #define SLASHES "/\\"
91 #else
92 #define IS_SLASH(s) (s == '/')
93 #define SLASHES "/"
94 #endif
95
96 /* we know core's module_index is 0 */
97 #undef APLOG_MODULE_INDEX
98 #define APLOG_MODULE_INDEX AP_CORE_MODULE_INDEX
99
100
101 /*
102  * Examine a field value (such as a media-/content-type) string and return
103  * it sans any parameters; e.g., strip off any ';charset=foo' and the like.
104  */
105 AP_DECLARE(char *) ap_field_noparam(apr_pool_t *p, const char *intype)
106 {
107     const char *semi;
108
109     if (intype == NULL) return NULL;
110
111     semi = ap_strchr_c(intype, ';');
112     if (semi == NULL) {
113         return apr_pstrdup(p, intype);
114     }
115     else {
116         while ((semi > intype) && apr_isspace(semi[-1])) {
117             semi--;
118         }
119         return apr_pstrndup(p, intype, semi - intype);
120     }
121 }
122
123 AP_DECLARE(char *) ap_ht_time(apr_pool_t *p, apr_time_t t, const char *fmt,
124                               int gmt)
125 {
126     apr_size_t retcode;
127     char ts[MAX_STRING_LEN];
128     char tf[MAX_STRING_LEN];
129     apr_time_exp_t xt;
130
131     if (gmt) {
132         const char *f;
133         char *strp;
134
135         apr_time_exp_gmt(&xt, t);
136         /* Convert %Z to "GMT" and %z to "+0000";
137          * on hosts that do not have a time zone string in struct tm,
138          * strftime must assume its argument is local time.
139          */
140         for(strp = tf, f = fmt; strp < tf + sizeof(tf) - 6 && (*strp = *f)
141             ; f++, strp++) {
142             if (*f != '%') continue;
143             switch (f[1]) {
144             case '%':
145                 *++strp = *++f;
146                 break;
147             case 'Z':
148                 *strp++ = 'G';
149                 *strp++ = 'M';
150                 *strp = 'T';
151                 f++;
152                 break;
153             case 'z': /* common extension */
154                 *strp++ = '+';
155                 *strp++ = '0';
156                 *strp++ = '0';
157                 *strp++ = '0';
158                 *strp = '0';
159                 f++;
160                 break;
161             }
162         }
163         *strp = '\0';
164         fmt = tf;
165     }
166     else {
167         apr_time_exp_lt(&xt, t);
168     }
169
170     /* check return code? */
171     apr_strftime(ts, &retcode, MAX_STRING_LEN, fmt, &xt);
172     ts[MAX_STRING_LEN - 1] = '\0';
173     return apr_pstrdup(p, ts);
174 }
175
176 /* Roy owes Rob beer. */
177 /* Rob owes Roy dinner. */
178
179 /* These legacy comments would make a lot more sense if Roy hadn't
180  * replaced the old later_than() routine with util_date.c.
181  *
182  * Well, okay, they still wouldn't make any sense.
183  */
184
185 /* Match = 0, NoMatch = 1, Abort = -1
186  * Based loosely on sections of wildmat.c by Rich Salz
187  * Hmmm... shouldn't this really go component by component?
188  */
189 AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected)
190 {
191     int x, y;
192
193     for (x = 0, y = 0; expected[y]; ++y, ++x) {
194         if ((!str[x]) && (expected[y] != '*'))
195             return -1;
196         if (expected[y] == '*') {
197             while (expected[++y] == '*');
198             if (!expected[y])
199                 return 0;
200             while (str[x]) {
201                 int ret;
202                 if ((ret = ap_strcmp_match(&str[x++], &expected[y])) != 1)
203                     return ret;
204             }
205             return -1;
206         }
207         else if ((expected[y] != '?') && (str[x] != expected[y]))
208             return 1;
209     }
210     return (str[x] != '\0');
211 }
212
213 AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *expected)
214 {
215     int x, y;
216
217     for (x = 0, y = 0; expected[y]; ++y, ++x) {
218         if (!str[x] && expected[y] != '*')
219             return -1;
220         if (expected[y] == '*') {
221             while (expected[++y] == '*');
222             if (!expected[y])
223                 return 0;
224             while (str[x]) {
225                 int ret;
226                 if ((ret = ap_strcasecmp_match(&str[x++], &expected[y])) != 1)
227                     return ret;
228             }
229             return -1;
230         }
231         else if (expected[y] != '?'
232                  && apr_tolower(str[x]) != apr_tolower(expected[y]))
233             return 1;
234     }
235     return (str[x] != '\0');
236 }
237
238 /* We actually compare the canonical root to this root, (but we don't
239  * waste time checking the case), since every use of this function in
240  * httpd-2.1 tests if the path is 'proper', meaning we've already passed
241  * it through apr_filepath_merge, or we haven't.
242  */
243 AP_DECLARE(int) ap_os_is_path_absolute(apr_pool_t *p, const char *dir)
244 {
245     const char *newpath;
246     const char *ourdir = dir;
247     if (apr_filepath_root(&newpath, &dir, 0, p) != APR_SUCCESS
248             || strncmp(newpath, ourdir, strlen(newpath)) != 0) {
249         return 0;
250     }
251     return 1;
252 }
253
254 AP_DECLARE(int) ap_is_matchexp(const char *str)
255 {
256     register int x;
257
258     for (x = 0; str[x]; x++)
259         if ((str[x] == '*') || (str[x] == '?'))
260             return 1;
261     return 0;
262 }
263
264 /*
265  * Here's a pool-based interface to the POSIX-esque ap_regcomp().
266  * Note that we return ap_regex_t instead of being passed one.
267  * The reason is that if you use an already-used ap_regex_t structure,
268  * the memory that you've already allocated gets forgotten, and
269  * regfree() doesn't clear it. So we don't allow it.
270  */
271
272 static apr_status_t regex_cleanup(void *preg)
273 {
274     ap_regfree((ap_regex_t *) preg);
275     return APR_SUCCESS;
276 }
277
278 AP_DECLARE(ap_regex_t *) ap_pregcomp(apr_pool_t *p, const char *pattern,
279                                      int cflags)
280 {
281     ap_regex_t *preg = apr_palloc(p, sizeof *preg);
282     int err = ap_regcomp(preg, pattern, cflags);
283     if (err) {
284         if (err == AP_REG_ESPACE)
285             ap_abort_on_oom();
286         return NULL;
287     }
288
289     apr_pool_cleanup_register(p, (void *) preg, regex_cleanup,
290                               apr_pool_cleanup_null);
291
292     return preg;
293 }
294
295 AP_DECLARE(void) ap_pregfree(apr_pool_t *p, ap_regex_t *reg)
296 {
297     ap_regfree(reg);
298     apr_pool_cleanup_kill(p, (void *) reg, regex_cleanup);
299 }
300
301 /*
302  * Similar to standard strstr() but we ignore case in this version.
303  * Based on the strstr() implementation further below.
304  */
305 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2)
306 {
307     char *p1, *p2;
308     if (*s2 == '\0') {
309         /* an empty s2 */
310         return((char *)s1);
311     }
312     while(1) {
313         for ( ; (*s1 != '\0') && (apr_tolower(*s1) != apr_tolower(*s2)); s1++);
314         if (*s1 == '\0') {
315             return(NULL);
316         }
317         /* found first character of s2, see if the rest matches */
318         p1 = (char *)s1;
319         p2 = (char *)s2;
320         for (++p1, ++p2; apr_tolower(*p1) == apr_tolower(*p2); ++p1, ++p2) {
321             if (*p1 == '\0') {
322                 /* both strings ended together */
323                 return((char *)s1);
324             }
325         }
326         if (*p2 == '\0') {
327             /* second string ended, a match */
328             break;
329         }
330         /* didn't find a match here, try starting at next character in s1 */
331         s1++;
332     }
333     return((char *)s1);
334 }
335
336 /*
337  * Returns an offsetted pointer in bigstring immediately after
338  * prefix. Returns bigstring if bigstring doesn't start with
339  * prefix or if prefix is longer than bigstring while still matching.
340  * NOTE: pointer returned is relative to bigstring, so we
341  * can use standard pointer comparisons in the calling function
342  * (eg: test if ap_stripprefix(a,b) == a)
343  */
344 AP_DECLARE(const char *) ap_stripprefix(const char *bigstring,
345                                         const char *prefix)
346 {
347     const char *p1;
348
349     if (*prefix == '\0')
350         return bigstring;
351
352     p1 = bigstring;
353     while (*p1 && *prefix) {
354         if (*p1++ != *prefix++)
355             return bigstring;
356     }
357     if (*prefix == '\0')
358         return p1;
359
360     /* hit the end of bigstring! */
361     return bigstring;
362 }
363
364 /* This function substitutes for $0-$9, filling in regular expression
365  * submatches. Pass it the same nmatch and pmatch arguments that you
366  * passed ap_regexec(). pmatch should not be greater than the maximum number
367  * of subexpressions - i.e. one more than the re_nsub member of ap_regex_t.
368  *
369  * nmatch must be <=AP_MAX_REG_MATCH (10).
370  *
371  * input should be the string with the $-expressions, source should be the
372  * string that was matched against.
373  *
374  * It returns the substituted string, or NULL if a vbuf is used.
375  * On errors, returns the orig string.
376  *
377  * Parts of this code are based on Henry Spencer's regsub(), from his
378  * AT&T V8 regexp package.
379  */
380
381 static apr_status_t regsub_core(apr_pool_t *p, char **result,
382                                 struct ap_varbuf *vb, const char *input,
383                                 const char *source, apr_size_t nmatch,
384                                 ap_regmatch_t pmatch[], apr_size_t maxlen)
385 {
386     const char *src = input;
387     char *dst;
388     char c;
389     apr_size_t no;
390     apr_size_t len = 0;
391
392     AP_DEBUG_ASSERT((result && p && !vb) || (vb && !p && !result));
393     if (!source || nmatch>AP_MAX_REG_MATCH)
394         return APR_EINVAL;
395     if (!nmatch) {
396         len = strlen(src);
397         if (maxlen > 0 && len >= maxlen)
398             return APR_ENOMEM;
399         if (!vb) {
400             *result = apr_pstrmemdup(p, src, len);
401             return APR_SUCCESS;
402         }
403         else {
404             ap_varbuf_strmemcat(vb, src, len);
405             return APR_SUCCESS;
406         }
407     }
408
409     /* First pass, find the size */
410     while ((c = *src++) != '\0') {
411         if (c == '$' && apr_isdigit(*src))
412             no = *src++ - '0';
413         else
414             no = AP_MAX_REG_MATCH;
415
416         if (no >= AP_MAX_REG_MATCH) {  /* Ordinary character. */
417             if (c == '\\' && *src)
418                 src++;
419             len++;
420         }
421         else if (no < nmatch && pmatch[no].rm_so < pmatch[no].rm_eo) {
422             if (APR_SIZE_MAX - len <= pmatch[no].rm_eo - pmatch[no].rm_so)
423                 return APR_ENOMEM;
424             len += pmatch[no].rm_eo - pmatch[no].rm_so;
425         }
426
427     }
428
429     if (len >= maxlen && maxlen > 0)
430         return APR_ENOMEM;
431
432     if (!vb) {
433         *result = dst = apr_palloc(p, len + 1);
434     }
435     else {
436         if (vb->strlen == AP_VARBUF_UNKNOWN)
437             vb->strlen = strlen(vb->buf);
438         ap_varbuf_grow(vb, vb->strlen + len);
439         dst = vb->buf + vb->strlen;
440         vb->strlen += len;
441     }
442
443     /* Now actually fill in the string */
444
445     src = input;
446
447     while ((c = *src++) != '\0') {
448         if (c == '$' && apr_isdigit(*src))
449             no = *src++ - '0';
450         else
451             no = AP_MAX_REG_MATCH;
452
453         if (no >= AP_MAX_REG_MATCH) {  /* Ordinary character. */
454             if (c == '\\' && *src)
455                 c = *src++;
456             *dst++ = c;
457         }
458         else if (no < nmatch && pmatch[no].rm_so < pmatch[no].rm_eo) {
459             len = pmatch[no].rm_eo - pmatch[no].rm_so;
460             memcpy(dst, source + pmatch[no].rm_so, len);
461             dst += len;
462         }
463
464     }
465     *dst = '\0';
466
467     return APR_SUCCESS;
468 }
469
470 #ifndef AP_PREGSUB_MAXLEN
471 #define AP_PREGSUB_MAXLEN   (HUGE_STRING_LEN * 8)
472 #endif
473 AP_DECLARE(char *) ap_pregsub(apr_pool_t *p, const char *input,
474                               const char *source, apr_size_t nmatch,
475                               ap_regmatch_t pmatch[])
476 {
477     char *result;
478     apr_status_t rc = regsub_core(p, &result, NULL, input, source, nmatch,
479                                   pmatch, AP_PREGSUB_MAXLEN);
480     if (rc != APR_SUCCESS)
481         result = NULL;
482     return result;
483 }
484
485 AP_DECLARE(apr_status_t) ap_pregsub_ex(apr_pool_t *p, char **result,
486                                        const char *input, const char *source,
487                                        apr_size_t nmatch, ap_regmatch_t pmatch[],
488                                        apr_size_t maxlen)
489 {
490     apr_status_t rc = regsub_core(p, result, NULL, input, source, nmatch,
491                                   pmatch, maxlen);
492     if (rc != APR_SUCCESS)
493         *result = NULL;
494     return rc;
495 }
496
497 /*
498  * Parse .. so we don't compromise security
499  */
500 AP_DECLARE(void) ap_getparents(char *name)
501 {
502     char *next;
503     int l, w, first_dot;
504
505     /* Four paseses, as per RFC 1808 */
506     /* a) remove ./ path segments */
507     for (next = name; *next && (*next != '.'); next++) {
508     }
509
510     l = w = first_dot = next - name;
511     while (name[l] != '\0') {
512         if (name[l] == '.' && IS_SLASH(name[l + 1])
513             && (l == 0 || IS_SLASH(name[l - 1])))
514             l += 2;
515         else
516             name[w++] = name[l++];
517     }
518
519     /* b) remove trailing . path, segment */
520     if (w == 1 && name[0] == '.')
521         w--;
522     else if (w > 1 && name[w - 1] == '.' && IS_SLASH(name[w - 2]))
523         w--;
524     name[w] = '\0';
525
526     /* c) remove all xx/../ segments. (including leading ../ and /../) */
527     l = first_dot;
528
529     while (name[l] != '\0') {
530         if (name[l] == '.' && name[l + 1] == '.' && IS_SLASH(name[l + 2])
531             && (l == 0 || IS_SLASH(name[l - 1]))) {
532             register int m = l + 3, n;
533
534             l = l - 2;
535             if (l >= 0) {
536                 while (l >= 0 && !IS_SLASH(name[l]))
537                     l--;
538                 l++;
539             }
540             else
541                 l = 0;
542             n = l;
543             while ((name[n] = name[m]))
544                 (++n, ++m);
545         }
546         else
547             ++l;
548     }
549
550     /* d) remove trailing xx/.. segment. */
551     if (l == 2 && name[0] == '.' && name[1] == '.')
552         name[0] = '\0';
553     else if (l > 2 && name[l - 1] == '.' && name[l - 2] == '.'
554              && IS_SLASH(name[l - 3])) {
555         l = l - 4;
556         if (l >= 0) {
557             while (l >= 0 && !IS_SLASH(name[l]))
558                 l--;
559             l++;
560         }
561         else
562             l = 0;
563         name[l] = '\0';
564     }
565 }
566
567 AP_DECLARE(void) ap_no2slash(char *name)
568 {
569     char *d, *s;
570
571     s = d = name;
572
573 #ifdef HAVE_UNC_PATHS
574     /* Check for UNC names.  Leave leading two slashes. */
575     if (s[0] == '/' && s[1] == '/')
576         *d++ = *s++;
577 #endif
578
579     while (*s) {
580         if ((*d++ = *s) == '/') {
581             do {
582                 ++s;
583             } while (*s == '/');
584         }
585         else {
586             ++s;
587         }
588     }
589     *d = '\0';
590 }
591
592
593 /*
594  * copy at most n leading directories of s into d
595  * d should be at least as large as s plus 1 extra byte
596  * assumes n > 0
597  * the return value is the ever useful pointer to the trailing \0 of d
598  *
599  * MODIFIED FOR HAVE_DRIVE_LETTERS and NETWARE environments,
600  * so that if n == 0, "/" is returned in d with n == 1
601  * and s == "e:/test.html", "e:/" is returned in d
602  * *** See also directory_walk in modules/http/http_request.c
603
604  * examples:
605  *    /a/b, 0  ==> /  (true for all platforms)
606  *    /a/b, 1  ==> /
607  *    /a/b, 2  ==> /a/
608  *    /a/b, 3  ==> /a/b/
609  *    /a/b, 4  ==> /a/b/
610  *
611  *    c:/a/b 0 ==> /
612  *    c:/a/b 1 ==> c:/
613  *    c:/a/b 2 ==> c:/a/
614  *    c:/a/b 3 ==> c:/a/b
615  *    c:/a/b 4 ==> c:/a/b
616  */
617 AP_DECLARE(char *) ap_make_dirstr_prefix(char *d, const char *s, int n)
618 {
619     if (n < 1) {
620         *d = '/';
621         *++d = '\0';
622         return (d);
623     }
624
625     for (;;) {
626         if (*s == '\0' || (*s == '/' && (--n) == 0)) {
627             *d = '/';
628             break;
629         }
630         *d++ = *s++;
631     }
632     *++d = 0;
633     return (d);
634 }
635
636
637 /*
638  * return the parent directory name including trailing / of the file s
639  */
640 AP_DECLARE(char *) ap_make_dirstr_parent(apr_pool_t *p, const char *s)
641 {
642     const char *last_slash = ap_strrchr_c(s, '/');
643     char *d;
644     int l;
645
646     if (last_slash == NULL) {
647         return apr_pstrdup(p, "");
648     }
649     l = (last_slash - s) + 1;
650     d = apr_pstrmemdup(p, s, l);
651
652     return (d);
653 }
654
655
656 AP_DECLARE(int) ap_count_dirs(const char *path)
657 {
658     register int x, n;
659
660     for (x = 0, n = 0; path[x]; x++)
661         if (path[x] == '/')
662             n++;
663     return n;
664 }
665
666 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *atrans, char **line, char stop)
667 {
668     return ap_getword(atrans, (const char **) line, stop);
669 }
670
671 AP_DECLARE(char *) ap_getword(apr_pool_t *atrans, const char **line, char stop)
672 {
673     const char *pos = *line;
674     int len;
675     char *res;
676
677     while ((*pos != stop) && *pos) {
678         ++pos;
679     }
680
681     len = pos - *line;
682     res = apr_pstrmemdup(atrans, *line, len);
683
684     if (stop) {
685         while (*pos == stop) {
686             ++pos;
687         }
688     }
689     *line = pos;
690
691     return res;
692 }
693
694 AP_DECLARE(char *) ap_getword_white_nc(apr_pool_t *atrans, char **line)
695 {
696     return ap_getword_white(atrans, (const char **) line);
697 }
698
699 AP_DECLARE(char *) ap_getword_white(apr_pool_t *atrans, const char **line)
700 {
701     const char *pos = *line;
702     int len;
703     char *res;
704
705     while (!apr_isspace(*pos) && *pos) {
706         ++pos;
707     }
708
709     len = pos - *line;
710     res = apr_pstrmemdup(atrans, *line, len);
711
712     while (apr_isspace(*pos)) {
713         ++pos;
714     }
715
716     *line = pos;
717
718     return res;
719 }
720
721 AP_DECLARE(char *) ap_getword_nulls_nc(apr_pool_t *atrans, char **line,
722                                        char stop)
723 {
724     return ap_getword_nulls(atrans, (const char **) line, stop);
725 }
726
727 AP_DECLARE(char *) ap_getword_nulls(apr_pool_t *atrans, const char **line,
728                                     char stop)
729 {
730     const char *pos = ap_strchr_c(*line, stop);
731     char *res;
732
733     if (!pos) {
734         apr_size_t len = strlen(*line);
735         res = apr_pstrmemdup(atrans, *line, len);
736         *line += len;
737         return res;
738     }
739
740     res = apr_pstrndup(atrans, *line, pos - *line);
741
742     ++pos;
743
744     *line = pos;
745
746     return res;
747 }
748
749 /* Get a word, (new) config-file style --- quoted strings and backslashes
750  * all honored
751  */
752
753 static char *substring_conf(apr_pool_t *p, const char *start, int len,
754                             char quote)
755 {
756     char *result = apr_palloc(p, len + 1);
757     char *resp = result;
758     int i;
759
760     for (i = 0; i < len; ++i) {
761         if (start[i] == '\\' && (start[i + 1] == '\\'
762                                  || (quote && start[i + 1] == quote)))
763             *resp++ = start[++i];
764         else
765             *resp++ = start[i];
766     }
767
768     *resp++ = '\0';
769 #if RESOLVE_ENV_PER_TOKEN
770     return (char *)ap_resolve_env(p,result);
771 #else
772     return result;
773 #endif
774 }
775
776 AP_DECLARE(char *) ap_getword_conf_nc(apr_pool_t *p, char **line)
777 {
778     return ap_getword_conf(p, (const char **) line);
779 }
780
781 AP_DECLARE(char *) ap_getword_conf(apr_pool_t *p, const char **line)
782 {
783     const char *str = *line, *strend;
784     char *res;
785     char quote;
786
787     while (apr_isspace(*str))
788         ++str;
789
790     if (!*str) {
791         *line = str;
792         return "";
793     }
794
795     if ((quote = *str) == '"' || quote == '\'') {
796         strend = str + 1;
797         while (*strend && *strend != quote) {
798             if (*strend == '\\' && strend[1] &&
799                 (strend[1] == quote || strend[1] == '\\')) {
800                 strend += 2;
801             }
802             else {
803                 ++strend;
804             }
805         }
806         res = substring_conf(p, str + 1, strend - str - 1, quote);
807
808         if (*strend == quote)
809             ++strend;
810     }
811     else {
812         strend = str;
813         while (*strend && !apr_isspace(*strend))
814             ++strend;
815
816         res = substring_conf(p, str, strend - str, 0);
817     }
818
819     while (apr_isspace(*strend))
820         ++strend;
821     *line = strend;
822     return res;
823 }
824
825 AP_DECLARE(int) ap_cfg_closefile(ap_configfile_t *cfp)
826 {
827 #ifdef DEBUG
828     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL, APLOGNO(00551)
829         "Done with config file %s", cfp->name);
830 #endif
831     return (cfp->close == NULL) ? 0 : cfp->close(cfp->param);
832 }
833
834 /* we can't use apr_file_* directly because of linking issues on Windows */
835 static apr_status_t cfg_close(void *param)
836 {
837     return apr_file_close(param);
838 }
839
840 static apr_status_t cfg_getch(char *ch, void *param)
841 {
842     return apr_file_getc(ch, param);
843 }
844
845 static apr_status_t cfg_getstr(void *buf, apr_size_t bufsiz, void *param)
846 {
847     return apr_file_gets(buf, bufsiz, param);
848 }
849
850 /* Open a ap_configfile_t as FILE, return open ap_configfile_t struct pointer */
851 AP_DECLARE(apr_status_t) ap_pcfg_openfile(ap_configfile_t **ret_cfg,
852                                           apr_pool_t *p, const char *name)
853 {
854     ap_configfile_t *new_cfg;
855     apr_file_t *file = NULL;
856     apr_finfo_t finfo;
857     apr_status_t status;
858 #ifdef DEBUG
859     char buf[120];
860 #endif
861
862     if (name == NULL) {
863         ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, APLOGNO(00552)
864                "Internal error: pcfg_openfile() called with NULL filename");
865         return APR_EBADF;
866     }
867
868     status = apr_file_open(&file, name, APR_READ | APR_BUFFERED,
869                            APR_OS_DEFAULT, p);
870 #ifdef DEBUG
871     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL, APLOGNO(00553)
872                 "Opening config file %s (%s)",
873                 name, (status != APR_SUCCESS) ?
874                 apr_strerror(status, buf, sizeof(buf)) : "successful");
875 #endif
876     if (status != APR_SUCCESS)
877         return status;
878
879     status = apr_file_info_get(&finfo, APR_FINFO_TYPE, file);
880     if (status != APR_SUCCESS)
881         return status;
882
883     if (finfo.filetype != APR_REG &&
884 #if defined(WIN32) || defined(OS2) || defined(NETWARE)
885         strcasecmp(apr_filepath_name_get(name), "nul") != 0) {
886 #else
887         strcmp(name, "/dev/null") != 0) {
888 #endif /* WIN32 || OS2 */
889         ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, APLOGNO(00554)
890                      "Access to file %s denied by server: not a regular file",
891                      name);
892         apr_file_close(file);
893         return APR_EBADF;
894     }
895
896 #ifdef WIN32
897     /* Some twisted character [no pun intended] at MS decided that a
898      * zero width joiner as the lead wide character would be ideal for
899      * describing Unicode text files.  This was further convoluted to
900      * another MSism that the same character mapped into utf-8, EF BB BF
901      * would signify utf-8 text files.
902      *
903      * Since MS configuration files are all protecting utf-8 encoded
904      * Unicode path, file and resource names, we already have the correct
905      * WinNT encoding.  But at least eat the stupid three bytes up front.
906      */
907     {
908         unsigned char buf[4];
909         apr_size_t len = 3;
910         status = apr_file_read(file, buf, &len);
911         if ((status != APR_SUCCESS) || (len < 3)
912               || memcmp(buf, "\xEF\xBB\xBF", 3) != 0) {
913             apr_off_t zero = 0;
914             apr_file_seek(file, APR_SET, &zero);
915         }
916     }
917 #endif
918
919     new_cfg = apr_palloc(p, sizeof(*new_cfg));
920     new_cfg->param = file;
921     new_cfg->name = apr_pstrdup(p, name);
922     new_cfg->getch = cfg_getch;
923     new_cfg->getstr = cfg_getstr;
924     new_cfg->close = cfg_close;
925     new_cfg->line_number = 0;
926     *ret_cfg = new_cfg;
927     return APR_SUCCESS;
928 }
929
930
931 /* Allocate a ap_configfile_t handle with user defined functions and params */
932 AP_DECLARE(ap_configfile_t *) ap_pcfg_open_custom(
933             apr_pool_t *p, const char *descr, void *param,
934             apr_status_t (*getc_func) (char *ch, void *param),
935             apr_status_t (*gets_func) (void *buf, apr_size_t bufsize, void *param),
936             apr_status_t (*close_func) (void *param))
937 {
938     ap_configfile_t *new_cfg = apr_palloc(p, sizeof(*new_cfg));
939     new_cfg->param = param;
940     new_cfg->name = descr;
941     new_cfg->getch = getc_func;
942     new_cfg->getstr = gets_func;
943     new_cfg->close = close_func;
944     new_cfg->line_number = 0;
945     return new_cfg;
946 }
947
948 /* Read one character from a configfile_t */
949 AP_DECLARE(apr_status_t) ap_cfg_getc(char *ch, ap_configfile_t *cfp)
950 {
951     apr_status_t rc = cfp->getch(ch, cfp->param);
952     if (rc == APR_SUCCESS && *ch == LF)
953         ++cfp->line_number;
954     return rc;
955 }
956
957 AP_DECLARE(const char *) ap_pcfg_strerror(apr_pool_t *p, ap_configfile_t *cfp,
958                                           apr_status_t rc)
959 {
960     char buf[MAX_STRING_LEN];
961     if (rc == APR_SUCCESS)
962         return NULL;
963     return apr_psprintf(p, "Error reading %s at line %d: %s",
964                         cfp->name, cfp->line_number,
965                         rc == APR_ENOSPC ? "Line too long"
966                                          : apr_strerror(rc, buf, sizeof(buf)));
967 }
968
969 /* Read one line from open ap_configfile_t, strip LF, increase line number */
970 /* If custom handler does not define a getstr() function, read char by char */
971 static apr_status_t ap_cfg_getline_core(char *buf, apr_size_t bufsize,
972                                         ap_configfile_t *cfp)
973 {
974     apr_status_t rc;
975     /* If a "get string" function is defined, use it */
976     if (cfp->getstr != NULL) {
977         char *cp;
978         char *cbuf = buf;
979         apr_size_t cbufsize = bufsize;
980
981         while (1) {
982             ++cfp->line_number;
983             rc = cfp->getstr(cbuf, cbufsize, cfp->param);
984             if (rc == APR_EOF) {
985                 if (cbuf != buf) {
986                     *cbuf = '\0';
987                     break;
988                 }
989                 else {
990                     return APR_EOF;
991                 }
992             }
993             if (rc != APR_SUCCESS) {
994                 return rc;
995             }
996
997             /*
998              *  check for line continuation,
999              *  i.e. match [^\\]\\[\r]\n only
1000              */
1001             cp = cbuf;
1002             cp += strlen(cp);
1003             if (cp > cbuf && cp[-1] == LF) {
1004                 cp--;
1005                 if (cp > cbuf && cp[-1] == CR)
1006                     cp--;
1007                 if (cp > cbuf && cp[-1] == '\\') {
1008                     cp--;
1009                     /*
1010                      * line continuation requested -
1011                      * then remove backslash and continue
1012                      */
1013                     cbufsize -= (cp-cbuf);
1014                     cbuf = cp;
1015                     continue;
1016                 }
1017             }
1018             else if (cp - buf >= bufsize - 1) {
1019                 return APR_ENOSPC;
1020             }
1021             break;
1022         }
1023     } else {
1024         /* No "get string" function defined; read character by character */
1025         apr_size_t i = 0;
1026
1027         if (bufsize < 2) {
1028             /* too small, assume caller is crazy */
1029             return APR_EINVAL;
1030         }
1031         buf[0] = '\0';
1032
1033         while (1) {
1034             char c;
1035             rc = cfp->getch(&c, cfp->param);
1036             if (rc == APR_EOF) {
1037                 if (i > 0)
1038                     break;
1039                 else
1040                     return APR_EOF;
1041             }
1042             if (rc != APR_SUCCESS)
1043                 return rc;
1044             if (c == LF) {
1045                 ++cfp->line_number;
1046                 /* check for line continuation */
1047                 if (i > 0 && buf[i-1] == '\\') {
1048                     i--;
1049                     continue;
1050                 }
1051                 else {
1052                     break;
1053                 }
1054             }
1055             else if (i >= bufsize - 2) {
1056                 return APR_ENOSPC;
1057             }
1058             buf[i] = c;
1059             ++i;
1060         }
1061         buf[i] = '\0';
1062     }
1063     return APR_SUCCESS;
1064 }
1065
1066 static int cfg_trim_line(char *buf)
1067 {
1068     char *start, *end;
1069     /*
1070      * Leading and trailing white space is eliminated completely
1071      */
1072     start = buf;
1073     while (apr_isspace(*start))
1074         ++start;
1075     /* blast trailing whitespace */
1076     end = &start[strlen(start)];
1077     while (--end >= start && apr_isspace(*end))
1078         *end = '\0';
1079     /* Zap leading whitespace by shifting */
1080     if (start != buf)
1081         memmove(buf, start, end - start + 2);
1082 #ifdef DEBUG_CFG_LINES
1083     ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, NULL, APLOGNO(00555) "Read config: '%s'", buf);
1084 #endif
1085     return end - start + 1;
1086 }
1087
1088 /* Read one line from open ap_configfile_t, strip LF, increase line number */
1089 /* If custom handler does not define a getstr() function, read char by char */
1090 AP_DECLARE(apr_status_t) ap_cfg_getline(char *buf, apr_size_t bufsize,
1091                                         ap_configfile_t *cfp)
1092 {
1093     apr_status_t rc = ap_cfg_getline_core(buf, bufsize, cfp);
1094     if (rc == APR_SUCCESS)
1095         cfg_trim_line(buf);
1096     return rc;
1097 }
1098
1099 AP_DECLARE(apr_status_t) ap_varbuf_cfg_getline(struct ap_varbuf *vb,
1100                                                ap_configfile_t *cfp,
1101                                                apr_size_t max_len)
1102 {
1103     apr_status_t rc;
1104     apr_size_t new_len;
1105     vb->strlen = 0;
1106     *vb->buf = '\0';
1107
1108     if (vb->strlen == AP_VARBUF_UNKNOWN)
1109         vb->strlen = strlen(vb->buf);
1110     if (vb->avail - vb->strlen < 3) {
1111         new_len = vb->avail * 2;
1112         if (new_len > max_len)
1113             new_len = max_len;
1114         else if (new_len < 3)
1115             new_len = 3;
1116         ap_varbuf_grow(vb, new_len);
1117     }
1118
1119     for (;;) {
1120         rc = ap_cfg_getline_core(vb->buf + vb->strlen, vb->avail - vb->strlen, cfp);
1121         if (rc == APR_ENOSPC || rc == APR_SUCCESS)
1122             vb->strlen += strlen(vb->buf + vb->strlen);
1123         if (rc != APR_ENOSPC)
1124             break;
1125         if (vb->avail >= max_len)
1126             return APR_ENOSPC;
1127         new_len = vb->avail * 2;
1128         if (new_len > max_len)
1129             new_len = max_len;
1130         ap_varbuf_grow(vb, new_len);
1131         --cfp->line_number;
1132     }
1133     if (vb->strlen > max_len)
1134         return APR_ENOSPC;
1135     if (rc == APR_SUCCESS)
1136         vb->strlen = cfg_trim_line(vb->buf);
1137     return rc;
1138 }
1139
1140 /* Size an HTTP header field list item, as separated by a comma.
1141  * The return value is a pointer to the beginning of the non-empty list item
1142  * within the original string (or NULL if there is none) and the address
1143  * of field is shifted to the next non-comma, non-whitespace character.
1144  * len is the length of the item excluding any beginning whitespace.
1145  */
1146 AP_DECLARE(const char *) ap_size_list_item(const char **field, int *len)
1147 {
1148     const unsigned char *ptr = (const unsigned char *)*field;
1149     const unsigned char *token;
1150     int in_qpair, in_qstr, in_com;
1151
1152     /* Find first non-comma, non-whitespace byte */
1153
1154     while (*ptr == ',' || apr_isspace(*ptr))
1155         ++ptr;
1156
1157     token = ptr;
1158
1159     /* Find the end of this item, skipping over dead bits */
1160
1161     for (in_qpair = in_qstr = in_com = 0;
1162          *ptr && (in_qpair || in_qstr || in_com || *ptr != ',');
1163          ++ptr) {
1164
1165         if (in_qpair) {
1166             in_qpair = 0;
1167         }
1168         else {
1169             switch (*ptr) {
1170                 case '\\': in_qpair = 1;      /* quoted-pair         */
1171                            break;
1172                 case '"' : if (!in_com)       /* quoted string delim */
1173                                in_qstr = !in_qstr;
1174                            break;
1175                 case '(' : if (!in_qstr)      /* comment (may nest)  */
1176                                ++in_com;
1177                            break;
1178                 case ')' : if (in_com)        /* end comment         */
1179                                --in_com;
1180                            break;
1181                 default  : break;
1182             }
1183         }
1184     }
1185
1186     if ((*len = (ptr - token)) == 0) {
1187         *field = (const char *)ptr;
1188         return NULL;
1189     }
1190
1191     /* Advance field pointer to the next non-comma, non-white byte */
1192
1193     while (*ptr == ',' || apr_isspace(*ptr))
1194         ++ptr;
1195
1196     *field = (const char *)ptr;
1197     return (const char *)token;
1198 }
1199
1200 /* Retrieve an HTTP header field list item, as separated by a comma,
1201  * while stripping insignificant whitespace and lowercasing anything not in
1202  * a quoted string or comment.  The return value is a new string containing
1203  * the converted list item (or NULL if none) and the address pointed to by
1204  * field is shifted to the next non-comma, non-whitespace.
1205  */
1206 AP_DECLARE(char *) ap_get_list_item(apr_pool_t *p, const char **field)
1207 {
1208     const char *tok_start;
1209     const unsigned char *ptr;
1210     unsigned char *pos;
1211     char *token;
1212     int addspace = 0, in_qpair = 0, in_qstr = 0, in_com = 0, tok_len = 0;
1213
1214     /* Find the beginning and maximum length of the list item so that
1215      * we can allocate a buffer for the new string and reset the field.
1216      */
1217     if ((tok_start = ap_size_list_item(field, &tok_len)) == NULL) {
1218         return NULL;
1219     }
1220     token = apr_palloc(p, tok_len + 1);
1221
1222     /* Scan the token again, but this time copy only the good bytes.
1223      * We skip extra whitespace and any whitespace around a '=', '/',
1224      * or ';' and lowercase normal characters not within a comment,
1225      * quoted-string or quoted-pair.
1226      */
1227     for (ptr = (const unsigned char *)tok_start, pos = (unsigned char *)token;
1228          *ptr && (in_qpair || in_qstr || in_com || *ptr != ',');
1229          ++ptr) {
1230
1231         if (in_qpair) {
1232             in_qpair = 0;
1233             *pos++ = *ptr;
1234         }
1235         else {
1236             switch (*ptr) {
1237                 case '\\': in_qpair = 1;
1238                            if (addspace == 1)
1239                                *pos++ = ' ';
1240                            *pos++ = *ptr;
1241                            addspace = 0;
1242                            break;
1243                 case '"' : if (!in_com)
1244                                in_qstr = !in_qstr;
1245                            if (addspace == 1)
1246                                *pos++ = ' ';
1247                            *pos++ = *ptr;
1248                            addspace = 0;
1249                            break;
1250                 case '(' : if (!in_qstr)
1251                                ++in_com;
1252                            if (addspace == 1)
1253                                *pos++ = ' ';
1254                            *pos++ = *ptr;
1255                            addspace = 0;
1256                            break;
1257                 case ')' : if (in_com)
1258                                --in_com;
1259                            *pos++ = *ptr;
1260                            addspace = 0;
1261                            break;
1262                 case ' ' :
1263                 case '\t': if (addspace)
1264                                break;
1265                            if (in_com || in_qstr)
1266                                *pos++ = *ptr;
1267                            else
1268                                addspace = 1;
1269                            break;
1270                 case '=' :
1271                 case '/' :
1272                 case ';' : if (!(in_com || in_qstr))
1273                                addspace = -1;
1274                            *pos++ = *ptr;
1275                            break;
1276                 default  : if (addspace == 1)
1277                                *pos++ = ' ';
1278                            *pos++ = (in_com || in_qstr) ? *ptr
1279                                                         : apr_tolower(*ptr);
1280                            addspace = 0;
1281                            break;
1282             }
1283         }
1284     }
1285     *pos = '\0';
1286
1287     return token;
1288 }
1289
1290 typedef enum ap_etag_e {
1291     AP_ETAG_NONE,
1292     AP_ETAG_WEAK,
1293     AP_ETAG_STRONG
1294 } ap_etag_e;
1295
1296 /* Find an item in canonical form (lowercase, no extra spaces) within
1297  * an HTTP field value list.  Returns 1 if found, 0 if not found.
1298  * This would be much more efficient if we stored header fields as
1299  * an array of list items as they are received instead of a plain string.
1300  */
1301 static int find_list_item(apr_pool_t *p, const char *line,
1302                                   const char *tok, ap_etag_e type)
1303 {
1304     const unsigned char *pos;
1305     const unsigned char *ptr = (const unsigned char *)line;
1306     int good = 0, addspace = 0, in_qpair = 0, in_qstr = 0, in_com = 0;
1307
1308     if (!line || !tok) {
1309         return 0;
1310     }
1311     if (type == AP_ETAG_STRONG && *tok != '\"') {
1312         return 0;
1313     }
1314     if (type == AP_ETAG_WEAK) {
1315         if (*tok == 'W' && (*(tok+1)) == '/' && (*(tok+2)) == '\"') {
1316             tok += 2;
1317         }
1318         else if (*tok != '\"') {
1319             return 0;
1320         }
1321     }
1322
1323     do {  /* loop for each item in line's list */
1324
1325         /* Find first non-comma, non-whitespace byte */
1326         while (*ptr == ',' || apr_isspace(*ptr)) {
1327             ++ptr;
1328         }
1329
1330         /* Account for strong or weak Etags, depending on our search */
1331         if (type == AP_ETAG_STRONG && *ptr != '\"') {
1332             break;
1333         }
1334         if (type == AP_ETAG_WEAK) {
1335             if (*ptr == 'W' && (*(ptr+1)) == '/' && (*(ptr+2)) == '\"') {
1336                 ptr += 2;
1337             }
1338             else if (*ptr != '\"') {
1339                 break;
1340             }
1341         }
1342
1343         if (*ptr)
1344             good = 1;  /* until proven otherwise for this item */
1345         else
1346             break;     /* no items left and nothing good found */
1347
1348         /* We skip extra whitespace and any whitespace around a '=', '/',
1349          * or ';' and lowercase normal characters not within a comment,
1350          * quoted-string or quoted-pair.
1351          */
1352         for (pos = (const unsigned char *)tok;
1353              *ptr && (in_qpair || in_qstr || in_com || *ptr != ',');
1354              ++ptr) {
1355
1356             if (in_qpair) {
1357                 in_qpair = 0;
1358                 if (good)
1359                     good = (*pos++ == *ptr);
1360             }
1361             else {
1362                 switch (*ptr) {
1363                     case '\\': in_qpair = 1;
1364                                if (addspace == 1)
1365                                    good = good && (*pos++ == ' ');
1366                                good = good && (*pos++ == *ptr);
1367                                addspace = 0;
1368                                break;
1369                     case '"' : if (!in_com)
1370                                    in_qstr = !in_qstr;
1371                                if (addspace == 1)
1372                                    good = good && (*pos++ == ' ');
1373                                good = good && (*pos++ == *ptr);
1374                                addspace = 0;
1375                                break;
1376                     case '(' : if (!in_qstr)
1377                                    ++in_com;
1378                                if (addspace == 1)
1379                                    good = good && (*pos++ == ' ');
1380                                good = good && (*pos++ == *ptr);
1381                                addspace = 0;
1382                                break;
1383                     case ')' : if (in_com)
1384                                    --in_com;
1385                                good = good && (*pos++ == *ptr);
1386                                addspace = 0;
1387                                break;
1388                     case ' ' :
1389                     case '\t': if (addspace || !good)
1390                                    break;
1391                                if (in_com || in_qstr)
1392                                    good = (*pos++ == *ptr);
1393                                else
1394                                    addspace = 1;
1395                                break;
1396                     case '=' :
1397                     case '/' :
1398                     case ';' : if (!(in_com || in_qstr))
1399                                    addspace = -1;
1400                                good = good && (*pos++ == *ptr);
1401                                break;
1402                     default  : if (!good)
1403                                    break;
1404                                if (addspace == 1)
1405                                    good = (*pos++ == ' ');
1406                                if (in_com || in_qstr)
1407                                    good = good && (*pos++ == *ptr);
1408                                else
1409                                    good = good
1410                                        && (apr_tolower(*pos++) == apr_tolower(*ptr));
1411                                addspace = 0;
1412                                break;
1413                 }
1414             }
1415         }
1416         if (good && *pos)
1417             good = 0;          /* not good if only a prefix was matched */
1418
1419     } while (*ptr && !good);
1420
1421     return good;
1422 }
1423
1424 /* Find an item in canonical form (lowercase, no extra spaces) within
1425  * an HTTP field value list.  Returns 1 if found, 0 if not found.
1426  * This would be much more efficient if we stored header fields as
1427  * an array of list items as they are received instead of a plain string.
1428  */
1429 AP_DECLARE(int) ap_find_list_item(apr_pool_t *p, const char *line,
1430                                   const char *tok)
1431 {
1432     return find_list_item(p, line, tok, AP_ETAG_NONE);
1433 }
1434
1435 /* Find a strong Etag in canonical form (lowercase, no extra spaces) within
1436  * an HTTP field value list.  Returns 1 if found, 0 if not found.
1437  */
1438 AP_DECLARE(int) ap_find_etag_strong(apr_pool_t *p, const char *line,
1439                                     const char *tok)
1440 {
1441     return find_list_item(p, line, tok, AP_ETAG_STRONG);
1442 }
1443
1444 /* Find a weak ETag in canonical form (lowercase, no extra spaces) within
1445  * an HTTP field value list.  Returns 1 if found, 0 if not found.
1446  */
1447 AP_DECLARE(int) ap_find_etag_weak(apr_pool_t *p, const char *line,
1448                                   const char *tok)
1449 {
1450     return find_list_item(p, line, tok, AP_ETAG_WEAK);
1451 }
1452
1453 /* Retrieve a token, spacing over it and returning a pointer to
1454  * the first non-white byte afterwards.  Note that these tokens
1455  * are delimited by semis and commas; and can also be delimited
1456  * by whitespace at the caller's option.
1457  */
1458
1459 AP_DECLARE(char *) ap_get_token(apr_pool_t *p, const char **accept_line,
1460                                 int accept_white)
1461 {
1462     const char *ptr = *accept_line;
1463     const char *tok_start;
1464     char *token;
1465     int tok_len;
1466
1467     /* Find first non-white byte */
1468
1469     while (apr_isspace(*ptr))
1470         ++ptr;
1471
1472     tok_start = ptr;
1473
1474     /* find token end, skipping over quoted strings.
1475      * (comments are already gone).
1476      */
1477
1478     while (*ptr && (accept_white || !apr_isspace(*ptr))
1479            && *ptr != ';' && *ptr != ',') {
1480         if (*ptr++ == '"')
1481             while (*ptr)
1482                 if (*ptr++ == '"')
1483                     break;
1484     }
1485
1486     tok_len = ptr - tok_start;
1487     token = apr_pstrndup(p, tok_start, tok_len);
1488
1489     /* Advance accept_line pointer to the next non-white byte */
1490
1491     while (apr_isspace(*ptr))
1492         ++ptr;
1493
1494     *accept_line = ptr;
1495     return token;
1496 }
1497
1498
1499 /* find http tokens, see the definition of token from RFC2068 */
1500 AP_DECLARE(int) ap_find_token(apr_pool_t *p, const char *line, const char *tok)
1501 {
1502     const unsigned char *start_token;
1503     const unsigned char *s;
1504
1505     if (!line)
1506         return 0;
1507
1508     s = (const unsigned char *)line;
1509     for (;;) {
1510         /* find start of token, skip all stop characters, note NUL
1511          * isn't a token stop, so we don't need to test for it
1512          */
1513         while (TEST_CHAR(*s, T_HTTP_TOKEN_STOP)) {
1514             ++s;
1515         }
1516         if (!*s) {
1517             return 0;
1518         }
1519         start_token = s;
1520         /* find end of the token */
1521         while (*s && !TEST_CHAR(*s, T_HTTP_TOKEN_STOP)) {
1522             ++s;
1523         }
1524         if (!strncasecmp((const char *)start_token, (const char *)tok,
1525                          s - start_token)) {
1526             return 1;
1527         }
1528         if (!*s) {
1529             return 0;
1530         }
1531     }
1532 }
1533
1534
1535 AP_DECLARE(int) ap_find_last_token(apr_pool_t *p, const char *line,
1536                                    const char *tok)
1537 {
1538     int llen, tlen, lidx;
1539
1540     if (!line)
1541         return 0;
1542
1543     llen = strlen(line);
1544     tlen = strlen(tok);
1545     lidx = llen - tlen;
1546
1547     if (lidx < 0 ||
1548         (lidx > 0 && !(apr_isspace(line[lidx - 1]) || line[lidx - 1] == ',')))
1549         return 0;
1550
1551     return (strncasecmp(&line[lidx], tok, tlen) == 0);
1552 }
1553
1554 AP_DECLARE(char *) ap_escape_shell_cmd(apr_pool_t *p, const char *str)
1555 {
1556     char *cmd;
1557     unsigned char *d;
1558     const unsigned char *s;
1559
1560     cmd = apr_palloc(p, 2 * strlen(str) + 1);        /* Be safe */
1561     d = (unsigned char *)cmd;
1562     s = (const unsigned char *)str;
1563     for (; *s; ++s) {
1564
1565 #if defined(OS2) || defined(WIN32)
1566         /*
1567          * Newlines to Win32/OS2 CreateProcess() are ill advised.
1568          * Convert them to spaces since they are effectively white
1569          * space to most applications
1570          */
1571         if (*s == '\r' || *s == '\n') {
1572              *d++ = ' ';
1573              continue;
1574          }
1575 #endif
1576
1577         if (TEST_CHAR(*s, T_ESCAPE_SHELL_CMD)) {
1578             *d++ = '\\';
1579         }
1580         *d++ = *s;
1581     }
1582     *d = '\0';
1583
1584     return cmd;
1585 }
1586
1587 static char x2c(const char *what)
1588 {
1589     register char digit;
1590
1591 #if !APR_CHARSET_EBCDIC
1592     digit = ((what[0] >= 'A') ? ((what[0] & 0xdf) - 'A') + 10
1593              : (what[0] - '0'));
1594     digit *= 16;
1595     digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A') + 10
1596               : (what[1] - '0'));
1597 #else /*APR_CHARSET_EBCDIC*/
1598     char xstr[5];
1599     xstr[0]='0';
1600     xstr[1]='x';
1601     xstr[2]=what[0];
1602     xstr[3]=what[1];
1603     xstr[4]='\0';
1604     digit = apr_xlate_conv_byte(ap_hdrs_from_ascii,
1605                                 0xFF & strtol(xstr, NULL, 16));
1606 #endif /*APR_CHARSET_EBCDIC*/
1607     return (digit);
1608 }
1609
1610 /*
1611  * Unescapes a URL, leaving reserved characters intact.
1612  * Returns 0 on success, non-zero on error
1613  * Failure is due to
1614  *   bad % escape       returns HTTP_BAD_REQUEST
1615  *
1616  *   decoding %00 or a forbidden character returns HTTP_NOT_FOUND
1617  */
1618
1619 static int unescape_url(char *url, const char *forbid, const char *reserved)
1620 {
1621     register int badesc, badpath;
1622     char *x, *y;
1623
1624     badesc = 0;
1625     badpath = 0;
1626     /* Initial scan for first '%'. Don't bother writing values before
1627      * seeing a '%' */
1628     y = strchr(url, '%');
1629     if (y == NULL) {
1630         return OK;
1631     }
1632     for (x = y; *y; ++x, ++y) {
1633         if (*y != '%') {
1634             *x = *y;
1635         }
1636         else {
1637             if (!apr_isxdigit(*(y + 1)) || !apr_isxdigit(*(y + 2))) {
1638                 badesc = 1;
1639                 *x = '%';
1640             }
1641             else {
1642                 char decoded;
1643                 decoded = x2c(y + 1);
1644                 if ((decoded == '\0')
1645                     || (forbid && ap_strchr_c(forbid, decoded))) {
1646                     badpath = 1;
1647                     *x = decoded;
1648                     y += 2;
1649                 }
1650                 else if (reserved && ap_strchr_c(reserved, decoded)) {
1651                     *x++ = *y++;
1652                     *x++ = *y++;
1653                     *x = *y;
1654                 }
1655                 else {
1656                     *x = decoded;
1657                     y += 2;
1658                 }
1659             }
1660         }
1661     }
1662     *x = '\0';
1663     if (badesc) {
1664         return HTTP_BAD_REQUEST;
1665     }
1666     else if (badpath) {
1667         return HTTP_NOT_FOUND;
1668     }
1669     else {
1670         return OK;
1671     }
1672 }
1673 AP_DECLARE(int) ap_unescape_url(char *url)
1674 {
1675     /* Traditional */
1676     return unescape_url(url, SLASHES, NULL);
1677 }
1678 AP_DECLARE(int) ap_unescape_url_keep2f(char *url, int decode_slashes)
1679 {
1680     /* AllowEncodedSlashes (corrected) */
1681     if (decode_slashes) {
1682         /* no chars reserved */
1683         return unescape_url(url, NULL, NULL);
1684     } else {
1685         /* reserve (do not decode) encoded slashes */
1686         return unescape_url(url, NULL, SLASHES);
1687     }
1688 }
1689 #ifdef NEW_APIS
1690 /* IFDEF these out until they've been thought through.
1691  * Just a germ of an API extension for now
1692  */
1693 AP_DECLARE(int) ap_unescape_url_proxy(char *url)
1694 {
1695     /* leave RFC1738 reserved characters intact, * so proxied URLs
1696      * don't get mangled.  Where does that leave encoded '&' ?
1697      */
1698     return unescape_url(url, NULL, "/;?");
1699 }
1700 AP_DECLARE(int) ap_unescape_url_reserved(char *url, const char *reserved)
1701 {
1702     return unescape_url(url, NULL, reserved);
1703 }
1704 #endif
1705
1706 AP_DECLARE(int) ap_unescape_urlencoded(char *query)
1707 {
1708     char *slider;
1709
1710     /* replace plus with a space */
1711     if (query) {
1712         for (slider = query; *slider; slider++) {
1713             if (*slider == '+') {
1714                 *slider = ' ';
1715             }
1716         }
1717     }
1718
1719     /* unescape everything else */
1720     return unescape_url(query, NULL, NULL);
1721 }
1722
1723 AP_DECLARE(char *) ap_construct_server(apr_pool_t *p, const char *hostname,
1724                                        apr_port_t port, const request_rec *r)
1725 {
1726     if (ap_is_default_port(port, r)) {
1727         return apr_pstrdup(p, hostname);
1728     }
1729     else {
1730         return apr_psprintf(p, "%s:%u", hostname, port);
1731     }
1732 }
1733
1734 AP_DECLARE(int) ap_unescape_all(char *url)
1735 {
1736     return unescape_url(url, NULL, NULL);
1737 }
1738
1739 /* c2x takes an unsigned, and expects the caller has guaranteed that
1740  * 0 <= what < 256... which usually means that you have to cast to
1741  * unsigned char first, because (unsigned)(char)(x) first goes through
1742  * signed extension to an int before the unsigned cast.
1743  *
1744  * The reason for this assumption is to assist gcc code generation --
1745  * the unsigned char -> unsigned extension is already done earlier in
1746  * both uses of this code, so there's no need to waste time doing it
1747  * again.
1748  */
1749 static const char c2x_table[] = "0123456789abcdef";
1750
1751 static APR_INLINE unsigned char *c2x(unsigned what, unsigned char prefix,
1752                                      unsigned char *where)
1753 {
1754 #if APR_CHARSET_EBCDIC
1755     what = apr_xlate_conv_byte(ap_hdrs_to_ascii, (unsigned char)what);
1756 #endif /*APR_CHARSET_EBCDIC*/
1757     *where++ = prefix;
1758     *where++ = c2x_table[what >> 4];
1759     *where++ = c2x_table[what & 0xf];
1760     return where;
1761 }
1762
1763 /*
1764  * escape_path_segment() escapes a path segment, as defined in RFC 1808. This
1765  * routine is (should be) OS independent.
1766  *
1767  * os_escape_path() converts an OS path to a URL, in an OS dependent way. In all
1768  * cases if a ':' occurs before the first '/' in the URL, the URL should be
1769  * prefixed with "./" (or the ':' escaped). In the case of Unix, this means
1770  * leaving '/' alone, but otherwise doing what escape_path_segment() does. For
1771  * efficiency reasons, we don't use escape_path_segment(), which is provided for
1772  * reference. Again, RFC 1808 is where this stuff is defined.
1773  *
1774  * If partial is set, os_escape_path() assumes that the path will be appended to
1775  * something with a '/' in it (and thus does not prefix "./").
1776  */
1777
1778 AP_DECLARE(char *) ap_escape_path_segment_buffer(char *copy, const char *segment)
1779 {
1780     const unsigned char *s = (const unsigned char *)segment;
1781     unsigned char *d = (unsigned char *)copy;
1782     unsigned c;
1783
1784     while ((c = *s)) {
1785         if (TEST_CHAR(c, T_ESCAPE_PATH_SEGMENT)) {
1786             d = c2x(c, '%', d);
1787         }
1788         else {
1789             *d++ = c;
1790         }
1791         ++s;
1792     }
1793     *d = '\0';
1794     return copy;
1795 }
1796
1797 AP_DECLARE(char *) ap_escape_path_segment(apr_pool_t *p, const char *segment)
1798 {
1799     return ap_escape_path_segment_buffer(apr_palloc(p, 3 * strlen(segment) + 1), segment);
1800 }
1801
1802 AP_DECLARE(char *) ap_os_escape_path(apr_pool_t *p, const char *path, int partial)
1803 {
1804     char *copy = apr_palloc(p, 3 * strlen(path) + 3);
1805     const unsigned char *s = (const unsigned char *)path;
1806     unsigned char *d = (unsigned char *)copy;
1807     unsigned c;
1808
1809     if (!partial) {
1810         const char *colon = ap_strchr_c(path, ':');
1811         const char *slash = ap_strchr_c(path, '/');
1812
1813         if (colon && (!slash || colon < slash)) {
1814             *d++ = '.';
1815             *d++ = '/';
1816         }
1817     }
1818     while ((c = *s)) {
1819         if (TEST_CHAR(c, T_OS_ESCAPE_PATH)) {
1820             d = c2x(c, '%', d);
1821         }
1822         else {
1823             *d++ = c;
1824         }
1825         ++s;
1826     }
1827     *d = '\0';
1828     return copy;
1829 }
1830
1831 AP_DECLARE(char *) ap_escape_urlencoded_buffer(char *copy, const char *buffer)
1832 {
1833     const unsigned char *s = (const unsigned char *)buffer;
1834     unsigned char *d = (unsigned char *)copy;
1835     unsigned c;
1836
1837     while ((c = *s)) {
1838         if (TEST_CHAR(c, T_ESCAPE_URLENCODED)) {
1839             d = c2x(c, '%', d);
1840         }
1841         else if (c == ' ') {
1842             *d++ = '+';
1843         }
1844         else {
1845             *d++ = c;
1846         }
1847         ++s;
1848     }
1849     *d = '\0';
1850     return copy;
1851 }
1852
1853 AP_DECLARE(char *) ap_escape_urlencoded(apr_pool_t *p, const char *buffer)
1854 {
1855     return ap_escape_urlencoded_buffer(apr_palloc(p, 3 * strlen(buffer) + 1), buffer);
1856 }
1857
1858 /* ap_escape_uri is now a macro for os_escape_path */
1859
1860 AP_DECLARE(char *) ap_escape_html2(apr_pool_t *p, const char *s, int toasc)
1861 {
1862     int i, j;
1863     char *x;
1864
1865     /* first, count the number of extra characters */
1866     for (i = 0, j = 0; s[i] != '\0'; i++)
1867         if (s[i] == '<' || s[i] == '>')
1868             j += 3;
1869         else if (s[i] == '&')
1870             j += 4;
1871         else if (s[i] == '"')
1872             j += 5;
1873         else if (toasc && !apr_isascii(s[i]))
1874             j += 5;
1875
1876     if (j == 0)
1877         return apr_pstrmemdup(p, s, i);
1878
1879     x = apr_palloc(p, i + j + 1);
1880     for (i = 0, j = 0; s[i] != '\0'; i++, j++)
1881         if (s[i] == '<') {
1882             memcpy(&x[j], "&lt;", 4);
1883             j += 3;
1884         }
1885         else if (s[i] == '>') {
1886             memcpy(&x[j], "&gt;", 4);
1887             j += 3;
1888         }
1889         else if (s[i] == '&') {
1890             memcpy(&x[j], "&amp;", 5);
1891             j += 4;
1892         }
1893         else if (s[i] == '"') {
1894             memcpy(&x[j], "&quot;", 6);
1895             j += 5;
1896         }
1897         else if (toasc && !apr_isascii(s[i])) {
1898             char *esc = apr_psprintf(p, "&#%3.3d;", (unsigned char)s[i]);
1899             memcpy(&x[j], esc, 6);
1900             j += 5;
1901         }
1902         else
1903             x[j] = s[i];
1904
1905     x[j] = '\0';
1906     return x;
1907 }
1908 AP_DECLARE(char *) ap_escape_logitem(apr_pool_t *p, const char *str)
1909 {
1910     char *ret;
1911     unsigned char *d;
1912     const unsigned char *s;
1913     apr_size_t length, escapes = 0;
1914
1915     if (!str) {
1916         return NULL;
1917     }
1918
1919     /* Compute how many characters need to be escaped */
1920     s = (const unsigned char *)str;
1921     for (; *s; ++s) {
1922         if (TEST_CHAR(*s, T_ESCAPE_LOGITEM)) {
1923             escapes++;
1924         }
1925     }
1926     
1927     /* Compute the length of the input string, including NULL */
1928     length = s - (const unsigned char *)str + 1;
1929     
1930     /* Fast path: nothing to escape */
1931     if (escapes == 0) {
1932         return apr_pmemdup(p, str, length);
1933     }
1934     
1935     /* Each escaped character needs up to 3 extra bytes (0 --> \x00) */
1936     ret = apr_palloc(p, length + 3 * escapes);
1937     d = (unsigned char *)ret;
1938     s = (const unsigned char *)str;
1939     for (; *s; ++s) {
1940         if (TEST_CHAR(*s, T_ESCAPE_LOGITEM)) {
1941             *d++ = '\\';
1942             switch(*s) {
1943             case '\b':
1944                 *d++ = 'b';
1945                 break;
1946             case '\n':
1947                 *d++ = 'n';
1948                 break;
1949             case '\r':
1950                 *d++ = 'r';
1951                 break;
1952             case '\t':
1953                 *d++ = 't';
1954                 break;
1955             case '\v':
1956                 *d++ = 'v';
1957                 break;
1958             case '\\':
1959             case '"':
1960                 *d++ = *s;
1961                 break;
1962             default:
1963                 c2x(*s, 'x', d);
1964                 d += 3;
1965             }
1966         }
1967         else {
1968             *d++ = *s;
1969         }
1970     }
1971     *d = '\0';
1972
1973     return ret;
1974 }
1975
1976 AP_DECLARE(apr_size_t) ap_escape_errorlog_item(char *dest, const char *source,
1977                                                apr_size_t buflen)
1978 {
1979     unsigned char *d, *ep;
1980     const unsigned char *s;
1981
1982     if (!source || !buflen) { /* be safe */
1983         return 0;
1984     }
1985
1986     d = (unsigned char *)dest;
1987     s = (const unsigned char *)source;
1988     ep = d + buflen - 1;
1989
1990     for (; d < ep && *s; ++s) {
1991
1992         if (TEST_CHAR(*s, T_ESCAPE_LOGITEM)) {
1993             *d++ = '\\';
1994             if (d >= ep) {
1995                 --d;
1996                 break;
1997             }
1998
1999             switch(*s) {
2000             case '\b':
2001                 *d++ = 'b';
2002                 break;
2003             case '\n':
2004                 *d++ = 'n';
2005                 break;
2006             case '\r':
2007                 *d++ = 'r';
2008                 break;
2009             case '\t':
2010                 *d++ = 't';
2011                 break;
2012             case '\v':
2013                 *d++ = 'v';
2014                 break;
2015             case '\\':
2016                 *d++ = *s;
2017                 break;
2018             case '"': /* no need for this in error log */
2019                 d[-1] = *s;
2020                 break;
2021             default:
2022                 if (d >= ep - 2) {
2023                     ep = --d; /* break the for loop as well */
2024                     break;
2025                 }
2026                 c2x(*s, 'x', d);
2027                 d += 3;
2028             }
2029         }
2030         else {
2031             *d++ = *s;
2032         }
2033     }
2034     *d = '\0';
2035
2036     return (d - (unsigned char *)dest);
2037 }
2038
2039 AP_DECLARE(void) ap_bin2hex(const void *src, apr_size_t srclen, char *dest)
2040 {
2041     const unsigned char *in = src;
2042     apr_size_t i;
2043
2044     for (i = 0; i < srclen; i++) {
2045         *dest++ = c2x_table[in[i] >> 4];
2046         *dest++ = c2x_table[in[i] & 0xf];
2047     }
2048     *dest = '\0';
2049 }
2050
2051 AP_DECLARE(int) ap_has_cntrl(const char *str)
2052 {
2053     while (*str) {
2054         if (apr_iscntrl(*str))
2055             return 1;
2056         str++;
2057     }
2058     return 0;
2059 }
2060
2061 AP_DECLARE(int) ap_is_directory(apr_pool_t *p, const char *path)
2062 {
2063     apr_finfo_t finfo;
2064
2065     if (apr_stat(&finfo, path, APR_FINFO_TYPE, p) != APR_SUCCESS)
2066         return 0;                /* in error condition, just return no */
2067
2068     return (finfo.filetype == APR_DIR);
2069 }
2070
2071 AP_DECLARE(int) ap_is_rdirectory(apr_pool_t *p, const char *path)
2072 {
2073     apr_finfo_t finfo;
2074
2075     if (apr_stat(&finfo, path, APR_FINFO_LINK | APR_FINFO_TYPE, p) != APR_SUCCESS)
2076         return 0;                /* in error condition, just return no */
2077
2078     return (finfo.filetype == APR_DIR);
2079 }
2080
2081 AP_DECLARE(char *) ap_make_full_path(apr_pool_t *a, const char *src1,
2082                                   const char *src2)
2083 {
2084     apr_size_t len1, len2;
2085     char *path;
2086
2087     len1 = strlen(src1);
2088     len2 = strlen(src2);
2089      /* allocate +3 for '/' delimiter, trailing NULL and overallocate
2090       * one extra byte to allow the caller to add a trailing '/'
2091       */
2092     path = (char *)apr_palloc(a, len1 + len2 + 3);
2093     if (len1 == 0) {
2094         *path = '/';
2095         memcpy(path + 1, src2, len2 + 1);
2096     }
2097     else {
2098         char *next;
2099         memcpy(path, src1, len1);
2100         next = path + len1;
2101         if (next[-1] != '/') {
2102             *next++ = '/';
2103         }
2104         memcpy(next, src2, len2 + 1);
2105     }
2106     return path;
2107 }
2108
2109 /*
2110  * Check for an absoluteURI syntax (see section 3.2 in RFC2068).
2111  */
2112 AP_DECLARE(int) ap_is_url(const char *u)
2113 {
2114     register int x;
2115
2116     for (x = 0; u[x] != ':'; x++) {
2117         if ((!u[x]) ||
2118             ((!apr_isalpha(u[x])) && (!apr_isdigit(u[x])) &&
2119              (u[x] != '+') && (u[x] != '-') && (u[x] != '.'))) {
2120             return 0;
2121         }
2122     }
2123
2124     return (x ? 1 : 0);                /* If the first character is ':', it's broken, too */
2125 }
2126
2127 AP_DECLARE(int) ap_ind(const char *s, char c)
2128 {
2129     const char *p = ap_strchr_c(s, c);
2130
2131     if (p == NULL)
2132         return -1;
2133     return p - s;
2134 }
2135
2136 AP_DECLARE(int) ap_rind(const char *s, char c)
2137 {
2138     const char *p = ap_strrchr_c(s, c);
2139
2140     if (p == NULL)
2141         return -1;
2142     return p - s;
2143 }
2144
2145 AP_DECLARE(void) ap_str_tolower(char *str)
2146 {
2147     while (*str) {
2148         *str = apr_tolower(*str);
2149         ++str;
2150     }
2151 }
2152
2153 AP_DECLARE(void) ap_str_toupper(char *str)
2154 {
2155     while (*str) {
2156         *str = apr_toupper(*str);
2157         ++str;
2158     }
2159 }
2160
2161 /*
2162  * We must return a FQDN
2163  */
2164 char *ap_get_local_host(apr_pool_t *a)
2165 {
2166 #ifndef MAXHOSTNAMELEN
2167 #define MAXHOSTNAMELEN 256
2168 #endif
2169     char str[MAXHOSTNAMELEN + 1];
2170     char *server_hostname = NULL;
2171     apr_sockaddr_t *sockaddr;
2172     char *hostname;
2173
2174     if (apr_gethostname(str, sizeof(str) - 1, a) != APR_SUCCESS) {
2175         ap_log_perror(APLOG_MARK, APLOG_STARTUP | APLOG_WARNING, 0, a, APLOGNO(00556)
2176                      "%s: apr_gethostname() failed to determine ServerName",
2177                      ap_server_argv0);
2178     } else {
2179         str[sizeof(str) - 1] = '\0';
2180         if (apr_sockaddr_info_get(&sockaddr, str, APR_UNSPEC, 0, 0, a) == APR_SUCCESS) {
2181             if ( (apr_getnameinfo(&hostname, sockaddr, 0) == APR_SUCCESS) &&
2182                 (ap_strchr_c(hostname, '.')) ) {
2183                 server_hostname = apr_pstrdup(a, hostname);
2184                 return server_hostname;
2185             } else if (ap_strchr_c(str, '.')) {
2186                 server_hostname = apr_pstrdup(a, str);
2187             } else {
2188                 apr_sockaddr_ip_get(&hostname, sockaddr);
2189                 server_hostname = apr_pstrdup(a, hostname);
2190             }
2191         } else {
2192             ap_log_perror(APLOG_MARK, APLOG_STARTUP | APLOG_WARNING, 0, a, APLOGNO(00557)
2193                          "%s: apr_sockaddr_info_get() failed for %s",
2194                          ap_server_argv0, str);
2195         }
2196     }
2197
2198     if (!server_hostname)
2199         server_hostname = apr_pstrdup(a, "127.0.0.1");
2200
2201     ap_log_perror(APLOG_MARK, APLOG_ALERT|APLOG_STARTUP, 0, a, APLOGNO(00558)
2202                  "%s: Could not reliably determine the server's fully qualified "
2203                  "domain name, using %s. Set the 'ServerName' directive globally "
2204                  "to suppress this message",
2205                  ap_server_argv0, server_hostname);
2206
2207     return server_hostname;
2208 }
2209
2210 /* simple 'pool' alloc()ing glue to apr_base64.c
2211  */
2212 AP_DECLARE(char *) ap_pbase64decode(apr_pool_t *p, const char *bufcoded)
2213 {
2214     char *decoded;
2215     int l;
2216
2217     decoded = (char *) apr_palloc(p, 1 + apr_base64_decode_len(bufcoded));
2218     l = apr_base64_decode(decoded, bufcoded);
2219     decoded[l] = '\0'; /* make binary sequence into string */
2220
2221     return decoded;
2222 }
2223
2224 AP_DECLARE(char *) ap_pbase64encode(apr_pool_t *p, char *string)
2225 {
2226     char *encoded;
2227     int l = strlen(string);
2228
2229     encoded = (char *) apr_palloc(p, 1 + apr_base64_encode_len(l));
2230     l = apr_base64_encode(encoded, string, l);
2231     encoded[l] = '\0'; /* make binary sequence into string */
2232
2233     return encoded;
2234 }
2235
2236 /* we want to downcase the type/subtype for comparison purposes
2237  * but nothing else because ;parameter=foo values are case sensitive.
2238  * XXX: in truth we want to downcase parameter names... but really,
2239  * apache has never handled parameters and such correctly.  You
2240  * also need to compress spaces and such to be able to compare
2241  * properly. -djg
2242  */
2243 AP_DECLARE(void) ap_content_type_tolower(char *str)
2244 {
2245     char *semi;
2246
2247     semi = strchr(str, ';');
2248     if (semi) {
2249         *semi = '\0';
2250     }
2251
2252     ap_str_tolower(str);
2253
2254     if (semi) {
2255         *semi = ';';
2256     }
2257 }
2258
2259 /*
2260  * Given a string, replace any bare " with \" .
2261  */
2262 AP_DECLARE(char *) ap_escape_quotes(apr_pool_t *p, const char *instring)
2263 {
2264     int newlen = 0;
2265     const char *inchr = instring;
2266     char *outchr, *outstring;
2267
2268     /*
2269      * Look through the input string, jogging the length of the output
2270      * string up by an extra byte each time we find an unescaped ".
2271      */
2272     while (*inchr != '\0') {
2273         newlen++;
2274         if (*inchr == '"') {
2275             newlen++;
2276         }
2277         /*
2278          * If we find a slosh, and it's not the last byte in the string,
2279          * it's escaping something - advance past both bytes.
2280          */
2281         if ((*inchr == '\\') && (inchr[1] != '\0')) {
2282             inchr++;
2283             newlen++;
2284         }
2285         inchr++;
2286     }
2287     outstring = apr_palloc(p, newlen + 1);
2288     inchr = instring;
2289     outchr = outstring;
2290     /*
2291      * Now copy the input string to the output string, inserting a slosh
2292      * in front of every " that doesn't already have one.
2293      */
2294     while (*inchr != '\0') {
2295         if ((*inchr == '\\') && (inchr[1] != '\0')) {
2296             *outchr++ = *inchr++;
2297             *outchr++ = *inchr++;
2298         }
2299         if (*inchr == '"') {
2300             *outchr++ = '\\';
2301         }
2302         if (*inchr != '\0') {
2303             *outchr++ = *inchr++;
2304         }
2305     }
2306     *outchr = '\0';
2307     return outstring;
2308 }
2309
2310 /*
2311  * Given a string, append the PID deliminated by delim.
2312  * Usually used to create a pid-appended filepath name
2313  * (eg: /a/b/foo -> /a/b/foo.6726). A function, and not
2314  * a macro, to avoid unistd.h dependency
2315  */
2316 AP_DECLARE(char *) ap_append_pid(apr_pool_t *p, const char *string,
2317                                     const char *delim)
2318 {
2319     return apr_psprintf(p, "%s%s%" APR_PID_T_FMT, string,
2320                         delim, getpid());
2321
2322 }
2323
2324 /**
2325  * Parse a given timeout parameter string into an apr_interval_time_t value.
2326  * The unit of the time interval is given as postfix string to the numeric
2327  * string. Currently the following units are understood:
2328  *
2329  * ms    : milliseconds
2330  * s     : seconds
2331  * mi[n] : minutes
2332  * h     : hours
2333  *
2334  * If no unit is contained in the given timeout parameter the default_time_unit
2335  * will be used instead.
2336  * @param timeout_parameter The string containing the timeout parameter.
2337  * @param timeout The timeout value to be returned.
2338  * @param default_time_unit The default time unit to use if none is specified
2339  * in timeout_parameter.
2340  * @return Status value indicating whether the parsing was successful or not.
2341  */
2342 AP_DECLARE(apr_status_t) ap_timeout_parameter_parse(
2343                                                const char *timeout_parameter,
2344                                                apr_interval_time_t *timeout,
2345                                                const char *default_time_unit)
2346 {
2347     char *endp;
2348     const char *time_str;
2349     apr_int64_t tout;
2350
2351     tout = apr_strtoi64(timeout_parameter, &endp, 10);
2352     if (errno) {
2353         return errno;
2354     }
2355     if (!endp || !*endp) {
2356         time_str = default_time_unit;
2357     }
2358     else {
2359         time_str = endp;
2360     }
2361
2362     switch (*time_str) {
2363         /* Time is in seconds */
2364     case 's':
2365         *timeout = (apr_interval_time_t) apr_time_from_sec(tout);
2366         break;
2367     case 'h':
2368         /* Time is in hours */
2369         *timeout = (apr_interval_time_t) apr_time_from_sec(tout * 3600);
2370         break;
2371     case 'm':
2372         switch (*(++time_str)) {
2373         /* Time is in milliseconds */
2374         case 's':
2375             *timeout = (apr_interval_time_t) tout * 1000;
2376             break;
2377         /* Time is in minutes */
2378         case 'i':
2379             *timeout = (apr_interval_time_t) apr_time_from_sec(tout * 60);
2380             break;
2381         default:
2382             return APR_EGENERAL;
2383         }
2384         break;
2385     default:
2386         return APR_EGENERAL;
2387     }
2388     return APR_SUCCESS;
2389 }
2390
2391 /**
2392  * Determine if a request has a request body or not.
2393  *
2394  * @param r the request_rec of the request
2395  * @return truth value
2396  */
2397 AP_DECLARE(int) ap_request_has_body(request_rec *r)
2398 {
2399     apr_off_t cl;
2400     char *estr;
2401     const char *cls;
2402     int has_body;
2403
2404     has_body = (!r->header_only
2405                 && (r->kept_body
2406                     || apr_table_get(r->headers_in, "Transfer-Encoding")
2407                     || ( (cls = apr_table_get(r->headers_in, "Content-Length"))
2408                         && (apr_strtoff(&cl, cls, &estr, 10) == APR_SUCCESS)
2409                         && (!*estr)
2410                         && (cl > 0) )
2411                     )
2412                 );
2413     return has_body;
2414 }
2415
2416 AP_DECLARE_NONSTD(apr_status_t) ap_pool_cleanup_set_null(void *data_)
2417 {
2418     void **ptr = (void **)data_;
2419     *ptr = NULL;
2420     return APR_SUCCESS;
2421 }
2422
2423 AP_DECLARE(apr_status_t) ap_str2_alnum(const char *src, char *dest) {
2424
2425     for ( ; *src; src++, dest++)
2426     {
2427         if (!apr_isprint(*src))
2428             *dest = 'x';
2429         else if (!apr_isalnum(*src))
2430             *dest = '_';
2431         else
2432             *dest = (char)*src;
2433     }
2434     *dest = '\0';
2435     return APR_SUCCESS;
2436
2437 }
2438
2439 AP_DECLARE(apr_status_t) ap_pstr2_alnum(apr_pool_t *p, const char *src,
2440                                         const char **dest)
2441 {
2442     char *new = apr_palloc(p, strlen(src)+1);
2443     if (!new)
2444         return APR_ENOMEM;
2445     *dest = new;
2446     return ap_str2_alnum(src, new);
2447 }
2448
2449 /**
2450  * Read the body and parse any form found, which must be of the
2451  * type application/x-www-form-urlencoded.
2452  *
2453  * Name/value pairs are returned in an array, with the names as
2454  * strings with a maximum length of HUGE_STRING_LEN, and the
2455  * values as bucket brigades. This allows values to be arbitrarily
2456  * large.
2457  *
2458  * All url-encoding is removed from both the names and the values
2459  * on the fly. The names are interpreted as strings, while the
2460  * values are interpreted as blocks of binary data, that may
2461  * contain the 0 character.
2462  *
2463  * In order to ensure that resource limits are not exceeded, a
2464  * maximum size must be provided. If the sum of the lengths of
2465  * the names and the values exceed this size, this function
2466  * will return HTTP_REQUEST_ENTITY_TOO_LARGE.
2467  *
2468  * An optional number of parameters can be provided, if the number
2469  * of parameters provided exceeds this amount, this function will
2470  * return HTTP_REQUEST_ENTITY_TOO_LARGE. If this value is negative,
2471  * no limit is imposed, and the number of parameters is in turn
2472  * constrained by the size parameter above.
2473  *
2474  * This function honours any kept_body configuration, and the
2475  * original raw request body will be saved to the kept_body brigade
2476  * if so configured, just as ap_discard_request_body does.
2477  *
2478  * NOTE: File upload is not yet supported, but can be without change
2479  * to the function call.
2480  */
2481
2482 /* form parsing stuff */
2483 typedef enum {
2484     FORM_NORMAL,
2485     FORM_AMP,
2486     FORM_NAME,
2487     FORM_VALUE,
2488     FORM_PERCENTA,
2489     FORM_PERCENTB,
2490     FORM_ABORT
2491 } ap_form_type_t;
2492
2493 AP_DECLARE(int) ap_parse_form_data(request_rec *r, ap_filter_t *f,
2494                                    apr_array_header_t **ptr,
2495                                    apr_size_t num, apr_size_t usize)
2496 {
2497     apr_bucket_brigade *bb = NULL;
2498     int seen_eos = 0;
2499     char buffer[HUGE_STRING_LEN + 1];
2500     const char *ct;
2501     apr_size_t offset = 0;
2502     apr_ssize_t size;
2503     ap_form_type_t state = FORM_NAME, percent = FORM_NORMAL;
2504     ap_form_pair_t *pair = NULL;
2505     apr_array_header_t *pairs = apr_array_make(r->pool, 4, sizeof(ap_form_pair_t));
2506
2507     char hi = 0;
2508     char low = 0;
2509
2510     *ptr = pairs;
2511
2512     /* sanity check - we only support forms for now */
2513     ct = apr_table_get(r->headers_in, "Content-Type");
2514     if (!ct || strncasecmp("application/x-www-form-urlencoded", ct, 33)) {
2515         return ap_discard_request_body(r);
2516     }
2517
2518     if (usize > APR_SIZE_MAX >> 1)
2519         size = APR_SIZE_MAX >> 1;
2520     else
2521         size = usize;
2522
2523     if (!f) {
2524         f = r->input_filters;
2525     }
2526
2527     bb = apr_brigade_create(r->pool, r->connection->bucket_alloc);
2528     do {
2529         apr_bucket *bucket = NULL, *last = NULL;
2530
2531         int rv = ap_get_brigade(f, bb, AP_MODE_READBYTES,
2532                                 APR_BLOCK_READ, HUGE_STRING_LEN);
2533         if (rv != APR_SUCCESS) {
2534             apr_brigade_destroy(bb);
2535             return ap_map_http_request_error(rv, HTTP_BAD_REQUEST);
2536         }
2537
2538         for (bucket = APR_BRIGADE_FIRST(bb);
2539              bucket != APR_BRIGADE_SENTINEL(bb);
2540              last = bucket, bucket = APR_BUCKET_NEXT(bucket)) {
2541             const char *data;
2542             apr_size_t len, slide;
2543
2544             if (last) {
2545                 apr_bucket_delete(last);
2546             }
2547             if (APR_BUCKET_IS_EOS(bucket)) {
2548                 seen_eos = 1;
2549                 break;
2550             }
2551             if (bucket->length == 0) {
2552                 continue;
2553             }
2554
2555             rv = apr_bucket_read(bucket, &data, &len, APR_BLOCK_READ);
2556             if (rv != APR_SUCCESS) {
2557                 apr_brigade_destroy(bb);
2558                 return HTTP_BAD_REQUEST;
2559             }
2560
2561             slide = len;
2562             while (state != FORM_ABORT && slide-- > 0 && size >= 0 && num != 0) {
2563                 char c = *data++;
2564                 if ('+' == c) {
2565                     c = ' ';
2566                 }
2567                 else if ('&' == c) {
2568                     state = FORM_AMP;
2569                 }
2570                 if ('%' == c) {
2571                     percent = FORM_PERCENTA;
2572                     continue;
2573                 }
2574                 if (FORM_PERCENTA == percent) {
2575                     if (c >= 'a') {
2576                         hi = c - 'a' + 10;
2577                     }
2578                     else if (c >= 'A') {
2579                         hi = c - 'A' + 10;
2580                     }
2581                     else if (c >= '0') {
2582                         hi = c - '0';
2583                     }
2584                     hi = hi << 4;
2585                     percent = FORM_PERCENTB;
2586                     continue;
2587                 }
2588                 if (FORM_PERCENTB == percent) {
2589                     if (c >= 'a') {
2590                         low = c - 'a' + 10;
2591                     }
2592                     else if (c >= 'A') {
2593                         low = c - 'A' + 10;
2594                     }
2595                     else if (c >= '0') {
2596                         low = c - '0';
2597                     }
2598                     c = low | hi;
2599                     percent = FORM_NORMAL;
2600                 }
2601                 switch (state) {
2602                     case FORM_AMP:
2603                         if (pair) {
2604                             const char *tmp = apr_pmemdup(r->pool, buffer, offset);
2605                             apr_bucket *b = apr_bucket_pool_create(tmp, offset, r->pool, r->connection->bucket_alloc);
2606                             APR_BRIGADE_INSERT_TAIL(pair->value, b);
2607                         }
2608                         state = FORM_NAME;
2609                         pair = NULL;
2610                         offset = 0;
2611                         num--;
2612                         break;
2613                     case FORM_NAME:
2614                         if (offset < HUGE_STRING_LEN) {
2615                             if ('=' == c) {
2616                                 buffer[offset] = 0;
2617                                 offset = 0;
2618                                 pair = (ap_form_pair_t *) apr_array_push(pairs);
2619                                 pair->name = apr_pstrdup(r->pool, buffer);
2620                                 pair->value = apr_brigade_create(r->pool, r->connection->bucket_alloc);
2621                                 state = FORM_VALUE;
2622                             }
2623                             else {
2624                                 buffer[offset++] = c;
2625                                 size--;
2626                             }
2627                         }
2628                         else {
2629                             state = FORM_ABORT;
2630                         }
2631                         break;
2632                     case FORM_VALUE:
2633                         if (offset >= HUGE_STRING_LEN) {
2634                             const char *tmp = apr_pmemdup(r->pool, buffer, offset);
2635                             apr_bucket *b = apr_bucket_pool_create(tmp, offset, r->pool, r->connection->bucket_alloc);
2636                             APR_BRIGADE_INSERT_TAIL(pair->value, b);
2637                             offset = 0;
2638                         }
2639                         buffer[offset++] = c;
2640                         size--;
2641                         break;
2642                     default:
2643                         break;
2644                 }
2645             }
2646
2647         }
2648
2649         apr_brigade_cleanup(bb);
2650     } while (!seen_eos);
2651
2652     if (FORM_ABORT == state || size < 0 || num == 0) {
2653         return HTTP_REQUEST_ENTITY_TOO_LARGE;
2654     }
2655     else if (FORM_VALUE == state && pair && offset > 0) {
2656         const char *tmp = apr_pmemdup(r->pool, buffer, offset);
2657         apr_bucket *b = apr_bucket_pool_create(tmp, offset, r->pool, r->connection->bucket_alloc);
2658         APR_BRIGADE_INSERT_TAIL(pair->value, b);
2659     }
2660
2661     return OK;
2662
2663 }
2664
2665 #define VARBUF_SMALL_SIZE 2048
2666 #define VARBUF_MAX_SIZE   (APR_SIZE_MAX - 1 -                                \
2667                            APR_ALIGN_DEFAULT(sizeof(struct ap_varbuf_info)))
2668
2669 struct ap_varbuf_info {
2670     struct apr_memnode_t *node;
2671     apr_allocator_t *allocator;
2672 };
2673
2674 static apr_status_t varbuf_cleanup(void *info_)
2675 {
2676     struct ap_varbuf_info *info = info_;
2677     info->node->next = NULL;
2678     apr_allocator_free(info->allocator, info->node);
2679     return APR_SUCCESS;
2680 }
2681
2682 const char nul = '\0';
2683 static char * const varbuf_empty = (char *)&nul;
2684
2685 AP_DECLARE(void) ap_varbuf_init(apr_pool_t *p, struct ap_varbuf *vb,
2686                                 apr_size_t init_size)
2687 {
2688     vb->buf = varbuf_empty;
2689     vb->avail = 0;
2690     vb->strlen = AP_VARBUF_UNKNOWN;
2691     vb->pool = p;
2692     vb->info = NULL;
2693
2694     ap_varbuf_grow(vb, init_size);
2695 }
2696
2697 AP_DECLARE(void) ap_varbuf_grow(struct ap_varbuf *vb, apr_size_t new_len)
2698 {
2699     apr_memnode_t *new_node = NULL;
2700     apr_allocator_t *allocator;
2701     struct ap_varbuf_info *new_info;
2702     char *new;
2703
2704     AP_DEBUG_ASSERT(vb->strlen == AP_VARBUF_UNKNOWN || vb->avail >= vb->strlen);
2705
2706     if (new_len <= vb->avail)
2707         return;
2708
2709     if (new_len < 2 * vb->avail && vb->avail < VARBUF_MAX_SIZE/2) {
2710         /* at least double the size, to avoid repeated reallocations */
2711         new_len = 2 * vb->avail;
2712     }
2713     else if (new_len > VARBUF_MAX_SIZE) {
2714         apr_abortfunc_t abort_fn = apr_pool_abort_get(vb->pool);
2715         ap_assert(abort_fn != NULL);
2716         abort_fn(APR_ENOMEM);
2717         return;
2718     }
2719
2720     new_len++;  /* add space for trailing \0 */
2721     if (new_len <= VARBUF_SMALL_SIZE) {
2722         new_len = APR_ALIGN_DEFAULT(new_len);
2723         new = apr_palloc(vb->pool, new_len);
2724         if (vb->avail && vb->strlen != 0) {
2725             AP_DEBUG_ASSERT(vb->buf != NULL);
2726             AP_DEBUG_ASSERT(vb->buf != varbuf_empty);
2727             if (new == vb->buf + vb->avail + 1) {
2728                 /* We are lucky: the new memory lies directly after our old
2729                  * buffer, we can now use both.
2730                  */
2731                 vb->avail += new_len;
2732                 return;
2733             }
2734             else {
2735                 /* copy up to vb->strlen + 1 bytes */
2736                 memcpy(new, vb->buf, vb->strlen == AP_VARBUF_UNKNOWN ?
2737                                      vb->avail + 1 : vb->strlen + 1);
2738             }
2739         }
2740         else {
2741             *new = '\0';
2742         }
2743         vb->avail = new_len - 1;
2744         vb->buf = new;
2745         return;
2746     }
2747
2748     /* The required block is rather larger. Use allocator directly so that
2749      * the memory can be freed independently from the pool. */
2750     allocator = apr_pool_allocator_get(vb->pool);
2751     if (new_len <= VARBUF_MAX_SIZE)
2752         new_node = apr_allocator_alloc(allocator,
2753                                        new_len + APR_ALIGN_DEFAULT(sizeof(*new_info)));
2754     if (!new_node) {
2755         apr_abortfunc_t abort_fn = apr_pool_abort_get(vb->pool);
2756         ap_assert(abort_fn != NULL);
2757         abort_fn(APR_ENOMEM);
2758         return;
2759     }
2760     new_info = (struct ap_varbuf_info *)new_node->first_avail;
2761     new_node->first_avail += APR_ALIGN_DEFAULT(sizeof(*new_info));
2762     new_info->node = new_node;
2763     new_info->allocator = allocator;
2764     new = new_node->first_avail;
2765     AP_DEBUG_ASSERT(new_node->endp - new_node->first_avail >= new_len);
2766     new_len = new_node->endp - new_node->first_avail;
2767
2768     if (vb->avail && vb->strlen != 0)
2769         memcpy(new, vb->buf, vb->strlen == AP_VARBUF_UNKNOWN ?
2770                              vb->avail + 1 : vb->strlen + 1);
2771     else
2772         *new = '\0';
2773     if (vb->info)
2774         apr_pool_cleanup_run(vb->pool, vb->info, varbuf_cleanup);
2775     apr_pool_cleanup_register(vb->pool, new_info, varbuf_cleanup,
2776                               apr_pool_cleanup_null);
2777     vb->info = new_info;
2778     vb->buf = new;
2779     vb->avail = new_len - 1;
2780 }
2781
2782 AP_DECLARE(void) ap_varbuf_strmemcat(struct ap_varbuf *vb, const char *str,
2783                                      int len)
2784 {
2785     if (len == 0)
2786         return;
2787     if (!vb->avail) {
2788         ap_varbuf_grow(vb, len);
2789         memcpy(vb->buf, str, len);
2790         vb->buf[len] = '\0';
2791         vb->strlen = len;
2792         return;
2793     }
2794     if (vb->strlen == AP_VARBUF_UNKNOWN)
2795         vb->strlen = strlen(vb->buf);
2796     ap_varbuf_grow(vb, vb->strlen + len);
2797     memcpy(vb->buf + vb->strlen, str, len);
2798     vb->strlen += len;
2799     vb->buf[vb->strlen] = '\0';
2800 }
2801
2802 AP_DECLARE(void) ap_varbuf_free(struct ap_varbuf *vb)
2803 {
2804     if (vb->info) {
2805         apr_pool_cleanup_run(vb->pool, vb->info, varbuf_cleanup);
2806         vb->info = NULL;
2807     }
2808     vb->buf = NULL;
2809 }
2810
2811 AP_DECLARE(char *) ap_varbuf_pdup(apr_pool_t *p, struct ap_varbuf *buf,
2812                                   const char *prepend, apr_size_t prepend_len,
2813                                   const char *append, apr_size_t append_len,
2814                                   apr_size_t *new_len)
2815 {
2816     apr_size_t i = 0;
2817     struct iovec vec[3];
2818
2819     if (prepend) {
2820         vec[i].iov_base = (void *)prepend;
2821         vec[i].iov_len = prepend_len;
2822         i++;
2823     }
2824     if (buf->avail && buf->strlen) {
2825         if (buf->strlen == AP_VARBUF_UNKNOWN)
2826             buf->strlen = strlen(buf->buf);
2827         vec[i].iov_base = (void *)buf->buf;
2828         vec[i].iov_len = buf->strlen;
2829         i++;
2830     }
2831     if (append) {
2832         vec[i].iov_base = (void *)append;
2833         vec[i].iov_len = append_len;
2834         i++;
2835     }
2836     if (i)
2837         return apr_pstrcatv(p, vec, i, new_len);
2838
2839     if (new_len)
2840         *new_len = 0;
2841     return "";
2842 }
2843
2844 AP_DECLARE(apr_status_t) ap_varbuf_regsub(struct ap_varbuf *vb,
2845                                           const char *input,
2846                                           const char *source,
2847                                           apr_size_t nmatch,
2848                                           ap_regmatch_t pmatch[],
2849                                           apr_size_t maxlen)
2850 {
2851     return regsub_core(NULL, NULL, vb, input, source, nmatch, pmatch, maxlen);
2852 }
2853
2854 static const char * const oom_message = "[crit] Memory allocation failed, "
2855                                         "aborting process." APR_EOL_STR;
2856
2857 AP_DECLARE(void) ap_abort_on_oom()
2858 {
2859     int written, count = strlen(oom_message);
2860     const char *buf = oom_message;
2861     do {
2862         written = write(STDERR_FILENO, buf, count);
2863         if (written == count)
2864             break;
2865         if (written > 0) {
2866             buf += written;
2867             count -= written;
2868         }
2869     } while (written >= 0 || errno == EINTR);
2870     abort();
2871 }
2872
2873 AP_DECLARE(void *) ap_malloc(size_t size)
2874 {
2875     void *p = malloc(size);
2876     if (p == NULL && size != 0)
2877         ap_abort_on_oom();
2878     return p;
2879 }
2880
2881 AP_DECLARE(void *) ap_calloc(size_t nelem, size_t size)
2882 {
2883     void *p = calloc(nelem, size);
2884     if (p == NULL && nelem != 0 && size != 0)
2885         ap_abort_on_oom();
2886     return p;
2887 }
2888
2889 AP_DECLARE(void *) ap_realloc(void *ptr, size_t size)
2890 {
2891     void *p = realloc(ptr, size);
2892     if (p == NULL && size != 0)
2893         ap_abort_on_oom();
2894     return p;
2895 }
2896
2897 AP_DECLARE(void) ap_get_sload(ap_sload_t *ld)
2898 {
2899     int i, j, server_limit, thread_limit;
2900     int ready = 0;
2901     int busy = 0;
2902     int total;
2903     ap_generation_t mpm_generation;
2904
2905     /* preload errored fields, we overwrite */
2906     ld->idle = -1;
2907     ld->busy = -1;
2908     ld->bytes_served = 0;
2909     ld->access_count = 0;
2910
2911     ap_mpm_query(AP_MPMQ_GENERATION, &mpm_generation);
2912     ap_mpm_query(AP_MPMQ_HARD_LIMIT_THREADS, &thread_limit);
2913     ap_mpm_query(AP_MPMQ_HARD_LIMIT_DAEMONS, &server_limit);
2914
2915     for (i = 0; i < server_limit; i++) {
2916         process_score *ps;
2917         ps = ap_get_scoreboard_process(i);
2918
2919         for (j = 0; j < thread_limit; j++) {
2920             int res;
2921             worker_score *ws = NULL;
2922             ws = &ap_scoreboard_image->servers[i][j];
2923             res = ws->status;
2924
2925             if (!ps->quiescing && ps->pid) {
2926                 if (res == SERVER_READY && ps->generation == mpm_generation) {
2927                     ready++;
2928                 }
2929                 else if (res != SERVER_DEAD &&
2930                          res != SERVER_STARTING && res != SERVER_IDLE_KILL &&
2931                          ps->generation == mpm_generation) {
2932                     busy++;
2933                 }   
2934             }
2935
2936             if (ap_extended_status && !ps->quiescing && ps->pid) {
2937                 if (ws->access_count != 0 
2938                     || (res != SERVER_READY && res != SERVER_DEAD)) {
2939                     ld->access_count += ws->access_count;
2940                     ld->bytes_served += ws->bytes_served;
2941                 }
2942             }
2943         }
2944     }
2945     total = busy + ready;
2946     if (total) {
2947         ld->idle = ready * 100 / total;
2948         ld->busy = busy * 100 / total;
2949     }
2950 }
2951
2952 AP_DECLARE(void) ap_get_loadavg(ap_loadavg_t *ld)
2953 {
2954     /* preload errored fields, we overwrite */
2955     ld->loadavg = -1.0;
2956     ld->loadavg5 = -1.0;
2957     ld->loadavg15 = -1.0;
2958
2959 #if HAVE_GETLOADAVG
2960     {
2961         double la[3];
2962         int num;
2963
2964         num = getloadavg(la, 3);
2965         if (num > 0) {
2966             ld->loadavg = (float)la[0];
2967         }
2968         if (num > 1) {
2969             ld->loadavg5 = (float)la[1];
2970         }
2971         if (num > 2) {
2972             ld->loadavg15 = (float)la[2];
2973         }
2974     }
2975 #endif
2976 }
2977
2978 static const char * const pw_cache_note_name = "conn_cache_note";
2979 struct pw_cache {
2980     /* varbuf contains concatenated password and hash */
2981     struct ap_varbuf vb;
2982     apr_size_t pwlen;
2983     apr_status_t result;
2984 };
2985
2986 AP_DECLARE(apr_status_t) ap_password_validate(request_rec *r,
2987                                               const char *username,
2988                                               const char *passwd,
2989                                               const char *hash)
2990 {
2991     struct pw_cache *cache;
2992     apr_size_t hashlen;
2993
2994     cache = (struct pw_cache *)apr_table_get(r->connection->notes, pw_cache_note_name);
2995     if (cache != NULL) {
2996         if (strncmp(passwd, cache->vb.buf, cache->pwlen) == 0
2997             && strcmp(hash, cache->vb.buf + cache->pwlen) == 0) {
2998             return cache->result;
2999         }
3000         /* make ap_varbuf_grow below not copy the old data */
3001         cache->vb.strlen = 0;
3002     }
3003     else {
3004         cache = apr_palloc(r->connection->pool, sizeof(struct pw_cache));
3005         ap_varbuf_init(r->connection->pool, &cache->vb, 0);
3006         apr_table_setn(r->connection->notes, pw_cache_note_name, (void *)cache);
3007     }
3008     cache->pwlen = strlen(passwd);
3009     hashlen = strlen(hash);
3010     ap_varbuf_grow(&cache->vb, cache->pwlen + hashlen + 1);
3011     memcpy(cache->vb.buf, passwd, cache->pwlen);
3012     memcpy(cache->vb.buf + cache->pwlen, hash, hashlen + 1);
3013     cache->result = apr_password_validate(passwd, hash);
3014     return cache->result;
3015 }
3016
3017 AP_DECLARE(char *) ap_get_exec_line(apr_pool_t *p,
3018                                     const char *cmd,
3019                                     const char * const * argv)
3020 {
3021     char buf[MAX_STRING_LEN];
3022     apr_procattr_t *procattr;
3023     apr_proc_t *proc;
3024     apr_file_t *fp;
3025     apr_size_t nbytes = 1;
3026     char c;
3027     int k;
3028
3029     if (apr_procattr_create(&procattr, p) != APR_SUCCESS)
3030         return NULL;
3031     if (apr_procattr_io_set(procattr, APR_FULL_BLOCK, APR_FULL_BLOCK,
3032                             APR_FULL_BLOCK) != APR_SUCCESS)
3033         return NULL;
3034     if (apr_procattr_dir_set(procattr,
3035                              ap_make_dirstr_parent(p, cmd)) != APR_SUCCESS)
3036         return NULL;
3037     if (apr_procattr_cmdtype_set(procattr, APR_PROGRAM) != APR_SUCCESS)
3038         return NULL;
3039     proc = apr_pcalloc(p, sizeof(apr_proc_t));
3040     if (apr_proc_create(proc, cmd, argv, NULL, procattr, p) != APR_SUCCESS)
3041         return NULL;
3042     fp = proc->out;
3043
3044     if (fp == NULL)
3045         return NULL;
3046     /* XXX: we are reading 1 byte at a time here */
3047     for (k = 0; apr_file_read(fp, &c, &nbytes) == APR_SUCCESS
3048                 && nbytes == 1 && (k < MAX_STRING_LEN-1)     ; ) {
3049         if (c == '\n' || c == '\r')
3050             break;
3051         buf[k++] = c;
3052     }
3053     buf[k] = '\0'; 
3054     apr_file_close(fp);
3055
3056     return apr_pstrndup(p, buf, k);
3057 }