upload http
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / server / gen_test_char.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 #ifdef CROSS_COMPILE
18
19 #define apr_isalnum(c) (isalnum(((unsigned char)(c))))
20 #define apr_isalpha(c) (isalpha(((unsigned char)(c))))
21 #define apr_iscntrl(c) (iscntrl(((unsigned char)(c))))
22 #define apr_isprint(c) (isprint(((unsigned char)(c))))
23 #include <ctype.h>
24 #define APR_HAVE_STDIO_H 1
25 #define APR_HAVE_STRING_H 1
26
27 #else
28
29 #include "apr.h"
30 #include "apr_lib.h"
31
32 #if defined(WIN32) || defined(OS2)
33 #define NEED_ENHANCED_ESCAPES
34 #endif
35
36 #endif
37
38 #if APR_HAVE_STDIO_H
39 #include <stdio.h>
40 #endif
41 #if APR_HAVE_STRING_H
42 #include <string.h>
43 #endif
44
45 /* A bunch of functions in util.c scan strings looking for certain characters.
46  * To make that more efficient we encode a lookup table.
47  */
48 #define T_ESCAPE_SHELL_CMD    (0x01)
49 #define T_ESCAPE_PATH_SEGMENT (0x02)
50 #define T_OS_ESCAPE_PATH      (0x04)
51 #define T_HTTP_TOKEN_STOP     (0x08)
52 #define T_ESCAPE_LOGITEM      (0x10)
53 #define T_ESCAPE_FORENSIC     (0x20)
54
55 int main(int argc, char *argv[])
56 {
57     unsigned c;
58     unsigned char flags;
59
60     printf("/* this file is automatically generated by gen_test_char, "
61            "do not edit */\n"
62            "#define T_ESCAPE_SHELL_CMD     (%u)\n"
63            "#define T_ESCAPE_PATH_SEGMENT  (%u)\n"
64            "#define T_OS_ESCAPE_PATH       (%u)\n"
65            "#define T_HTTP_TOKEN_STOP      (%u)\n"
66            "#define T_ESCAPE_LOGITEM       (%u)\n"
67            "#define T_ESCAPE_FORENSIC      (%u)\n"
68            "\n"
69            "static const unsigned char test_char_table[256] = {\n"
70            "    0,",
71            T_ESCAPE_SHELL_CMD,
72            T_ESCAPE_PATH_SEGMENT,
73            T_OS_ESCAPE_PATH,
74            T_HTTP_TOKEN_STOP,
75            T_ESCAPE_LOGITEM,
76            T_ESCAPE_FORENSIC);
77
78     /* we explicitly dealt with NUL above
79      * in case some strchr() do bogosity with it */
80
81     for (c = 1; c < 256; ++c) {
82         flags = 0;
83         if (c % 20 == 0)
84             printf("\n    ");
85
86         /* escape_shell_cmd */
87 #ifdef NEED_ENHANCED_ESCAPES
88         /* Win32/OS2 have many of the same vulnerable characters
89          * as Unix sh, plus the carriage return and percent char.
90          * The proper escaping of these characters varies from unix
91          * since Win32/OS2 use carets or doubled-double quotes,
92          * and neither lf nor cr can be escaped.  We escape unix
93          * specific as well, to assure that cross-compiled unix
94          * applications behave similiarly when invoked on win32/os2.
95          *
96          * Rem please keep in-sync with apr's list in win32/filesys.c
97          */
98         if (strchr("&;`'\"|*?~<>^()[]{}$\\\n\r%", c)) {
99             flags |= T_ESCAPE_SHELL_CMD;
100         }
101 #else
102         if (strchr("&;`'\"|*?~<>^()[]{}$\\\n", c)) {
103             flags |= T_ESCAPE_SHELL_CMD;
104         }
105 #endif
106
107         if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=~", c)) {
108             flags |= T_ESCAPE_PATH_SEGMENT;
109         }
110
111         if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=/~", c)) {
112             flags |= T_OS_ESCAPE_PATH;
113         }
114
115         /* these are the "tspecials" from RFC2068 */
116         if (apr_iscntrl(c) || strchr(" \t()<>@,;:\\/[]?={}", c)) {
117             flags |= T_HTTP_TOKEN_STOP;
118         }
119
120         /* For logging, escape all control characters,
121          * double quotes (because they delimit the request in the log file)
122          * backslashes (because we use backslash for escaping)
123          * and 8-bit chars with the high bit set
124          */
125         if (!apr_isprint(c) || c == '"' || c == '\\' || apr_iscntrl(c)) {
126             flags |= T_ESCAPE_LOGITEM;
127         }
128
129         /* For forensic logging, escape all control characters, top bit set,
130          * :, | (used as delimiters) and % (used for escaping).
131          */
132         if (!apr_isprint(c) || c == ':' || c == '|' || c == '%'
133             || apr_iscntrl(c) || !c) {
134             flags |= T_ESCAPE_FORENSIC;
135         }
136
137         printf("%u%c", flags, (c < 255) ? ',' : ' ');
138     }
139
140     printf("\n};\n");
141
142     return 0;
143 }