Sync with 'master'
[git.git] / http-backend.c
blob5b65287ac90f24e70af6b1cfed08843aa6bbe774
1 #include "git-compat-util.h"
2 #include "config.h"
3 #include "environment.h"
4 #include "git-zlib.h"
5 #include "hex.h"
6 #include "path.h"
7 #include "repository.h"
8 #include "refs.h"
9 #include "pkt-line.h"
10 #include "object.h"
11 #include "tag.h"
12 #include "exec-cmd.h"
13 #include "run-command.h"
14 #include "string-list.h"
15 #include "url.h"
16 #include "strvec.h"
17 #include "packfile.h"
18 #include "object-store-ll.h"
19 #include "protocol.h"
20 #include "date.h"
21 #include "write-or-die.h"
23 static const char content_type[] = "Content-Type";
24 static const char content_length[] = "Content-Length";
25 static const char last_modified[] = "Last-Modified";
26 static int getanyfile = 1;
27 static unsigned long max_request_buffer = 10 * 1024 * 1024;
29 static struct string_list *query_params;
31 struct rpc_service {
32 const char *name;
33 const char *config_name;
34 unsigned buffer_input : 1;
35 signed enabled : 2;
38 static struct rpc_service rpc_service[] = {
39 { "upload-pack", "uploadpack", 1, 1 },
40 { "receive-pack", "receivepack", 0, -1 },
41 { "upload-archive", "uploadarchive", 0, -1 },
44 static struct string_list *get_parameters(void)
46 if (!query_params) {
47 const char *query = getenv("QUERY_STRING");
49 CALLOC_ARRAY(query_params, 1);
50 while (query && *query) {
51 char *name = url_decode_parameter_name(&query);
52 char *value = url_decode_parameter_value(&query);
53 struct string_list_item *i;
55 i = string_list_lookup(query_params, name);
56 if (!i)
57 i = string_list_insert(query_params, name);
58 else
59 free(i->util);
60 i->util = value;
63 return query_params;
66 static const char *get_parameter(const char *name)
68 struct string_list_item *i;
69 i = string_list_lookup(get_parameters(), name);
70 return i ? i->util : NULL;
73 __attribute__((format (printf, 2, 3)))
74 static void format_write(int fd, const char *fmt, ...)
76 static char buffer[1024];
78 va_list args;
79 unsigned n;
81 va_start(args, fmt);
82 n = vsnprintf(buffer, sizeof(buffer), fmt, args);
83 va_end(args);
84 if (n >= sizeof(buffer))
85 die("protocol error: impossibly long line");
87 write_or_die(fd, buffer, n);
90 static void http_status(struct strbuf *hdr, unsigned code, const char *msg)
92 strbuf_addf(hdr, "Status: %u %s\r\n", code, msg);
95 static void hdr_str(struct strbuf *hdr, const char *name, const char *value)
97 strbuf_addf(hdr, "%s: %s\r\n", name, value);
100 static void hdr_int(struct strbuf *hdr, const char *name, uintmax_t value)
102 strbuf_addf(hdr, "%s: %" PRIuMAX "\r\n", name, value);
105 static void hdr_date(struct strbuf *hdr, const char *name, timestamp_t when)
107 const char *value = show_date(when, 0, DATE_MODE(RFC2822));
108 hdr_str(hdr, name, value);
111 static void hdr_nocache(struct strbuf *hdr)
113 hdr_str(hdr, "Expires", "Fri, 01 Jan 1980 00:00:00 GMT");
114 hdr_str(hdr, "Pragma", "no-cache");
115 hdr_str(hdr, "Cache-Control", "no-cache, max-age=0, must-revalidate");
118 static void hdr_cache_forever(struct strbuf *hdr)
120 timestamp_t now = time(NULL);
121 hdr_date(hdr, "Date", now);
122 hdr_date(hdr, "Expires", now + 31536000);
123 hdr_str(hdr, "Cache-Control", "public, max-age=31536000");
126 static void end_headers(struct strbuf *hdr)
128 strbuf_add(hdr, "\r\n", 2);
129 write_or_die(1, hdr->buf, hdr->len);
130 strbuf_release(hdr);
133 __attribute__((format (printf, 2, 3)))
134 static NORETURN void not_found(struct strbuf *hdr, const char *err, ...)
136 va_list params;
138 http_status(hdr, 404, "Not Found");
139 hdr_nocache(hdr);
140 end_headers(hdr);
142 va_start(params, err);
143 if (err && *err)
144 vfprintf(stderr, err, params);
145 va_end(params);
146 exit(0);
149 __attribute__((format (printf, 2, 3)))
150 static NORETURN void forbidden(struct strbuf *hdr, const char *err, ...)
152 va_list params;
154 http_status(hdr, 403, "Forbidden");
155 hdr_nocache(hdr);
156 end_headers(hdr);
158 va_start(params, err);
159 if (err && *err)
160 vfprintf(stderr, err, params);
161 va_end(params);
162 exit(0);
165 static void select_getanyfile(struct strbuf *hdr)
167 if (!getanyfile)
168 forbidden(hdr, "Unsupported service: getanyfile");
171 static void send_strbuf(struct strbuf *hdr,
172 const char *type, struct strbuf *buf)
174 hdr_int(hdr, content_length, buf->len);
175 hdr_str(hdr, content_type, type);
176 end_headers(hdr);
177 write_or_die(1, buf->buf, buf->len);
180 static void send_local_file(struct strbuf *hdr, const char *the_type,
181 const char *name)
183 char *p = git_pathdup("%s", name);
184 size_t buf_alloc = 8192;
185 char *buf = xmalloc(buf_alloc);
186 int fd;
187 struct stat sb;
189 fd = open(p, O_RDONLY);
190 if (fd < 0)
191 not_found(hdr, "Cannot open '%s': %s", p, strerror(errno));
192 if (fstat(fd, &sb) < 0)
193 die_errno("Cannot stat '%s'", p);
195 hdr_int(hdr, content_length, sb.st_size);
196 hdr_str(hdr, content_type, the_type);
197 hdr_date(hdr, last_modified, sb.st_mtime);
198 end_headers(hdr);
200 for (;;) {
201 ssize_t n = xread(fd, buf, buf_alloc);
202 if (n < 0)
203 die_errno("Cannot read '%s'", p);
204 if (!n)
205 break;
206 write_or_die(1, buf, n);
208 close(fd);
209 free(buf);
210 free(p);
213 static void get_text_file(struct strbuf *hdr, char *name)
215 select_getanyfile(hdr);
216 hdr_nocache(hdr);
217 send_local_file(hdr, "text/plain", name);
220 static void get_loose_object(struct strbuf *hdr, char *name)
222 select_getanyfile(hdr);
223 hdr_cache_forever(hdr);
224 send_local_file(hdr, "application/x-git-loose-object", name);
227 static void get_pack_file(struct strbuf *hdr, char *name)
229 select_getanyfile(hdr);
230 hdr_cache_forever(hdr);
231 send_local_file(hdr, "application/x-git-packed-objects", name);
234 static void get_idx_file(struct strbuf *hdr, char *name)
236 select_getanyfile(hdr);
237 hdr_cache_forever(hdr);
238 send_local_file(hdr, "application/x-git-packed-objects-toc", name);
241 static void http_config(void)
243 int i, value = 0;
244 struct strbuf var = STRBUF_INIT;
246 git_config_get_bool("http.getanyfile", &getanyfile);
247 git_config_get_ulong("http.maxrequestbuffer", &max_request_buffer);
249 for (i = 0; i < ARRAY_SIZE(rpc_service); i++) {
250 struct rpc_service *svc = &rpc_service[i];
251 strbuf_addf(&var, "http.%s", svc->config_name);
252 if (!git_config_get_bool(var.buf, &value))
253 svc->enabled = value;
254 strbuf_reset(&var);
257 strbuf_release(&var);
260 static struct rpc_service *select_service(struct strbuf *hdr, const char *name)
262 const char *svc_name;
263 struct rpc_service *svc = NULL;
264 int i;
266 if (!skip_prefix(name, "git-", &svc_name))
267 forbidden(hdr, "Unsupported service: '%s'", name);
269 for (i = 0; i < ARRAY_SIZE(rpc_service); i++) {
270 struct rpc_service *s = &rpc_service[i];
271 if (!strcmp(s->name, svc_name)) {
272 svc = s;
273 break;
277 if (!svc)
278 forbidden(hdr, "Unsupported service: '%s'", name);
280 if (svc->enabled < 0) {
281 const char *user = getenv("REMOTE_USER");
282 svc->enabled = (user && *user) ? 1 : 0;
284 if (!svc->enabled)
285 forbidden(hdr, "Service not enabled: '%s'", svc->name);
286 return svc;
289 static void write_to_child(int out, const unsigned char *buf, ssize_t len, const char *prog_name)
291 if (write_in_full(out, buf, len) < 0)
292 die("unable to write to '%s'", prog_name);
296 * This is basically strbuf_read(), except that if we
297 * hit max_request_buffer we die (we'd rather reject a
298 * maliciously large request than chew up infinite memory).
300 static ssize_t read_request_eof(int fd, unsigned char **out)
302 size_t len = 0, alloc = 8192;
303 unsigned char *buf = xmalloc(alloc);
305 if (max_request_buffer < alloc)
306 max_request_buffer = alloc;
308 while (1) {
309 ssize_t cnt;
311 cnt = read_in_full(fd, buf + len, alloc - len);
312 if (cnt < 0) {
313 free(buf);
314 return -1;
317 /* partial read from read_in_full means we hit EOF */
318 len += cnt;
319 if (len < alloc) {
320 *out = buf;
321 return len;
324 /* otherwise, grow and try again (if we can) */
325 if (alloc == max_request_buffer)
326 die("request was larger than our maximum size (%lu);"
327 " try setting GIT_HTTP_MAX_REQUEST_BUFFER",
328 max_request_buffer);
330 alloc = alloc_nr(alloc);
331 if (alloc > max_request_buffer)
332 alloc = max_request_buffer;
333 REALLOC_ARRAY(buf, alloc);
337 static ssize_t read_request_fixed_len(int fd, ssize_t req_len, unsigned char **out)
339 unsigned char *buf = NULL;
340 ssize_t cnt = 0;
342 if (max_request_buffer < req_len) {
343 die("request was larger than our maximum size (%lu): "
344 "%" PRIuMAX "; try setting GIT_HTTP_MAX_REQUEST_BUFFER",
345 max_request_buffer, (uintmax_t)req_len);
348 buf = xmalloc(req_len);
349 cnt = read_in_full(fd, buf, req_len);
350 if (cnt < 0) {
351 free(buf);
352 return -1;
354 *out = buf;
355 return cnt;
358 static ssize_t get_content_length(void)
360 ssize_t val = -1;
361 const char *str = getenv("CONTENT_LENGTH");
363 if (str && *str && !git_parse_ssize_t(str, &val))
364 die("failed to parse CONTENT_LENGTH: %s", str);
365 return val;
368 static ssize_t read_request(int fd, unsigned char **out, ssize_t req_len)
370 if (req_len < 0)
371 return read_request_eof(fd, out);
372 else
373 return read_request_fixed_len(fd, req_len, out);
376 static void inflate_request(const char *prog_name, int out, int buffer_input, ssize_t req_len)
378 git_zstream stream;
379 unsigned char *full_request = NULL;
380 unsigned char in_buf[8192];
381 unsigned char out_buf[8192];
382 unsigned long cnt = 0;
383 int req_len_defined = req_len >= 0;
384 size_t req_remaining_len = req_len;
386 memset(&stream, 0, sizeof(stream));
387 git_inflate_init_gzip_only(&stream);
389 while (1) {
390 ssize_t n;
392 if (buffer_input) {
393 if (full_request)
394 n = 0; /* nothing left to read */
395 else
396 n = read_request(0, &full_request, req_len);
397 stream.next_in = full_request;
398 } else {
399 ssize_t buffer_len;
400 if (req_len_defined && req_remaining_len <= sizeof(in_buf))
401 buffer_len = req_remaining_len;
402 else
403 buffer_len = sizeof(in_buf);
404 n = xread(0, in_buf, buffer_len);
405 stream.next_in = in_buf;
406 if (req_len_defined && n > 0)
407 req_remaining_len -= n;
410 if (n <= 0)
411 die("request ended in the middle of the gzip stream");
412 stream.avail_in = n;
414 while (0 < stream.avail_in) {
415 int ret;
417 stream.next_out = out_buf;
418 stream.avail_out = sizeof(out_buf);
420 ret = git_inflate(&stream, Z_NO_FLUSH);
421 if (ret != Z_OK && ret != Z_STREAM_END)
422 die("zlib error inflating request, result %d", ret);
424 n = stream.total_out - cnt;
425 write_to_child(out, out_buf, stream.total_out - cnt, prog_name);
426 cnt = stream.total_out;
428 if (ret == Z_STREAM_END)
429 goto done;
433 done:
434 git_inflate_end(&stream);
435 close(out);
436 free(full_request);
439 static void copy_request(const char *prog_name, int out, ssize_t req_len)
441 unsigned char *buf;
442 ssize_t n = read_request(0, &buf, req_len);
443 if (n < 0)
444 die_errno("error reading request body");
445 write_to_child(out, buf, n, prog_name);
446 close(out);
447 free(buf);
450 static void pipe_fixed_length(const char *prog_name, int out, size_t req_len)
452 unsigned char buf[8192];
453 size_t remaining_len = req_len;
455 while (remaining_len > 0) {
456 size_t chunk_length = remaining_len > sizeof(buf) ? sizeof(buf) : remaining_len;
457 ssize_t n = xread(0, buf, chunk_length);
458 if (n < 0)
459 die_errno("Reading request failed");
460 write_to_child(out, buf, n, prog_name);
461 remaining_len -= n;
464 close(out);
467 static void run_service(const char **argv, int buffer_input)
469 const char *encoding = getenv("HTTP_CONTENT_ENCODING");
470 const char *user = getenv("REMOTE_USER");
471 const char *host = getenv("REMOTE_ADDR");
472 int gzipped_request = 0;
473 struct child_process cld = CHILD_PROCESS_INIT;
474 ssize_t req_len = get_content_length();
476 if (encoding && (!strcmp(encoding, "gzip") || !strcmp(encoding, "x-gzip")))
477 gzipped_request = 1;
479 if (!user || !*user)
480 user = "anonymous";
481 if (!host || !*host)
482 host = "(none)";
484 if (!getenv("GIT_COMMITTER_NAME"))
485 strvec_pushf(&cld.env, "GIT_COMMITTER_NAME=%s", user);
486 if (!getenv("GIT_COMMITTER_EMAIL"))
487 strvec_pushf(&cld.env,
488 "GIT_COMMITTER_EMAIL=%s@http.%s", user, host);
490 strvec_pushv(&cld.args, argv);
491 if (buffer_input || gzipped_request || req_len >= 0)
492 cld.in = -1;
493 cld.git_cmd = 1;
494 cld.clean_on_exit = 1;
495 cld.wait_after_clean = 1;
496 if (start_command(&cld))
497 exit(1);
499 close(1);
500 if (gzipped_request)
501 inflate_request(argv[0], cld.in, buffer_input, req_len);
502 else if (buffer_input)
503 copy_request(argv[0], cld.in, req_len);
504 else if (req_len >= 0)
505 pipe_fixed_length(argv[0], cld.in, req_len);
506 else
507 close(0);
509 if (finish_command(&cld))
510 exit(1);
513 static int show_text_ref(const char *name, const struct object_id *oid,
514 int flag UNUSED, void *cb_data)
516 const char *name_nons = strip_namespace(name);
517 struct strbuf *buf = cb_data;
518 struct object *o = parse_object(the_repository, oid);
519 if (!o)
520 return 0;
522 strbuf_addf(buf, "%s\t%s\n", oid_to_hex(oid), name_nons);
523 if (o->type == OBJ_TAG) {
524 o = deref_tag(the_repository, o, name, 0);
525 if (!o)
526 return 0;
527 strbuf_addf(buf, "%s\t%s^{}\n", oid_to_hex(&o->oid),
528 name_nons);
530 return 0;
533 static void get_info_refs(struct strbuf *hdr, char *arg UNUSED)
535 const char *service_name = get_parameter("service");
536 struct strbuf buf = STRBUF_INIT;
538 hdr_nocache(hdr);
540 if (service_name) {
541 const char *argv[] = {NULL /* service name */,
542 "--http-backend-info-refs",
543 ".", NULL};
544 struct rpc_service *svc = select_service(hdr, service_name);
546 strbuf_addf(&buf, "application/x-git-%s-advertisement",
547 svc->name);
548 hdr_str(hdr, content_type, buf.buf);
549 end_headers(hdr);
552 if (determine_protocol_version_server() != protocol_v2) {
553 packet_write_fmt(1, "# service=git-%s\n", svc->name);
554 packet_flush(1);
557 argv[0] = svc->name;
558 run_service(argv, 0);
560 } else {
561 select_getanyfile(hdr);
562 refs_for_each_namespaced_ref(get_main_ref_store(the_repository),
563 NULL, show_text_ref, &buf);
564 send_strbuf(hdr, "text/plain", &buf);
566 strbuf_release(&buf);
569 static int show_head_ref(const char *refname, const struct object_id *oid,
570 int flag, void *cb_data)
572 struct strbuf *buf = cb_data;
574 if (flag & REF_ISSYMREF) {
575 const char *target = refs_resolve_ref_unsafe(get_main_ref_store(the_repository),
576 refname,
577 RESOLVE_REF_READING,
578 NULL, NULL);
580 if (target)
581 strbuf_addf(buf, "ref: %s\n", strip_namespace(target));
582 } else {
583 strbuf_addf(buf, "%s\n", oid_to_hex(oid));
586 return 0;
589 static void get_head(struct strbuf *hdr, char *arg UNUSED)
591 struct strbuf buf = STRBUF_INIT;
593 select_getanyfile(hdr);
594 refs_head_ref_namespaced(get_main_ref_store(the_repository),
595 show_head_ref, &buf);
596 send_strbuf(hdr, "text/plain", &buf);
597 strbuf_release(&buf);
600 static void get_info_packs(struct strbuf *hdr, char *arg UNUSED)
602 size_t objdirlen = strlen(get_object_directory());
603 struct strbuf buf = STRBUF_INIT;
604 struct packed_git *p;
605 size_t cnt = 0;
607 select_getanyfile(hdr);
608 for (p = get_all_packs(the_repository); p; p = p->next) {
609 if (p->pack_local)
610 cnt++;
613 strbuf_grow(&buf, cnt * 53 + 2);
614 for (p = get_all_packs(the_repository); p; p = p->next) {
615 if (p->pack_local)
616 strbuf_addf(&buf, "P %s\n", p->pack_name + objdirlen + 6);
618 strbuf_addch(&buf, '\n');
620 hdr_nocache(hdr);
621 send_strbuf(hdr, "text/plain; charset=utf-8", &buf);
622 strbuf_release(&buf);
625 static void check_content_type(struct strbuf *hdr, const char *accepted_type)
627 const char *actual_type = getenv("CONTENT_TYPE");
629 if (!actual_type)
630 actual_type = "";
632 if (strcmp(actual_type, accepted_type)) {
633 http_status(hdr, 415, "Unsupported Media Type");
634 hdr_nocache(hdr);
635 end_headers(hdr);
636 format_write(1,
637 "Expected POST with Content-Type '%s',"
638 " but received '%s' instead.\n",
639 accepted_type, actual_type);
640 exit(0);
644 static void service_rpc(struct strbuf *hdr, char *service_name)
646 struct strvec argv = STRVEC_INIT;
647 struct rpc_service *svc = select_service(hdr, service_name);
648 struct strbuf buf = STRBUF_INIT;
650 strvec_push(&argv, svc->name);
651 if (strcmp(service_name, "git-upload-archive"))
652 strvec_push(&argv, "--stateless-rpc");
653 strvec_push(&argv, ".");
655 strbuf_reset(&buf);
656 strbuf_addf(&buf, "application/x-git-%s-request", svc->name);
657 check_content_type(hdr, buf.buf);
659 hdr_nocache(hdr);
661 strbuf_reset(&buf);
662 strbuf_addf(&buf, "application/x-git-%s-result", svc->name);
663 hdr_str(hdr, content_type, buf.buf);
665 end_headers(hdr);
667 run_service(argv.v, svc->buffer_input);
668 strbuf_release(&buf);
669 strvec_clear(&argv);
672 static int dead;
673 static NORETURN void die_webcgi(const char *err, va_list params)
675 if (dead <= 1) {
676 struct strbuf hdr = STRBUF_INIT;
677 report_fn die_message_fn = get_die_message_routine();
679 die_message_fn(err, params);
681 http_status(&hdr, 500, "Internal Server Error");
682 hdr_nocache(&hdr);
683 end_headers(&hdr);
685 exit(0); /* we successfully reported a failure ;-) */
688 static int die_webcgi_recursing(void)
690 return dead++ > 1;
693 static char* getdir(void)
695 struct strbuf buf = STRBUF_INIT;
696 char *pathinfo = getenv("PATH_INFO");
697 char *root = getenv("GIT_PROJECT_ROOT");
698 char *path = getenv("PATH_TRANSLATED");
700 if (root && *root) {
701 if (!pathinfo || !*pathinfo)
702 die("GIT_PROJECT_ROOT is set but PATH_INFO is not");
703 if (daemon_avoid_alias(pathinfo))
704 die("'%s': aliased", pathinfo);
705 end_url_with_slash(&buf, root);
706 if (pathinfo[0] == '/')
707 pathinfo++;
708 strbuf_addstr(&buf, pathinfo);
709 return strbuf_detach(&buf, NULL);
710 } else if (path && *path) {
711 return xstrdup(path);
712 } else
713 die("No GIT_PROJECT_ROOT or PATH_TRANSLATED from server");
714 return NULL;
717 static struct service_cmd {
718 const char *method;
719 const char *pattern;
720 void (*imp)(struct strbuf *, char *);
721 } services[] = {
722 {"GET", "/HEAD$", get_head},
723 {"GET", "/info/refs$", get_info_refs},
724 {"GET", "/objects/info/alternates$", get_text_file},
725 {"GET", "/objects/info/http-alternates$", get_text_file},
726 {"GET", "/objects/info/packs$", get_info_packs},
727 {"GET", "/objects/[0-9a-f]{2}/[0-9a-f]{38}$", get_loose_object},
728 {"GET", "/objects/[0-9a-f]{2}/[0-9a-f]{62}$", get_loose_object},
729 {"GET", "/objects/pack/pack-[0-9a-f]{40}\\.pack$", get_pack_file},
730 {"GET", "/objects/pack/pack-[0-9a-f]{64}\\.pack$", get_pack_file},
731 {"GET", "/objects/pack/pack-[0-9a-f]{40}\\.idx$", get_idx_file},
732 {"GET", "/objects/pack/pack-[0-9a-f]{64}\\.idx$", get_idx_file},
734 {"POST", "/git-upload-pack$", service_rpc},
735 {"POST", "/git-upload-archive$", service_rpc},
736 {"POST", "/git-receive-pack$", service_rpc}
739 static int bad_request(struct strbuf *hdr, const struct service_cmd *c)
741 const char *proto = getenv("SERVER_PROTOCOL");
743 if (proto && !strcmp(proto, "HTTP/1.1")) {
744 http_status(hdr, 405, "Method Not Allowed");
745 hdr_str(hdr, "Allow",
746 !strcmp(c->method, "GET") ? "GET, HEAD" : c->method);
747 } else
748 http_status(hdr, 400, "Bad Request");
749 hdr_nocache(hdr);
750 end_headers(hdr);
751 return 0;
754 int cmd_main(int argc UNUSED, const char **argv UNUSED)
756 char *method = getenv("REQUEST_METHOD");
757 const char *proto_header;
758 char *dir;
759 struct service_cmd *cmd = NULL;
760 char *cmd_arg = NULL;
761 int i;
762 struct strbuf hdr = STRBUF_INIT;
764 set_die_routine(die_webcgi);
765 set_die_is_recursing_routine(die_webcgi_recursing);
767 if (!method)
768 die("No REQUEST_METHOD from server");
769 if (!strcmp(method, "HEAD"))
770 method = "GET";
771 dir = getdir();
773 for (i = 0; i < ARRAY_SIZE(services); i++) {
774 struct service_cmd *c = &services[i];
775 regex_t re;
776 regmatch_t out[1];
777 int ret;
779 if (regcomp(&re, c->pattern, REG_EXTENDED))
780 die("Bogus regex in service table: %s", c->pattern);
781 ret = regexec(&re, dir, 1, out, 0);
782 regfree(&re);
784 if (!ret) {
785 size_t n;
787 if (strcmp(method, c->method))
788 return bad_request(&hdr, c);
790 cmd = c;
791 n = out[0].rm_eo - out[0].rm_so;
792 cmd_arg = xmemdupz(dir + out[0].rm_so + 1, n - 1);
793 dir[out[0].rm_so] = 0;
794 break;
798 if (!cmd)
799 not_found(&hdr, "Request not supported: '%s'", dir);
801 setup_path();
802 if (!enter_repo(dir, 0))
803 not_found(&hdr, "Not a git repository: '%s'", dir);
804 if (!getenv("GIT_HTTP_EXPORT_ALL") &&
805 access("git-daemon-export-ok", F_OK) )
806 not_found(&hdr, "Repository not exported: '%s'", dir);
807 free(dir);
809 http_config();
810 max_request_buffer = git_env_ulong("GIT_HTTP_MAX_REQUEST_BUFFER",
811 max_request_buffer);
812 proto_header = getenv("HTTP_GIT_PROTOCOL");
813 if (proto_header)
814 setenv(GIT_PROTOCOL_ENVIRONMENT, proto_header, 0);
816 cmd->imp(&hdr, cmd_arg);
817 free(cmd_arg);
818 return 0;