]> git.ipfire.org Git - thirdparty/git.git/blame - http-backend.c
t5318: avoid unnecessary command substitutions
[thirdparty/git.git] / http-backend.c
CommitLineData
2f4038ab 1#include "cache.h"
b2141fc1 2#include "config.h"
a80d72db 3#include "repository.h"
2f4038ab
SP
4#include "refs.h"
5#include "pkt-line.h"
6#include "object.h"
7#include "tag.h"
d807c4a0 8#include "exec-cmd.h"
556cfa3b
SP
9#include "run-command.h"
10#include "string-list.h"
638794cd 11#include "url.h"
e32a4581 12#include "argv-array.h"
0abe14f6 13#include "packfile.h"
a80d72db 14#include "object-store.h"
237ffedd 15#include "protocol.h"
2f4038ab
SP
16
17static const char content_type[] = "Content-Type";
18static const char content_length[] = "Content-Length";
19static const char last_modified[] = "Last-Modified";
5abb013b 20static int getanyfile = 1;
6bc0cb51 21static unsigned long max_request_buffer = 10 * 1024 * 1024;
2f4038ab 22
556cfa3b
SP
23static struct string_list *query_params;
24
25struct rpc_service {
26 const char *name;
27 const char *config_name;
6bc0cb51 28 unsigned buffer_input : 1;
556cfa3b
SP
29 signed enabled : 2;
30};
31
32static struct rpc_service rpc_service[] = {
6bc0cb51
JK
33 { "upload-pack", "uploadpack", 1, 1 },
34 { "receive-pack", "receivepack", 0, -1 },
556cfa3b
SP
35};
36
556cfa3b
SP
37static struct string_list *get_parameters(void)
38{
39 if (!query_params) {
40 const char *query = getenv("QUERY_STRING");
41
42 query_params = xcalloc(1, sizeof(*query_params));
43 while (query && *query) {
638794cd
JK
44 char *name = url_decode_parameter_name(&query);
45 char *value = url_decode_parameter_value(&query);
556cfa3b
SP
46 struct string_list_item *i;
47
e8c8b713 48 i = string_list_lookup(query_params, name);
556cfa3b 49 if (!i)
78a395d3 50 i = string_list_insert(query_params, name);
556cfa3b
SP
51 else
52 free(i->util);
53 i->util = value;
54 }
55 }
56 return query_params;
57}
58
59static const char *get_parameter(const char *name)
60{
61 struct string_list_item *i;
e8c8b713 62 i = string_list_lookup(get_parameters(), name);
556cfa3b
SP
63 return i ? i->util : NULL;
64}
65
35487017 66__attribute__((format (printf, 2, 3)))
2f4038ab
SP
67static void format_write(int fd, const char *fmt, ...)
68{
69 static char buffer[1024];
70
71 va_list args;
72 unsigned n;
73
74 va_start(args, fmt);
75 n = vsnprintf(buffer, sizeof(buffer), fmt, args);
76 va_end(args);
77 if (n >= sizeof(buffer))
78 die("protocol error: impossibly long line");
79
cdf4fb8e 80 write_or_die(fd, buffer, n);
2f4038ab
SP
81}
82
b36045c1 83static void http_status(struct strbuf *hdr, unsigned code, const char *msg)
2f4038ab 84{
b36045c1 85 strbuf_addf(hdr, "Status: %u %s\r\n", code, msg);
2f4038ab
SP
86}
87
b36045c1 88static void hdr_str(struct strbuf *hdr, const char *name, const char *value)
2f4038ab 89{
b36045c1 90 strbuf_addf(hdr, "%s: %s\r\n", name, value);
2f4038ab
SP
91}
92
b36045c1 93static void hdr_int(struct strbuf *hdr, const char *name, uintmax_t value)
2f4038ab 94{
b36045c1 95 strbuf_addf(hdr, "%s: %" PRIuMAX "\r\n", name, value);
2f4038ab
SP
96}
97
dddbad72 98static void hdr_date(struct strbuf *hdr, const char *name, timestamp_t when)
2f4038ab 99{
a5481a6c 100 const char *value = show_date(when, 0, DATE_MODE(RFC2822));
b36045c1 101 hdr_str(hdr, name, value);
2f4038ab
SP
102}
103
b36045c1 104static void hdr_nocache(struct strbuf *hdr)
2f4038ab 105{
b36045c1
EW
106 hdr_str(hdr, "Expires", "Fri, 01 Jan 1980 00:00:00 GMT");
107 hdr_str(hdr, "Pragma", "no-cache");
108 hdr_str(hdr, "Cache-Control", "no-cache, max-age=0, must-revalidate");
2f4038ab
SP
109}
110
b36045c1 111static void hdr_cache_forever(struct strbuf *hdr)
2f4038ab 112{
dddbad72 113 timestamp_t now = time(NULL);
b36045c1
EW
114 hdr_date(hdr, "Date", now);
115 hdr_date(hdr, "Expires", now + 31536000);
116 hdr_str(hdr, "Cache-Control", "public, max-age=31536000");
2f4038ab
SP
117}
118
b36045c1 119static void end_headers(struct strbuf *hdr)
2f4038ab 120{
b36045c1
EW
121 strbuf_add(hdr, "\r\n", 2);
122 write_or_die(1, hdr->buf, hdr->len);
123 strbuf_release(hdr);
2f4038ab
SP
124}
125
b36045c1
EW
126__attribute__((format (printf, 2, 3)))
127static NORETURN void not_found(struct strbuf *hdr, const char *err, ...)
2f4038ab
SP
128{
129 va_list params;
130
b36045c1
EW
131 http_status(hdr, 404, "Not Found");
132 hdr_nocache(hdr);
133 end_headers(hdr);
2f4038ab
SP
134
135 va_start(params, err);
136 if (err && *err)
137 vfprintf(stderr, err, params);
138 va_end(params);
139 exit(0);
140}
141
b36045c1
EW
142__attribute__((format (printf, 2, 3)))
143static NORETURN void forbidden(struct strbuf *hdr, const char *err, ...)
556cfa3b
SP
144{
145 va_list params;
146
b36045c1
EW
147 http_status(hdr, 403, "Forbidden");
148 hdr_nocache(hdr);
149 end_headers(hdr);
556cfa3b
SP
150
151 va_start(params, err);
152 if (err && *err)
153 vfprintf(stderr, err, params);
154 va_end(params);
155 exit(0);
156}
157
b36045c1 158static void select_getanyfile(struct strbuf *hdr)
5abb013b
SP
159{
160 if (!getanyfile)
b36045c1 161 forbidden(hdr, "Unsupported service: getanyfile");
5abb013b
SP
162}
163
b36045c1
EW
164static void send_strbuf(struct strbuf *hdr,
165 const char *type, struct strbuf *buf)
2f4038ab 166{
b36045c1
EW
167 hdr_int(hdr, content_length, buf->len);
168 hdr_str(hdr, content_type, type);
169 end_headers(hdr);
cdf4fb8e 170 write_or_die(1, buf->buf, buf->len);
2f4038ab
SP
171}
172
b36045c1
EW
173static void send_local_file(struct strbuf *hdr, const char *the_type,
174 const char *name)
2f4038ab 175{
fcd12db6 176 char *p = git_pathdup("%s", name);
2f4038ab
SP
177 size_t buf_alloc = 8192;
178 char *buf = xmalloc(buf_alloc);
179 int fd;
180 struct stat sb;
2f4038ab
SP
181
182 fd = open(p, O_RDONLY);
183 if (fd < 0)
b36045c1 184 not_found(hdr, "Cannot open '%s': %s", p, strerror(errno));
2f4038ab
SP
185 if (fstat(fd, &sb) < 0)
186 die_errno("Cannot stat '%s'", p);
187
b36045c1
EW
188 hdr_int(hdr, content_length, sb.st_size);
189 hdr_str(hdr, content_type, the_type);
190 hdr_date(hdr, last_modified, sb.st_mtime);
191 end_headers(hdr);
2f4038ab 192
4a5328d6 193 for (;;) {
2f4038ab
SP
194 ssize_t n = xread(fd, buf, buf_alloc);
195 if (n < 0)
196 die_errno("Cannot read '%s'", p);
197 if (!n)
198 break;
cdf4fb8e 199 write_or_die(1, buf, n);
2f4038ab
SP
200 }
201 close(fd);
202 free(buf);
fcd12db6 203 free(p);
2f4038ab
SP
204}
205
b36045c1 206static void get_text_file(struct strbuf *hdr, char *name)
2f4038ab 207{
b36045c1
EW
208 select_getanyfile(hdr);
209 hdr_nocache(hdr);
210 send_local_file(hdr, "text/plain", name);
2f4038ab
SP
211}
212
b36045c1 213static void get_loose_object(struct strbuf *hdr, char *name)
2f4038ab 214{
b36045c1
EW
215 select_getanyfile(hdr);
216 hdr_cache_forever(hdr);
217 send_local_file(hdr, "application/x-git-loose-object", name);
2f4038ab
SP
218}
219
b36045c1 220static void get_pack_file(struct strbuf *hdr, char *name)
2f4038ab 221{
b36045c1
EW
222 select_getanyfile(hdr);
223 hdr_cache_forever(hdr);
224 send_local_file(hdr, "application/x-git-packed-objects", name);
2f4038ab
SP
225}
226
b36045c1 227static void get_idx_file(struct strbuf *hdr, char *name)
2f4038ab 228{
b36045c1
EW
229 select_getanyfile(hdr);
230 hdr_cache_forever(hdr);
231 send_local_file(hdr, "application/x-git-packed-objects-toc", name);
2f4038ab
SP
232}
233
6881f0cc 234static void http_config(void)
556cfa3b 235{
6881f0cc
TA
236 int i, value = 0;
237 struct strbuf var = STRBUF_INIT;
ae021d87 238
6881f0cc 239 git_config_get_bool("http.getanyfile", &getanyfile);
6bc0cb51 240 git_config_get_ulong("http.maxrequestbuffer", &max_request_buffer);
556cfa3b 241
6881f0cc
TA
242 for (i = 0; i < ARRAY_SIZE(rpc_service); i++) {
243 struct rpc_service *svc = &rpc_service[i];
244 strbuf_addf(&var, "http.%s", svc->config_name);
245 if (!git_config_get_bool(var.buf, &value))
246 svc->enabled = value;
247 strbuf_reset(&var);
5abb013b
SP
248 }
249
6881f0cc 250 strbuf_release(&var);
556cfa3b
SP
251}
252
b36045c1 253static struct rpc_service *select_service(struct strbuf *hdr, const char *name)
556cfa3b 254{
ae021d87 255 const char *svc_name;
556cfa3b
SP
256 struct rpc_service *svc = NULL;
257 int i;
258
ae021d87 259 if (!skip_prefix(name, "git-", &svc_name))
b36045c1 260 forbidden(hdr, "Unsupported service: '%s'", name);
556cfa3b
SP
261
262 for (i = 0; i < ARRAY_SIZE(rpc_service); i++) {
263 struct rpc_service *s = &rpc_service[i];
ae021d87 264 if (!strcmp(s->name, svc_name)) {
556cfa3b
SP
265 svc = s;
266 break;
267 }
268 }
269
270 if (!svc)
b36045c1 271 forbidden(hdr, "Unsupported service: '%s'", name);
556cfa3b 272
556cfa3b
SP
273 if (svc->enabled < 0) {
274 const char *user = getenv("REMOTE_USER");
275 svc->enabled = (user && *user) ? 1 : 0;
276 }
277 if (!svc->enabled)
b36045c1 278 forbidden(hdr, "Service not enabled: '%s'", svc->name);
556cfa3b
SP
279 return svc;
280}
281
6bc0cb51
JK
282/*
283 * This is basically strbuf_read(), except that if we
284 * hit max_request_buffer we die (we'd rather reject a
285 * maliciously large request than chew up infinite memory).
286 */
287static ssize_t read_request(int fd, unsigned char **out)
288{
289 size_t len = 0, alloc = 8192;
290 unsigned char *buf = xmalloc(alloc);
291
292 if (max_request_buffer < alloc)
293 max_request_buffer = alloc;
294
295 while (1) {
296 ssize_t cnt;
297
298 cnt = read_in_full(fd, buf + len, alloc - len);
299 if (cnt < 0) {
300 free(buf);
301 return -1;
302 }
303
304 /* partial read from read_in_full means we hit EOF */
305 len += cnt;
306 if (len < alloc) {
307 *out = buf;
308 return len;
309 }
310
311 /* otherwise, grow and try again (if we can) */
312 if (alloc == max_request_buffer)
313 die("request was larger than our maximum size (%lu);"
314 " try setting GIT_HTTP_MAX_REQUEST_BUFFER",
315 max_request_buffer);
316
317 alloc = alloc_nr(alloc);
318 if (alloc > max_request_buffer)
319 alloc = max_request_buffer;
320 REALLOC_ARRAY(buf, alloc);
321 }
322}
323
324static void inflate_request(const char *prog_name, int out, int buffer_input)
556cfa3b 325{
ef49a7a0 326 git_zstream stream;
6bc0cb51 327 unsigned char *full_request = NULL;
556cfa3b
SP
328 unsigned char in_buf[8192];
329 unsigned char out_buf[8192];
330 unsigned long cnt = 0;
556cfa3b
SP
331
332 memset(&stream, 0, sizeof(stream));
5e86c1fb 333 git_inflate_init_gzip_only(&stream);
556cfa3b
SP
334
335 while (1) {
6bc0cb51
JK
336 ssize_t n;
337
338 if (buffer_input) {
339 if (full_request)
340 n = 0; /* nothing left to read */
341 else
342 n = read_request(0, &full_request);
343 stream.next_in = full_request;
344 } else {
345 n = xread(0, in_buf, sizeof(in_buf));
346 stream.next_in = in_buf;
347 }
348
556cfa3b
SP
349 if (n <= 0)
350 die("request ended in the middle of the gzip stream");
556cfa3b
SP
351 stream.avail_in = n;
352
353 while (0 < stream.avail_in) {
354 int ret;
355
356 stream.next_out = out_buf;
357 stream.avail_out = sizeof(out_buf);
358
9e7e5ca3 359 ret = git_inflate(&stream, Z_NO_FLUSH);
556cfa3b
SP
360 if (ret != Z_OK && ret != Z_STREAM_END)
361 die("zlib error inflating request, result %d", ret);
362
363 n = stream.total_out - cnt;
06f46f23 364 if (write_in_full(out, out_buf, n) < 0)
556cfa3b
SP
365 die("%s aborted reading request", prog_name);
366 cnt += n;
367
368 if (ret == Z_STREAM_END)
369 goto done;
370 }
371 }
372
373done:
9e7e5ca3 374 git_inflate_end(&stream);
556cfa3b 375 close(out);
6bc0cb51
JK
376 free(full_request);
377}
378
379static void copy_request(const char *prog_name, int out)
380{
381 unsigned char *buf;
382 ssize_t n = read_request(0, &buf);
383 if (n < 0)
384 die_errno("error reading request body");
06f46f23 385 if (write_in_full(out, buf, n) < 0)
6bc0cb51
JK
386 die("%s aborted reading request", prog_name);
387 close(out);
388 free(buf);
556cfa3b
SP
389}
390
6bc0cb51 391static void run_service(const char **argv, int buffer_input)
556cfa3b
SP
392{
393 const char *encoding = getenv("HTTP_CONTENT_ENCODING");
394 const char *user = getenv("REMOTE_USER");
395 const char *host = getenv("REMOTE_ADDR");
556cfa3b 396 int gzipped_request = 0;
d3180279 397 struct child_process cld = CHILD_PROCESS_INIT;
556cfa3b
SP
398
399 if (encoding && !strcmp(encoding, "gzip"))
400 gzipped_request = 1;
401 else if (encoding && !strcmp(encoding, "x-gzip"))
402 gzipped_request = 1;
403
404 if (!user || !*user)
405 user = "anonymous";
406 if (!host || !*host)
407 host = "(none)";
408
e32a4581 409 if (!getenv("GIT_COMMITTER_NAME"))
a9154590 410 argv_array_pushf(&cld.env_array, "GIT_COMMITTER_NAME=%s", user);
e32a4581 411 if (!getenv("GIT_COMMITTER_EMAIL"))
a9154590
RS
412 argv_array_pushf(&cld.env_array,
413 "GIT_COMMITTER_EMAIL=%s@http.%s", user, host);
556cfa3b 414
556cfa3b 415 cld.argv = argv;
6bc0cb51 416 if (buffer_input || gzipped_request)
556cfa3b
SP
417 cld.in = -1;
418 cld.git_cmd = 1;
419 if (start_command(&cld))
420 exit(1);
421
422 close(1);
423 if (gzipped_request)
6bc0cb51
JK
424 inflate_request(argv[0], cld.in, buffer_input);
425 else if (buffer_input)
426 copy_request(argv[0], cld.in);
556cfa3b
SP
427 else
428 close(0);
429
430 if (finish_command(&cld))
431 exit(1);
556cfa3b
SP
432}
433
f72f5421
MH
434static int show_text_ref(const char *name, const struct object_id *oid,
435 int flag, void *cb_data)
2f4038ab 436{
6130f86d 437 const char *name_nons = strip_namespace(name);
2f4038ab 438 struct strbuf *buf = cb_data;
109cd76d 439 struct object *o = parse_object(the_repository, oid);
2f4038ab
SP
440 if (!o)
441 return 0;
442
f72f5421 443 strbuf_addf(buf, "%s\t%s\n", oid_to_hex(oid), name_nons);
2f4038ab 444 if (o->type == OBJ_TAG) {
a74093da 445 o = deref_tag(the_repository, o, name, 0);
2f4038ab
SP
446 if (!o)
447 return 0;
f2fd0760 448 strbuf_addf(buf, "%s\t%s^{}\n", oid_to_hex(&o->oid),
6130f86d 449 name_nons);
2f4038ab
SP
450 }
451 return 0;
452}
453
b36045c1 454static void get_info_refs(struct strbuf *hdr, char *arg)
2f4038ab 455{
556cfa3b 456 const char *service_name = get_parameter("service");
2f4038ab
SP
457 struct strbuf buf = STRBUF_INIT;
458
b36045c1 459 hdr_nocache(hdr);
556cfa3b
SP
460
461 if (service_name) {
462 const char *argv[] = {NULL /* service name */,
463 "--stateless-rpc", "--advertise-refs",
464 ".", NULL};
b36045c1 465 struct rpc_service *svc = select_service(hdr, service_name);
556cfa3b
SP
466
467 strbuf_addf(&buf, "application/x-git-%s-advertisement",
468 svc->name);
b36045c1
EW
469 hdr_str(hdr, content_type, buf.buf);
470 end_headers(hdr);
556cfa3b 471
237ffedd
BW
472
473 if (determine_protocol_version_server() != protocol_v2) {
474 packet_write_fmt(1, "# service=git-%s\n", svc->name);
475 packet_flush(1);
476 }
556cfa3b
SP
477
478 argv[0] = svc->name;
6bc0cb51 479 run_service(argv, 0);
556cfa3b
SP
480
481 } else {
b36045c1 482 select_getanyfile(hdr);
6130f86d 483 for_each_namespaced_ref(show_text_ref, &buf);
b36045c1 484 send_strbuf(hdr, "text/plain", &buf);
556cfa3b 485 }
2f4038ab
SP
486 strbuf_release(&buf);
487}
488
f72f5421
MH
489static int show_head_ref(const char *refname, const struct object_id *oid,
490 int flag, void *cb_data)
6130f86d
JK
491{
492 struct strbuf *buf = cb_data;
493
494 if (flag & REF_ISSYMREF) {
7695d118
RS
495 const char *target = resolve_ref_unsafe(refname,
496 RESOLVE_REF_READING,
744c040b 497 NULL, NULL);
6130f86d 498
7fd12bfb
MH
499 if (target)
500 strbuf_addf(buf, "ref: %s\n", strip_namespace(target));
6130f86d 501 } else {
f72f5421 502 strbuf_addf(buf, "%s\n", oid_to_hex(oid));
6130f86d
JK
503 }
504
505 return 0;
506}
507
b36045c1 508static void get_head(struct strbuf *hdr, char *arg)
6130f86d
JK
509{
510 struct strbuf buf = STRBUF_INIT;
511
b36045c1 512 select_getanyfile(hdr);
6130f86d 513 head_ref_namespaced(show_head_ref, &buf);
b36045c1 514 send_strbuf(hdr, "text/plain", &buf);
6130f86d
JK
515 strbuf_release(&buf);
516}
517
b36045c1 518static void get_info_packs(struct strbuf *hdr, char *arg)
2f4038ab
SP
519{
520 size_t objdirlen = strlen(get_object_directory());
521 struct strbuf buf = STRBUF_INIT;
522 struct packed_git *p;
523 size_t cnt = 0;
524
b36045c1 525 select_getanyfile(hdr);
a80d72db 526 for (p = get_packed_git(the_repository); p; p = p->next) {
2f4038ab
SP
527 if (p->pack_local)
528 cnt++;
529 }
530
531 strbuf_grow(&buf, cnt * 53 + 2);
a80d72db 532 for (p = get_packed_git(the_repository); p; p = p->next) {
2f4038ab
SP
533 if (p->pack_local)
534 strbuf_addf(&buf, "P %s\n", p->pack_name + objdirlen + 6);
535 }
536 strbuf_addch(&buf, '\n');
537
b36045c1
EW
538 hdr_nocache(hdr);
539 send_strbuf(hdr, "text/plain; charset=utf-8", &buf);
2f4038ab
SP
540 strbuf_release(&buf);
541}
542
b36045c1 543static void check_content_type(struct strbuf *hdr, const char *accepted_type)
556cfa3b
SP
544{
545 const char *actual_type = getenv("CONTENT_TYPE");
546
547 if (!actual_type)
548 actual_type = "";
549
550 if (strcmp(actual_type, accepted_type)) {
b36045c1
EW
551 http_status(hdr, 415, "Unsupported Media Type");
552 hdr_nocache(hdr);
553 end_headers(hdr);
556cfa3b
SP
554 format_write(1,
555 "Expected POST with Content-Type '%s',"
556 " but received '%s' instead.\n",
557 accepted_type, actual_type);
558 exit(0);
559 }
560}
561
b36045c1 562static void service_rpc(struct strbuf *hdr, char *service_name)
556cfa3b
SP
563{
564 const char *argv[] = {NULL, "--stateless-rpc", ".", NULL};
b36045c1 565 struct rpc_service *svc = select_service(hdr, service_name);
556cfa3b
SP
566 struct strbuf buf = STRBUF_INIT;
567
568 strbuf_reset(&buf);
569 strbuf_addf(&buf, "application/x-git-%s-request", svc->name);
b36045c1 570 check_content_type(hdr, buf.buf);
556cfa3b 571
b36045c1 572 hdr_nocache(hdr);
556cfa3b
SP
573
574 strbuf_reset(&buf);
575 strbuf_addf(&buf, "application/x-git-%s-result", svc->name);
b36045c1 576 hdr_str(hdr, content_type, buf.buf);
556cfa3b 577
b36045c1 578 end_headers(hdr);
556cfa3b
SP
579
580 argv[0] = svc->name;
6bc0cb51 581 run_service(argv, svc->buffer_input);
556cfa3b
SP
582 strbuf_release(&buf);
583}
584
7253a023 585static int dead;
2f4038ab
SP
586static NORETURN void die_webcgi(const char *err, va_list params)
587{
7253a023 588 if (dead <= 1) {
b36045c1
EW
589 struct strbuf hdr = STRBUF_INIT;
590
7253a023 591 vreportf("fatal: ", err, params);
2f4038ab 592
b36045c1
EW
593 http_status(&hdr, 500, "Internal Server Error");
594 hdr_nocache(&hdr);
595 end_headers(&hdr);
5856b5f5
SP
596 }
597 exit(0); /* we successfully reported a failure ;-) */
2f4038ab
SP
598}
599
7253a023
JK
600static int die_webcgi_recursing(void)
601{
602 return dead++ > 1;
603}
604
917adc03
ML
605static char* getdir(void)
606{
607 struct strbuf buf = STRBUF_INIT;
608 char *pathinfo = getenv("PATH_INFO");
609 char *root = getenv("GIT_PROJECT_ROOT");
610 char *path = getenv("PATH_TRANSLATED");
611
612 if (root && *root) {
613 if (!pathinfo || !*pathinfo)
614 die("GIT_PROJECT_ROOT is set but PATH_INFO is not");
34b6cb8b
SP
615 if (daemon_avoid_alias(pathinfo))
616 die("'%s': aliased", pathinfo);
cf688cc2 617 end_url_with_slash(&buf, root);
34b6cb8b
SP
618 if (pathinfo[0] == '/')
619 pathinfo++;
917adc03
ML
620 strbuf_addstr(&buf, pathinfo);
621 return strbuf_detach(&buf, NULL);
622 } else if (path && *path) {
623 return xstrdup(path);
624 } else
625 die("No GIT_PROJECT_ROOT or PATH_TRANSLATED from server");
626 return NULL;
627}
628
2f4038ab
SP
629static struct service_cmd {
630 const char *method;
631 const char *pattern;
b36045c1 632 void (*imp)(struct strbuf *, char *);
2f4038ab 633} services[] = {
6130f86d 634 {"GET", "/HEAD$", get_head},
2f4038ab
SP
635 {"GET", "/info/refs$", get_info_refs},
636 {"GET", "/objects/info/alternates$", get_text_file},
637 {"GET", "/objects/info/http-alternates$", get_text_file},
638 {"GET", "/objects/info/packs$", get_info_packs},
639 {"GET", "/objects/[0-9a-f]{2}/[0-9a-f]{38}$", get_loose_object},
640 {"GET", "/objects/pack/pack-[0-9a-f]{40}\\.pack$", get_pack_file},
556cfa3b
SP
641 {"GET", "/objects/pack/pack-[0-9a-f]{40}\\.idx$", get_idx_file},
642
643 {"POST", "/git-upload-pack$", service_rpc},
644 {"POST", "/git-receive-pack$", service_rpc}
2f4038ab
SP
645};
646
b36045c1
EW
647static int bad_request(struct strbuf *hdr, const struct service_cmd *c)
648{
649 const char *proto = getenv("SERVER_PROTOCOL");
650
651 if (proto && !strcmp(proto, "HTTP/1.1")) {
652 http_status(hdr, 405, "Method Not Allowed");
653 hdr_str(hdr, "Allow",
654 !strcmp(c->method, "GET") ? "GET, HEAD" : c->method);
655 } else
656 http_status(hdr, 400, "Bad Request");
657 hdr_nocache(hdr);
658 end_headers(hdr);
659 return 0;
660}
661
3f2e2297 662int cmd_main(int argc, const char **argv)
2f4038ab
SP
663{
664 char *method = getenv("REQUEST_METHOD");
917adc03 665 char *dir;
2f4038ab
SP
666 struct service_cmd *cmd = NULL;
667 char *cmd_arg = NULL;
668 int i;
b36045c1 669 struct strbuf hdr = STRBUF_INIT;
2f4038ab 670
2f4038ab 671 set_die_routine(die_webcgi);
7253a023 672 set_die_is_recursing_routine(die_webcgi_recursing);
2f4038ab
SP
673
674 if (!method)
675 die("No REQUEST_METHOD from server");
676 if (!strcmp(method, "HEAD"))
677 method = "GET";
917adc03 678 dir = getdir();
2f4038ab
SP
679
680 for (i = 0; i < ARRAY_SIZE(services); i++) {
681 struct service_cmd *c = &services[i];
682 regex_t re;
683 regmatch_t out[1];
684
685 if (regcomp(&re, c->pattern, REG_EXTENDED))
686 die("Bogus regex in service table: %s", c->pattern);
687 if (!regexec(&re, dir, 1, out, 0)) {
48aec1b1 688 size_t n;
2f4038ab 689
b36045c1
EW
690 if (strcmp(method, c->method))
691 return bad_request(&hdr, c);
2f4038ab
SP
692
693 cmd = c;
48aec1b1 694 n = out[0].rm_eo - out[0].rm_so;
5c0b13f8 695 cmd_arg = xmemdupz(dir + out[0].rm_so + 1, n - 1);
2f4038ab
SP
696 dir[out[0].rm_so] = 0;
697 break;
698 }
699 regfree(&re);
700 }
701
702 if (!cmd)
b36045c1 703 not_found(&hdr, "Request not supported: '%s'", dir);
2f4038ab
SP
704
705 setup_path();
706 if (!enter_repo(dir, 0))
b36045c1 707 not_found(&hdr, "Not a git repository: '%s'", dir);
8b2bd7cd
TC
708 if (!getenv("GIT_HTTP_EXPORT_ALL") &&
709 access("git-daemon-export-ok", F_OK) )
b36045c1 710 not_found(&hdr, "Repository not exported: '%s'", dir);
2f4038ab 711
6881f0cc 712 http_config();
6bc0cb51
JK
713 max_request_buffer = git_env_ulong("GIT_HTTP_MAX_REQUEST_BUFFER",
714 max_request_buffer);
715
b36045c1 716 cmd->imp(&hdr, cmd_arg);
2f4038ab
SP
717 return 0;
718}