summaryrefslogtreecommitdiffabout
path: root/parsing.c
authorOndrej Jirman <ondrej.jirman@zonio.net>2007-05-26 01:27:49 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-05-31 08:24:43 (UTC)
commit6130231ed5e7475836a44d79d5f09e300e71a407 (patch) (unidiff)
tree9fc492315a0e9f23f1e8b0fba2420c2626a82152 /parsing.c
parenta922615dae5d1f7b932dd1fc5a5f121748d96c5a (diff)
downloadcgit-6130231ed5e7475836a44d79d5f09e300e71a407.zip
cgit-6130231ed5e7475836a44d79d5f09e300e71a407.tar.gz
cgit-6130231ed5e7475836a44d79d5f09e300e71a407.tar.bz2
Check for NULL commit buffer in cgit_parse_commit()
This can be NULL, so try not to segfault. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'parsing.c') (more/less context) (ignore whitespace changes)
-rw-r--r--parsing.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/parsing.c b/parsing.c
index b86467a..74a2484 100644
--- a/parsing.c
+++ b/parsing.c
@@ -139,128 +139,131 @@ int cgit_parse_query(char *txt, configfn fn)
139 * path: any valid path, may contain '/' 139 * path: any valid path, may contain '/'
140 * 140 *
141 */ 141 */
142void cgit_parse_url(const char *url) 142void cgit_parse_url(const char *url)
143{ 143{
144 char *cmd, *p; 144 char *cmd, *p;
145 145
146 cgit_repo = NULL; 146 cgit_repo = NULL;
147 if (!url || url[0] == '\0') 147 if (!url || url[0] == '\0')
148 return; 148 return;
149 149
150 cgit_repo = cgit_get_repoinfo(url); 150 cgit_repo = cgit_get_repoinfo(url);
151 if (cgit_repo) { 151 if (cgit_repo) {
152 cgit_query_repo = cgit_repo->url; 152 cgit_query_repo = cgit_repo->url;
153 return; 153 return;
154 } 154 }
155 155
156 cmd = strchr(url, '/'); 156 cmd = strchr(url, '/');
157 while (!cgit_repo && cmd) { 157 while (!cgit_repo && cmd) {
158 cmd[0] = '\0'; 158 cmd[0] = '\0';
159 cgit_repo = cgit_get_repoinfo(url); 159 cgit_repo = cgit_get_repoinfo(url);
160 if (cgit_repo == NULL) { 160 if (cgit_repo == NULL) {
161 cmd[0] = '/'; 161 cmd[0] = '/';
162 cmd = strchr(cmd + 1, '/'); 162 cmd = strchr(cmd + 1, '/');
163 continue; 163 continue;
164 } 164 }
165 165
166 cgit_query_repo = cgit_repo->url; 166 cgit_query_repo = cgit_repo->url;
167 p = strchr(cmd + 1, '/'); 167 p = strchr(cmd + 1, '/');
168 if (p) { 168 if (p) {
169 p[0] = '\0'; 169 p[0] = '\0';
170 if (p[1]) 170 if (p[1])
171 cgit_query_path = xstrdup(p + 1); 171 cgit_query_path = xstrdup(p + 1);
172 } 172 }
173 cgit_cmd = cgit_get_cmd_index(cmd + 1); 173 cgit_cmd = cgit_get_cmd_index(cmd + 1);
174 cgit_query_page = xstrdup(cmd + 1); 174 cgit_query_page = xstrdup(cmd + 1);
175 return; 175 return;
176 } 176 }
177} 177}
178 178
179char *substr(const char *head, const char *tail) 179char *substr(const char *head, const char *tail)
180{ 180{
181 char *buf; 181 char *buf;
182 182
183 buf = xmalloc(tail - head + 1); 183 buf = xmalloc(tail - head + 1);
184 strncpy(buf, head, tail - head); 184 strncpy(buf, head, tail - head);
185 buf[tail - head] = '\0'; 185 buf[tail - head] = '\0';
186 return buf; 186 return buf;
187} 187}
188 188
189struct commitinfo *cgit_parse_commit(struct commit *commit) 189struct commitinfo *cgit_parse_commit(struct commit *commit)
190{ 190{
191 struct commitinfo *ret; 191 struct commitinfo *ret;
192 char *p = commit->buffer, *t = commit->buffer; 192 char *p = commit->buffer, *t = commit->buffer;
193 193
194 ret = xmalloc(sizeof(*ret)); 194 ret = xmalloc(sizeof(*ret));
195 ret->commit = commit; 195 ret->commit = commit;
196 ret->author = NULL; 196 ret->author = NULL;
197 ret->author_email = NULL; 197 ret->author_email = NULL;
198 ret->committer = NULL; 198 ret->committer = NULL;
199 ret->committer_email = NULL; 199 ret->committer_email = NULL;
200 ret->subject = NULL; 200 ret->subject = NULL;
201 ret->msg = NULL; 201 ret->msg = NULL;
202 202
203 if (p == NULL)
204 return ret;
205
203 if (strncmp(p, "tree ", 5)) 206 if (strncmp(p, "tree ", 5))
204 die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); 207 die("Bad commit: %s", sha1_to_hex(commit->object.sha1));
205 else 208 else
206 p += 46; // "tree " + hex[40] + "\n" 209 p += 46; // "tree " + hex[40] + "\n"
207 210
208 while (!strncmp(p, "parent ", 7)) 211 while (!strncmp(p, "parent ", 7))
209 p += 48; // "parent " + hex[40] + "\n" 212 p += 48; // "parent " + hex[40] + "\n"
210 213
211 if (!strncmp(p, "author ", 7)) { 214 if (!strncmp(p, "author ", 7)) {
212 p += 7; 215 p += 7;
213 t = strchr(p, '<') - 1; 216 t = strchr(p, '<') - 1;
214 ret->author = substr(p, t); 217 ret->author = substr(p, t);
215 p = t; 218 p = t;
216 t = strchr(t, '>') + 1; 219 t = strchr(t, '>') + 1;
217 ret->author_email = substr(p, t); 220 ret->author_email = substr(p, t);
218 ret->author_date = atol(++t); 221 ret->author_date = atol(++t);
219 p = strchr(t, '\n') + 1; 222 p = strchr(t, '\n') + 1;
220 } 223 }
221 224
222 if (!strncmp(p, "committer ", 9)) { 225 if (!strncmp(p, "committer ", 9)) {
223 p += 9; 226 p += 9;
224 t = strchr(p, '<') - 1; 227 t = strchr(p, '<') - 1;
225 ret->committer = substr(p, t); 228 ret->committer = substr(p, t);
226 p = t; 229 p = t;
227 t = strchr(t, '>') + 1; 230 t = strchr(t, '>') + 1;
228 ret->committer_email = substr(p, t); 231 ret->committer_email = substr(p, t);
229 ret->committer_date = atol(++t); 232 ret->committer_date = atol(++t);
230 p = strchr(t, '\n') + 1; 233 p = strchr(t, '\n') + 1;
231 } 234 }
232 235
233 while (*p == '\n') 236 while (*p == '\n')
234 p = strchr(p, '\n') + 1; 237 p = strchr(p, '\n') + 1;
235 238
236 t = strchr(p, '\n'); 239 t = strchr(p, '\n');
237 if (t) { 240 if (t) {
238 if (*t == '\0') 241 if (*t == '\0')
239 ret->subject = strdup("** empty **"); 242 ret->subject = strdup("** empty **");
240 else 243 else
241 ret->subject = substr(p, t); 244 ret->subject = substr(p, t);
242 p = t + 1; 245 p = t + 1;
243 246
244 while (*p == '\n') 247 while (*p == '\n')
245 p = strchr(p, '\n') + 1; 248 p = strchr(p, '\n') + 1;
246 ret->msg = p; 249 ret->msg = p;
247 } else 250 } else
248 ret->subject = substr(p, p+strlen(p)); 251 ret->subject = substr(p, p+strlen(p));
249 252
250 return ret; 253 return ret;
251} 254}
252 255
253 256
254struct taginfo *cgit_parse_tag(struct tag *tag) 257struct taginfo *cgit_parse_tag(struct tag *tag)
255{ 258{
256 void *data; 259 void *data;
257 enum object_type type; 260 enum object_type type;
258 unsigned long size; 261 unsigned long size;
259 char *p, *t; 262 char *p, *t;
260 struct taginfo *ret; 263 struct taginfo *ret;
261 264
262 data = read_sha1_file(tag->object.sha1, &type, &size); 265 data = read_sha1_file(tag->object.sha1, &type, &size);
263 if (!data || type != OBJ_TAG) { 266 if (!data || type != OBJ_TAG) {
264 free(data); 267 free(data);
265 return 0; 268 return 0;
266 } 269 }