]> granicus.if.org Git - apache/blob - server/gen_test_char.c
1db23b3ee5a92425e4b06d3dd4526d0a92d9bc8f
[apache] / 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 #endif
33
34 #if defined(WIN32) || defined(OS2)
35 #define NEED_ENHANCED_ESCAPES
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 #define T_ESCAPE_URLENCODED   (0x40)
55 #define T_HTTP_CTRLS          (0x80)
56
57 int main(int argc, char *argv[])
58 {
59     unsigned c;
60     unsigned char flags;
61
62     printf("/* this file is automatically generated by gen_test_char, "
63            "do not edit */\n"
64            "#define T_ESCAPE_SHELL_CMD     (%u)\n"
65            "#define T_ESCAPE_PATH_SEGMENT  (%u)\n"
66            "#define T_OS_ESCAPE_PATH       (%u)\n"
67            "#define T_HTTP_TOKEN_STOP      (%u)\n"
68            "#define T_ESCAPE_LOGITEM       (%u)\n"
69            "#define T_ESCAPE_FORENSIC      (%u)\n"
70            "#define T_ESCAPE_URLENCODED    (%u)\n"
71            "#define T_HTTP_CTRLS           (%u)\n"
72            "\n"
73            "static const unsigned char test_char_table[256] = {",
74            T_ESCAPE_SHELL_CMD,
75            T_ESCAPE_PATH_SEGMENT,
76            T_OS_ESCAPE_PATH,
77            T_HTTP_TOKEN_STOP,
78            T_ESCAPE_LOGITEM,
79            T_ESCAPE_FORENSIC,
80            T_ESCAPE_URLENCODED,
81            T_HTTP_CTRLS);
82
83     for (c = 0; c < 256; ++c) {
84         flags = 0;
85         if (c % 8 == 0)
86             printf("\n    ");
87
88         /* escape_shell_cmd */
89 #ifdef NEED_ENHANCED_ESCAPES
90         /* Win32/OS2 have many of the same vulnerable characters
91          * as Unix sh, plus the carriage return and percent char.
92          * The proper escaping of these characters varies from unix
93          * since Win32/OS2 use carets or doubled-double quotes,
94          * and neither lf nor cr can be escaped.  We escape unix
95          * specific as well, to assure that cross-compiled unix
96          * applications behave similiarly when invoked on win32/os2.
97          *
98          * Rem please keep in-sync with apr's list in win32/filesys.c
99          */
100         if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n\r%", c)) {
101             flags |= T_ESCAPE_SHELL_CMD;
102         }
103 #else
104         if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n", c)) {
105             flags |= T_ESCAPE_SHELL_CMD;
106         }
107 #endif
108
109         if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=~", c)) {
110             flags |= T_ESCAPE_PATH_SEGMENT;
111         }
112
113         if (!apr_isalnum(c) && !strchr("$-_.+!*'(),:@&=/~", c)) {
114             flags |= T_OS_ESCAPE_PATH;
115         }
116
117         if (!apr_isalnum(c) && !strchr(".-*_ ", c)) {
118             flags |= T_ESCAPE_URLENCODED;
119         }
120
121         /* Stop for any non-'token' character, including ctrls, obs-text,
122          * and "tspecials" (RFC2068) a.k.a. "separators" (RFC2616)
123          * XXX: We need to build a specific table for EBCDIC values with
124          * ASCII equivilants here
125          */
126         if (!c || apr_iscntrl(c) || strchr(" \t()<>@,;:\\\"/[]?={}", c)) {
127             flags |= T_HTTP_TOKEN_STOP;
128         }
129
130         /* Catch CTRLs other than VCHAR, HT and SP, and obs-text (RFC7230 3.2)
131          * This includes only the C0 plane, not C1 (which is obs-text itself.)
132          * XXX: Need to constrain iscntrl to C0 equivilants in ASCII,
133          * even on EBCDIC architecture
134          */
135         if (!c || (apr_iscntrl(c) && c != '\t')) {
136             flags |= T_HTTP_CTRLS;
137         }
138
139         /* For logging, escape all control characters,
140          * double quotes (because they delimit the request in the log file)
141          * backslashes (because we use backslash for escaping)
142          * and 8-bit chars with the high bit set
143          */
144         if (c && (!apr_isprint(c) || c == '"' || c == '\\' || apr_iscntrl(c))) {
145             flags |= T_ESCAPE_LOGITEM;
146         }
147
148         /* For forensic logging, escape all control characters, top bit set,
149          * :, | (used as delimiters) and % (used for escaping).
150          */
151         if (!apr_isprint(c) || c == ':' || c == '|' || c == '%'
152             || apr_iscntrl(c) || !c) {
153             flags |= T_ESCAPE_FORENSIC;
154         }
155
156         printf("0x%02x%c", flags, (c < 255) ? ',' : ' ');
157     }
158
159     printf("\n};\n");
160
161     return 0;
162 }