author | Lars Hjemli <hjemli@gmail.com> | 2007-05-15 21:28:40 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-15 21:32:25 (UTC) |
commit | 47a81c77fdd017227632c4df9a0b7b135b8a738d (patch) (unidiff) | |
tree | 5ffdd5f4c1af112d50e6bec01de722299ca2e7d1 /parsing.c | |
parent | ad3b39d3b8443e142a6bfee34d527c99cd5f280d (diff) | |
download | cgit-47a81c77fdd017227632c4df9a0b7b135b8a738d.zip cgit-47a81c77fdd017227632c4df9a0b7b135b8a738d.tar.gz cgit-47a81c77fdd017227632c4df9a0b7b135b8a738d.tar.bz2 |
Restrict deep nesting of configfiles
There is no point in restricting the number of included config-
files, but there is a point in restricting the nestinglevel
of configfiles: to avoid recursive inclusions. This is easily
achieved by decrementing the static nesting-variable upon exit
from cgit_read_config().
Also fix some whitespace breakage.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | parsing.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -9,239 +9,241 @@ | |||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | 10 | ||
11 | int next_char(FILE *f) | 11 | int next_char(FILE *f) |
12 | { | 12 | { |
13 | int c = fgetc(f); | 13 | int c = fgetc(f); |
14 | if (c=='\r') { | 14 | if (c=='\r') { |
15 | c = fgetc(f); | 15 | c = fgetc(f); |
16 | if (c!='\n') { | 16 | if (c!='\n') { |
17 | ungetc(c, f); | 17 | ungetc(c, f); |
18 | c = '\r'; | 18 | c = '\r'; |
19 | } | 19 | } |
20 | } | 20 | } |
21 | return c; | 21 | return c; |
22 | } | 22 | } |
23 | 23 | ||
24 | void skip_line(FILE *f) | 24 | void skip_line(FILE *f) |
25 | { | 25 | { |
26 | int c; | 26 | int c; |
27 | 27 | ||
28 | while((c=next_char(f)) && c!='\n' && c!=EOF) | 28 | while((c=next_char(f)) && c!='\n' && c!=EOF) |
29 | ; | 29 | ; |
30 | } | 30 | } |
31 | 31 | ||
32 | int read_config_line(FILE *f, char *line, const char **value, int bufsize) | 32 | int read_config_line(FILE *f, char *line, const char **value, int bufsize) |
33 | { | 33 | { |
34 | int i = 0, isname = 0; | 34 | int i = 0, isname = 0; |
35 | 35 | ||
36 | *value = NULL; | 36 | *value = NULL; |
37 | while(i<bufsize-1) { | 37 | while(i<bufsize-1) { |
38 | int c = next_char(f); | 38 | int c = next_char(f); |
39 | if (!isname && (c=='#' || c==';')) { | 39 | if (!isname && (c=='#' || c==';')) { |
40 | skip_line(f); | 40 | skip_line(f); |
41 | continue; | 41 | continue; |
42 | } | 42 | } |
43 | if (!isname && isspace(c)) | 43 | if (!isname && isspace(c)) |
44 | continue; | 44 | continue; |
45 | 45 | ||
46 | if (c=='=' && !*value) { | 46 | if (c=='=' && !*value) { |
47 | line[i] = 0; | 47 | line[i] = 0; |
48 | *value = &line[i+1]; | 48 | *value = &line[i+1]; |
49 | } else if (c=='\n' && !isname) { | 49 | } else if (c=='\n' && !isname) { |
50 | i = 0; | 50 | i = 0; |
51 | continue; | 51 | continue; |
52 | } else if (c=='\n' || c==EOF) { | 52 | } else if (c=='\n' || c==EOF) { |
53 | line[i] = 0; | 53 | line[i] = 0; |
54 | break; | 54 | break; |
55 | } else { | 55 | } else { |
56 | line[i]=c; | 56 | line[i]=c; |
57 | } | 57 | } |
58 | isname = 1; | 58 | isname = 1; |
59 | i++; | 59 | i++; |
60 | } | 60 | } |
61 | line[i+1] = 0; | 61 | line[i+1] = 0; |
62 | return i; | 62 | return i; |
63 | } | 63 | } |
64 | 64 | ||
65 | int cgit_read_config(const char *filename, configfn fn) | 65 | int cgit_read_config(const char *filename, configfn fn) |
66 | { | 66 | { |
67 | static int nesting; | 67 | static int nesting; |
68 | int len; | 68 | int len; |
69 | char line[256]; | 69 | char line[256]; |
70 | const char *value; | 70 | const char *value; |
71 | FILE *f; | 71 | FILE *f; |
72 | 72 | ||
73 | /* cancel the reading of yet another configfile after 16 invocations */ | 73 | /* cancel deeply nested include-commands */ |
74 | if (nesting++ > 16) | 74 | if (nesting > 8) |
75 | return -1; | 75 | return -1; |
76 | if (!(f = fopen(filename, "r"))) | 76 | if (!(f = fopen(filename, "r"))) |
77 | return -1; | 77 | return -1; |
78 | nesting++; | ||
78 | while((len = read_config_line(f, line, &value, sizeof(line))) > 0) | 79 | while((len = read_config_line(f, line, &value, sizeof(line))) > 0) |
79 | (*fn)(line, value); | 80 | (*fn)(line, value); |
81 | nesting--; | ||
80 | fclose(f); | 82 | fclose(f); |
81 | return 0; | 83 | return 0; |
82 | } | 84 | } |
83 | 85 | ||
84 | char *convert_query_hexchar(char *txt) | 86 | char *convert_query_hexchar(char *txt) |
85 | { | 87 | { |
86 | int d1, d2; | 88 | int d1, d2; |
87 | if (strlen(txt) < 3) { | 89 | if (strlen(txt) < 3) { |
88 | *txt = '\0'; | 90 | *txt = '\0'; |
89 | return txt-1; | 91 | return txt-1; |
90 | } | 92 | } |
91 | d1 = hextoint(*(txt+1)); | 93 | d1 = hextoint(*(txt+1)); |
92 | d2 = hextoint(*(txt+2)); | 94 | d2 = hextoint(*(txt+2)); |
93 | if (d1<0 || d2<0) { | 95 | if (d1<0 || d2<0) { |
94 | strcpy(txt, txt+3); | 96 | strcpy(txt, txt+3); |
95 | return txt-1; | 97 | return txt-1; |
96 | } else { | 98 | } else { |
97 | *txt = d1 * 16 + d2; | 99 | *txt = d1 * 16 + d2; |
98 | strcpy(txt+1, txt+3); | 100 | strcpy(txt+1, txt+3); |
99 | return txt; | 101 | return txt; |
100 | } | 102 | } |
101 | } | 103 | } |
102 | 104 | ||
103 | int cgit_parse_query(char *txt, configfn fn) | 105 | int cgit_parse_query(char *txt, configfn fn) |
104 | { | 106 | { |
105 | char *t, *value = NULL, c; | 107 | char *t, *value = NULL, c; |
106 | 108 | ||
107 | if (!txt) | 109 | if (!txt) |
108 | return 0; | 110 | return 0; |
109 | 111 | ||
110 | t = txt = xstrdup(txt); | 112 | t = txt = xstrdup(txt); |
111 | 113 | ||
112 | while((c=*t) != '\0') { | 114 | while((c=*t) != '\0') { |
113 | if (c=='=') { | 115 | if (c=='=') { |
114 | *t = '\0'; | 116 | *t = '\0'; |
115 | value = t+1; | 117 | value = t+1; |
116 | } else if (c=='+') { | 118 | } else if (c=='+') { |
117 | *t = ' '; | 119 | *t = ' '; |
118 | } else if (c=='%') { | 120 | } else if (c=='%') { |
119 | t = convert_query_hexchar(t); | 121 | t = convert_query_hexchar(t); |
120 | } else if (c=='&') { | 122 | } else if (c=='&') { |
121 | *t = '\0'; | 123 | *t = '\0'; |
122 | (*fn)(txt, value); | 124 | (*fn)(txt, value); |
123 | txt = t+1; | 125 | txt = t+1; |
124 | value = NULL; | 126 | value = NULL; |
125 | } | 127 | } |
126 | t++; | 128 | t++; |
127 | } | 129 | } |
128 | if (t!=txt) | 130 | if (t!=txt) |
129 | (*fn)(txt, value); | 131 | (*fn)(txt, value); |
130 | return 0; | 132 | return 0; |
131 | } | 133 | } |
132 | 134 | ||
133 | char *substr(const char *head, const char *tail) | 135 | char *substr(const char *head, const char *tail) |
134 | { | 136 | { |
135 | char *buf; | 137 | char *buf; |
136 | 138 | ||
137 | buf = xmalloc(tail - head + 1); | 139 | buf = xmalloc(tail - head + 1); |
138 | strncpy(buf, head, tail - head); | 140 | strncpy(buf, head, tail - head); |
139 | buf[tail - head] = '\0'; | 141 | buf[tail - head] = '\0'; |
140 | return buf; | 142 | return buf; |
141 | } | 143 | } |
142 | 144 | ||
143 | struct commitinfo *cgit_parse_commit(struct commit *commit) | 145 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
144 | { | 146 | { |
145 | struct commitinfo *ret; | 147 | struct commitinfo *ret; |
146 | char *p = commit->buffer, *t = commit->buffer; | 148 | char *p = commit->buffer, *t = commit->buffer; |
147 | 149 | ||
148 | ret = xmalloc(sizeof(*ret)); | 150 | ret = xmalloc(sizeof(*ret)); |
149 | ret->commit = commit; | 151 | ret->commit = commit; |
150 | ret->author = NULL; | 152 | ret->author = NULL; |
151 | ret->author_email = NULL; | 153 | ret->author_email = NULL; |
152 | ret->committer = NULL; | 154 | ret->committer = NULL; |
153 | ret->committer_email = NULL; | 155 | ret->committer_email = NULL; |
154 | ret->subject = NULL; | 156 | ret->subject = NULL; |
155 | ret->msg = NULL; | 157 | ret->msg = NULL; |
156 | 158 | ||
157 | if (strncmp(p, "tree ", 5)) | 159 | if (strncmp(p, "tree ", 5)) |
158 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); | 160 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); |
159 | else | 161 | else |
160 | p += 46; // "tree " + hex[40] + "\n" | 162 | p += 46; // "tree " + hex[40] + "\n" |
161 | 163 | ||
162 | while (!strncmp(p, "parent ", 7)) | 164 | while (!strncmp(p, "parent ", 7)) |
163 | p += 48; // "parent " + hex[40] + "\n" | 165 | p += 48; // "parent " + hex[40] + "\n" |
164 | 166 | ||
165 | if (!strncmp(p, "author ", 7)) { | 167 | if (!strncmp(p, "author ", 7)) { |
166 | p += 7; | 168 | p += 7; |
167 | t = strchr(p, '<') - 1; | 169 | t = strchr(p, '<') - 1; |
168 | ret->author = substr(p, t); | 170 | ret->author = substr(p, t); |
169 | p = t; | 171 | p = t; |
170 | t = strchr(t, '>') + 1; | 172 | t = strchr(t, '>') + 1; |
171 | ret->author_email = substr(p, t); | 173 | ret->author_email = substr(p, t); |
172 | ret->author_date = atol(++t); | 174 | ret->author_date = atol(++t); |
173 | p = strchr(t, '\n') + 1; | 175 | p = strchr(t, '\n') + 1; |
174 | } | 176 | } |
175 | 177 | ||
176 | if (!strncmp(p, "committer ", 9)) { | 178 | if (!strncmp(p, "committer ", 9)) { |
177 | p += 9; | 179 | p += 9; |
178 | t = strchr(p, '<') - 1; | 180 | t = strchr(p, '<') - 1; |
179 | ret->committer = substr(p, t); | 181 | ret->committer = substr(p, t); |
180 | p = t; | 182 | p = t; |
181 | t = strchr(t, '>') + 1; | 183 | t = strchr(t, '>') + 1; |
182 | ret->committer_email = substr(p, t); | 184 | ret->committer_email = substr(p, t); |
183 | ret->committer_date = atol(++t); | 185 | ret->committer_date = atol(++t); |
184 | p = strchr(t, '\n') + 1; | 186 | p = strchr(t, '\n') + 1; |
185 | } | 187 | } |
186 | 188 | ||
187 | while (*p == '\n') | 189 | while (*p == '\n') |
188 | p = strchr(p, '\n') + 1; | 190 | p = strchr(p, '\n') + 1; |
189 | 191 | ||
190 | t = strchr(p, '\n'); | 192 | t = strchr(p, '\n'); |
191 | if (t && *t) { | 193 | if (t && *t) { |
192 | ret->subject = substr(p, t); | 194 | ret->subject = substr(p, t); |
193 | p = t + 1; | 195 | p = t + 1; |
194 | 196 | ||
195 | while (*p == '\n') | 197 | while (*p == '\n') |
196 | p = strchr(p, '\n') + 1; | 198 | p = strchr(p, '\n') + 1; |
197 | ret->msg = p; | 199 | ret->msg = p; |
198 | } | 200 | } |
199 | return ret; | 201 | return ret; |
200 | } | 202 | } |
201 | 203 | ||
202 | 204 | ||
203 | struct taginfo *cgit_parse_tag(struct tag *tag) | 205 | struct taginfo *cgit_parse_tag(struct tag *tag) |
204 | { | 206 | { |
205 | void *data; | 207 | void *data; |
206 | enum object_type type; | 208 | enum object_type type; |
207 | unsigned long size; | 209 | unsigned long size; |
208 | char *p, *t; | 210 | char *p, *t; |
209 | struct taginfo *ret; | 211 | struct taginfo *ret; |
210 | 212 | ||
211 | data = read_sha1_file(tag->object.sha1, &type, &size); | 213 | data = read_sha1_file(tag->object.sha1, &type, &size); |
212 | if (!data || type != OBJ_TAG) { | 214 | if (!data || type != OBJ_TAG) { |
213 | free(data); | 215 | free(data); |
214 | return 0; | 216 | return 0; |
215 | } | 217 | } |
216 | 218 | ||
217 | ret = xmalloc(sizeof(*ret)); | 219 | ret = xmalloc(sizeof(*ret)); |
218 | ret->tagger = NULL; | 220 | ret->tagger = NULL; |
219 | ret->tagger_email = NULL; | 221 | ret->tagger_email = NULL; |
220 | ret->tagger_date = 0; | 222 | ret->tagger_date = 0; |
221 | ret->msg = NULL; | 223 | ret->msg = NULL; |
222 | 224 | ||
223 | p = data; | 225 | p = data; |
224 | 226 | ||
225 | while (p && *p) { | 227 | while (p && *p) { |
226 | if (*p == '\n') | 228 | if (*p == '\n') |
227 | break; | 229 | break; |
228 | 230 | ||
229 | if (!strncmp(p, "tagger ", 7)) { | 231 | if (!strncmp(p, "tagger ", 7)) { |
230 | p += 7; | 232 | p += 7; |
231 | t = strchr(p, '<') - 1; | 233 | t = strchr(p, '<') - 1; |
232 | ret->tagger = substr(p, t); | 234 | ret->tagger = substr(p, t); |
233 | p = t; | 235 | p = t; |
234 | t = strchr(t, '>') + 1; | 236 | t = strchr(t, '>') + 1; |
235 | ret->tagger_email = substr(p, t); | 237 | ret->tagger_email = substr(p, t); |
236 | ret->tagger_date = atol(++t); | 238 | ret->tagger_date = atol(++t); |
237 | } | 239 | } |
238 | p = strchr(p, '\n') + 1; | 240 | p = strchr(p, '\n') + 1; |
239 | } | 241 | } |
240 | 242 | ||
241 | while (p && (*p == '\n')) | 243 | while (p && (*p == '\n')) |
242 | p = strchr(p, '\n') + 1; | 244 | p = strchr(p, '\n') + 1; |
243 | if (p && *p) | 245 | if (p && *p) |
244 | ret->msg = xstrdup(p); | 246 | ret->msg = xstrdup(p); |
245 | free(data); | 247 | free(data); |
246 | return ret; | 248 | return ret; |
247 | } | 249 | } |