8 #define HOST_NAME_MAX 256
15 static int log_syslog;
19 static const char daemon_usage[] =
20 "git daemon [--verbose] [--syslog] [--export-all]\n"
21 " [--timeout=n] [--init-timeout=n] [--max-connections=n]\n"
22 " [--strict-paths] [--base-path=path] [--base-path-relaxed]\n"
23 " [--user-path | --user-path=path]\n"
24 " [--interpolated-path=path]\n"
25 " [--reuseaddr] [--detach] [--pid-file=file]\n"
26 " [--[enable|disable|allow-override|forbid-override]=service]\n"
27 " [--inetd | [--listen=host_or_ipaddr] [--port=n]\n"
28 " [--user=user [--group=group]]\n"
31 /* List of acceptable pathname prefixes */
32 static char **ok_paths;
33 static int strict_paths;
35 /* If this is set, git-daemon-export-ok is not required */
36 static int export_all_trees;
38 /* Take all paths relative to this one if non-NULL */
39 static char *base_path;
40 static char *interpolated_path;
41 static int base_path_relaxed;
43 /* Flag indicating client sent extra args. */
44 static int saw_extended_args;
46 /* If defined, ~user notation is allowed and the string is inserted
47 * after ~user/. E.g. a request to git://host/~alice/frotz would
48 * go to /home/alice/pub_git/frotz with --user-path=pub_git.
50 static const char *user_path;
52 /* Timeout, and initial timeout */
53 static unsigned int timeout;
54 static unsigned int init_timeout;
56 static char *hostname;
57 static char *canon_hostname;
58 static char *ip_address;
59 static char *tcp_port;
61 static void logreport(int priority, const char *err, va_list params)
65 vsnprintf(buf, sizeof(buf), err, params);
66 syslog(priority, "%s", buf);
69 * Since stderr is set to linebuffered mode, the
70 * logging of different processes will not overlap
72 fprintf(stderr, "[%"PRIuMAX"] ", (uintmax_t)getpid());
73 vfprintf(stderr, err, params);
78 static void logerror(const char *err, ...)
81 va_start(params, err);
82 logreport(LOG_ERR, err, params);
86 static void loginfo(const char *err, ...)
91 va_start(params, err);
92 logreport(LOG_INFO, err, params);
96 static void NORETURN daemon_die(const char *err, va_list params)
98 logreport(LOG_ERR, err, params);
102 static int avoid_alias(char *p)
107 * This resurrects the belts and suspenders paranoia check by HPA
108 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
109 * does not do getcwd() based path canonicalizations.
111 * sl becomes true immediately after seeing '/' and continues to
112 * be true as long as dots continue after that without intervening
115 if (!p || (*p != '/' && *p != '~'))
125 else if (ch == '/') {
127 /* reject //, /./ and /../ */
132 if (0 < ndot && ndot < 3)
133 /* reject /.$ and /..$ */
142 else if (ch == '/') {
149 static char *path_ok(char *directory)
151 static char rpath[PATH_MAX];
152 static char interp_path[PATH_MAX];
158 if (avoid_alias(dir)) {
159 logerror("'%s': aliased", dir);
165 logerror("'%s': User-path not allowed", dir);
169 /* Got either "~alice" or "~alice/foo";
170 * rewrite them to "~alice/%s" or
173 int namlen, restlen = strlen(dir);
174 char *slash = strchr(dir, '/');
176 slash = dir + restlen;
177 namlen = slash - dir;
179 loginfo("userpath <%s>, request <%s>, namlen %d, restlen %d, slash <%s>", user_path, dir, namlen, restlen, slash);
180 snprintf(rpath, PATH_MAX, "%.*s/%s%.*s",
181 namlen, dir, user_path, restlen, slash);
185 else if (interpolated_path && saw_extended_args) {
186 struct strbuf expanded_path = STRBUF_INIT;
187 struct strbuf_expand_dict_entry dict[] = {
189 { "CH", canon_hostname },
190 { "IP", ip_address },
198 /* Allow only absolute */
199 logerror("'%s': Non-absolute path denied (interpolated-path active)", dir);
203 strbuf_expand(&expanded_path, interpolated_path,
204 strbuf_expand_dict_cb, &dict);
205 strlcpy(interp_path, expanded_path.buf, PATH_MAX);
206 strbuf_release(&expanded_path);
207 loginfo("Interpolated dir '%s'", interp_path);
211 else if (base_path) {
213 /* Allow only absolute */
214 logerror("'%s': Non-absolute path denied (base-path active)", dir);
217 snprintf(rpath, PATH_MAX, "%s%s", base_path, dir);
221 path = enter_repo(dir, strict_paths);
222 if (!path && base_path && base_path_relaxed) {
224 * if we fail and base_path_relaxed is enabled, try without
225 * prefixing the base path
228 path = enter_repo(dir, strict_paths);
232 logerror("'%s' does not appear to be a git repository", dir);
236 if ( ok_paths && *ok_paths ) {
238 int pathlen = strlen(path);
240 /* The validation is done on the paths after enter_repo
241 * appends optional {.git,.git/.git} and friends, but
242 * it does not use getcwd(). So if your /pub is
243 * a symlink to /mnt/pub, you can whitelist /pub and
244 * do not have to say /mnt/pub.
247 for ( pp = ok_paths ; *pp ; pp++ ) {
248 int len = strlen(*pp);
249 if (len <= pathlen &&
250 !memcmp(*pp, path, len) &&
251 (path[len] == '\0' ||
252 (!strict_paths && path[len] == '/')))
257 /* be backwards compatible */
262 logerror("'%s': not in whitelist", path);
263 return NULL; /* Fallthrough. Deny by default */
266 typedef int (*daemon_service_fn)(void);
267 struct daemon_service {
269 const char *config_name;
270 daemon_service_fn fn;
275 static struct daemon_service *service_looking_at;
276 static int service_enabled;
278 static int git_daemon_config(const char *var, const char *value, void *cb)
280 if (!prefixcmp(var, "daemon.") &&
281 !strcmp(var + 7, service_looking_at->config_name)) {
282 service_enabled = git_config_bool(var, value);
286 /* we are not interested in parsing any other configuration here */
290 static int run_service(char *dir, struct daemon_service *service)
293 int enabled = service->enabled;
295 loginfo("Request %s for '%s'", service->name, dir);
297 if (!enabled && !service->overridable) {
298 logerror("'%s': service not enabled.", service->name);
303 if (!(path = path_ok(dir)))
307 * Security on the cheap.
309 * We want a readable HEAD, usable "objects" directory, and
310 * a "git-daemon-export-ok" flag that says that the other side
311 * is ok with us doing this.
313 * path_ok() uses enter_repo() and does whitelist checking.
314 * We only need to make sure the repository is exported.
317 if (!export_all_trees && access("git-daemon-export-ok", F_OK)) {
318 logerror("'%s': repository not exported.", path);
323 if (service->overridable) {
324 service_looking_at = service;
325 service_enabled = -1;
326 git_config(git_daemon_config, NULL);
327 if (0 <= service_enabled)
328 enabled = service_enabled;
331 logerror("'%s': service not enabled for '%s'",
332 service->name, path);
338 * We'll ignore SIGTERM from now on, we have a
341 signal(SIGTERM, SIG_IGN);
343 return service->fn();
346 static int upload_pack(void)
348 /* Timeout as string */
349 char timeout_buf[64];
351 snprintf(timeout_buf, sizeof timeout_buf, "--timeout=%u", timeout);
353 /* git-upload-pack only ever reads stuff, so this is safe */
354 execl_git_cmd("upload-pack", "--strict", timeout_buf, ".", NULL);
358 static int upload_archive(void)
360 execl_git_cmd("upload-archive", ".", NULL);
364 static int receive_pack(void)
366 execl_git_cmd("receive-pack", ".", NULL);
370 static struct daemon_service daemon_service[] = {
371 { "upload-archive", "uploadarch", upload_archive, 0, 1 },
372 { "upload-pack", "uploadpack", upload_pack, 1, 1 },
373 { "receive-pack", "receivepack", receive_pack, 0, 1 },
376 static void enable_service(const char *name, int ena)
379 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
380 if (!strcmp(daemon_service[i].name, name)) {
381 daemon_service[i].enabled = ena;
385 die("No such service %s", name);
388 static void make_service_overridable(const char *name, int ena)
391 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
392 if (!strcmp(daemon_service[i].name, name)) {
393 daemon_service[i].overridable = ena;
397 die("No such service %s", name);
400 static char *xstrdup_tolower(const char *str)
402 char *p, *dup = xstrdup(str);
403 for (p = dup; *p; p++)
409 * Separate the "extra args" information as supplied by the client connection.
411 static void parse_extra_args(char *extra_args, int buflen)
415 char *end = extra_args + buflen;
417 while (extra_args < end && *extra_args) {
418 saw_extended_args = 1;
419 if (strncasecmp("host=", extra_args, 5) == 0) {
420 val = extra_args + 5;
421 vallen = strlen(val) + 1;
423 /* Split <host>:<port> at colon. */
425 char *port = strrchr(host, ':');
430 tcp_port = xstrdup(port);
433 hostname = xstrdup_tolower(host);
436 /* On to the next one */
437 extra_args = val + vallen;
442 * Locate canonical hostname and its IP address.
446 struct addrinfo hints;
447 struct addrinfo *ai, *ai0;
449 static char addrbuf[HOST_NAME_MAX + 1];
451 memset(&hints, 0, sizeof(hints));
452 hints.ai_flags = AI_CANONNAME;
454 gai = getaddrinfo(hostname, 0, &hints, &ai0);
456 for (ai = ai0; ai; ai = ai->ai_next) {
457 struct sockaddr_in *sin_addr = (void *)ai->ai_addr;
459 inet_ntop(AF_INET, &sin_addr->sin_addr,
460 addrbuf, sizeof(addrbuf));
461 free(canon_hostname);
462 canon_hostname = xstrdup(ai->ai_canonname);
464 ip_address = xstrdup(addrbuf);
470 struct hostent *hent;
471 struct sockaddr_in sa;
473 static char addrbuf[HOST_NAME_MAX + 1];
475 hent = gethostbyname(hostname);
477 ap = hent->h_addr_list;
478 memset(&sa, 0, sizeof sa);
479 sa.sin_family = hent->h_addrtype;
480 sa.sin_port = htons(0);
481 memcpy(&sa.sin_addr, *ap, hent->h_length);
483 inet_ntop(hent->h_addrtype, &sa.sin_addr,
484 addrbuf, sizeof(addrbuf));
486 free(canon_hostname);
487 canon_hostname = xstrdup(hent->h_name);
489 ip_address = xstrdup(addrbuf);
495 static int execute(struct sockaddr *addr)
497 static char line[1000];
501 char addrbuf[256] = "";
504 if (addr->sa_family == AF_INET) {
505 struct sockaddr_in *sin_addr = (void *) addr;
506 inet_ntop(addr->sa_family, &sin_addr->sin_addr, addrbuf, sizeof(addrbuf));
507 port = ntohs(sin_addr->sin_port);
509 } else if (addr && addr->sa_family == AF_INET6) {
510 struct sockaddr_in6 *sin6_addr = (void *) addr;
513 *buf++ = '['; *buf = '\0'; /* stpcpy() is cool */
514 inet_ntop(AF_INET6, &sin6_addr->sin6_addr, buf, sizeof(addrbuf) - 1);
517 port = ntohs(sin6_addr->sin6_port);
520 loginfo("Connection from %s:%d", addrbuf, port);
521 setenv("REMOTE_ADDR", addrbuf, 1);
524 unsetenv("REMOTE_ADDR");
527 alarm(init_timeout ? init_timeout : timeout);
528 pktlen = packet_read_line(0, line, sizeof(line));
533 loginfo("Extended attributes (%d bytes) exist <%.*s>",
535 (int) pktlen - len, line + len + 1);
536 if (len && line[len-1] == '\n') {
542 free(canon_hostname);
545 hostname = canon_hostname = ip_address = tcp_port = NULL;
548 parse_extra_args(line + len + 1, pktlen - len - 1);
550 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
551 struct daemon_service *s = &(daemon_service[i]);
552 int namelen = strlen(s->name);
553 if (!prefixcmp(line, "git-") &&
554 !strncmp(s->name, line + 4, namelen) &&
555 line[namelen + 4] == ' ') {
557 * Note: The directory here is probably context sensitive,
558 * and might depend on the actual service being performed.
560 return run_service(line + namelen + 5, s);
564 logerror("Protocol error: '%s'", line);
568 static int max_connections = 32;
570 static unsigned int live_children;
572 static struct child {
575 struct sockaddr_storage address;
578 static void add_child(pid_t pid, struct sockaddr *addr, int addrlen)
580 struct child *newborn, **cradle;
583 * This must be xcalloc() -- we'll compare the whole sockaddr_storage
584 * but individual address may be shorter.
586 newborn = xcalloc(1, sizeof(*newborn));
589 memcpy(&newborn->address, addr, addrlen);
590 for (cradle = &firstborn; *cradle; cradle = &(*cradle)->next)
591 if (!memcmp(&(*cradle)->address, &newborn->address,
592 sizeof(newborn->address)))
594 newborn->next = *cradle;
598 static void remove_child(pid_t pid)
600 struct child **cradle, *blanket;
602 for (cradle = &firstborn; (blanket = *cradle); cradle = &blanket->next)
603 if (blanket->pid == pid) {
604 *cradle = blanket->next;
612 * This gets called if the number of connections grows
613 * past "max_connections".
615 * We kill the newest connection from a duplicate IP.
617 static void kill_some_child(void)
619 const struct child *blanket, *next;
621 if (!(blanket = firstborn))
624 for (; (next = blanket->next); blanket = next)
625 if (!memcmp(&blanket->address, &next->address,
626 sizeof(next->address))) {
627 kill(blanket->pid, SIGTERM);
632 static void check_dead_children(void)
637 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
638 const char *dead = "";
640 if (!WIFEXITED(status) || (WEXITSTATUS(status) > 0))
641 dead = " (with error)";
642 loginfo("[%"PRIuMAX"] Disconnected%s", (uintmax_t)pid, dead);
646 static void handle(int incoming, struct sockaddr *addr, int addrlen)
650 if (max_connections && live_children >= max_connections) {
652 sleep(1); /* give it some time to die */
653 check_dead_children();
654 if (live_children >= max_connections) {
656 logerror("Too many children, dropping connection");
661 if ((pid = fork())) {
664 logerror("Couldn't fork %s", strerror(errno));
668 add_child(pid, addr, addrlen);
679 static void child_handler(int signo)
682 * Otherwise empty handler because systemcalls will get interrupted
683 * upon signal receipt
684 * SysV needs the handler to be rearmed
686 signal(SIGCHLD, child_handler);
689 static int set_reuse_addr(int sockfd)
695 return setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
701 static int socksetup(char *listen_addr, int listen_port, int **socklist_p)
703 int socknum = 0, *socklist = NULL;
705 char pbuf[NI_MAXSERV];
706 struct addrinfo hints, *ai0, *ai;
710 sprintf(pbuf, "%d", listen_port);
711 memset(&hints, 0, sizeof(hints));
712 hints.ai_family = AF_UNSPEC;
713 hints.ai_socktype = SOCK_STREAM;
714 hints.ai_protocol = IPPROTO_TCP;
715 hints.ai_flags = AI_PASSIVE;
717 gai = getaddrinfo(listen_addr, pbuf, &hints, &ai0);
719 die("getaddrinfo() failed: %s", gai_strerror(gai));
721 for (ai = ai0; ai; ai = ai->ai_next) {
724 sockfd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
727 if (sockfd >= FD_SETSIZE) {
728 logerror("Socket descriptor too large");
734 if (ai->ai_family == AF_INET6) {
736 setsockopt(sockfd, IPPROTO_IPV6, IPV6_V6ONLY,
738 /* Note: error is not fatal */
742 if (set_reuse_addr(sockfd)) {
747 if (bind(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) {
749 continue; /* not fatal */
751 if (listen(sockfd, 5) < 0) {
753 continue; /* not fatal */
756 flags = fcntl(sockfd, F_GETFD, 0);
758 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
760 socklist = xrealloc(socklist, sizeof(int) * (socknum + 1));
761 socklist[socknum++] = sockfd;
769 *socklist_p = socklist;
775 static int socksetup(char *listen_addr, int listen_port, int **socklist_p)
777 struct sockaddr_in sin;
781 memset(&sin, 0, sizeof sin);
782 sin.sin_family = AF_INET;
783 sin.sin_port = htons(listen_port);
786 /* Well, host better be an IP address here. */
787 if (inet_pton(AF_INET, listen_addr, &sin.sin_addr.s_addr) <= 0)
790 sin.sin_addr.s_addr = htonl(INADDR_ANY);
793 sockfd = socket(AF_INET, SOCK_STREAM, 0);
797 if (set_reuse_addr(sockfd)) {
802 if ( bind(sockfd, (struct sockaddr *)&sin, sizeof sin) < 0 ) {
807 if (listen(sockfd, 5) < 0) {
812 flags = fcntl(sockfd, F_GETFD, 0);
814 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
816 *socklist_p = xmalloc(sizeof(int));
817 **socklist_p = sockfd;
823 static int service_loop(int socknum, int *socklist)
828 pfd = xcalloc(socknum, sizeof(struct pollfd));
830 for (i = 0; i < socknum; i++) {
831 pfd[i].fd = socklist[i];
832 pfd[i].events = POLLIN;
835 signal(SIGCHLD, child_handler);
840 check_dead_children();
842 if (poll(pfd, socknum, -1) < 0) {
843 if (errno != EINTR) {
844 logerror("Poll failed, resuming: %s",
851 for (i = 0; i < socknum; i++) {
852 if (pfd[i].revents & POLLIN) {
853 struct sockaddr_storage ss;
854 unsigned int sslen = sizeof(ss);
855 int incoming = accept(pfd[i].fd, (struct sockaddr *)&ss, &sslen);
863 die("accept returned %s", strerror(errno));
866 handle(incoming, (struct sockaddr *)&ss, sslen);
872 /* if any standard file descriptor is missing open it to /dev/null */
873 static void sanitize_stdfds(void)
875 int fd = open("/dev/null", O_RDWR, 0);
876 while (fd != -1 && fd < 2)
879 die("open /dev/null or dup failed: %s", strerror(errno));
884 static void daemonize(void)
890 die("fork failed: %s", strerror(errno));
895 die("setsid failed: %s", strerror(errno));
902 static void store_pid(const char *path)
904 FILE *f = fopen(path, "w");
906 die("cannot open pid file %s: %s", path, strerror(errno));
907 if (fprintf(f, "%"PRIuMAX"\n", (uintmax_t) getpid()) < 0 || fclose(f) != 0)
908 die("failed to write pid file %s: %s", path, strerror(errno));
911 static int serve(char *listen_addr, int listen_port, struct passwd *pass, gid_t gid)
913 int socknum, *socklist;
915 socknum = socksetup(listen_addr, listen_port, &socklist);
917 die("unable to allocate any listen sockets on host %s port %u",
918 listen_addr, listen_port);
921 (initgroups(pass->pw_name, gid) || setgid (gid) ||
922 setuid(pass->pw_uid)))
923 die("cannot drop privileges");
925 return service_loop(socknum, socklist);
928 int main(int argc, char **argv)
931 char *listen_addr = NULL;
933 const char *pid_file = NULL, *user_name = NULL, *group_name = NULL;
935 struct passwd *pass = NULL;
940 git_extract_argv0_path(argv[0]);
942 for (i = 1; i < argc; i++) {
945 if (!prefixcmp(arg, "--listen=")) {
946 listen_addr = xstrdup_tolower(arg + 9);
949 if (!prefixcmp(arg, "--port=")) {
952 n = strtoul(arg+7, &end, 0);
953 if (arg[7] && !*end) {
958 if (!strcmp(arg, "--inetd")) {
963 if (!strcmp(arg, "--verbose")) {
967 if (!strcmp(arg, "--syslog")) {
971 if (!strcmp(arg, "--export-all")) {
972 export_all_trees = 1;
975 if (!prefixcmp(arg, "--timeout=")) {
976 timeout = atoi(arg+10);
979 if (!prefixcmp(arg, "--init-timeout=")) {
980 init_timeout = atoi(arg+15);
983 if (!prefixcmp(arg, "--max-connections=")) {
984 max_connections = atoi(arg+18);
985 if (max_connections < 0)
986 max_connections = 0; /* unlimited */
989 if (!strcmp(arg, "--strict-paths")) {
993 if (!prefixcmp(arg, "--base-path=")) {
997 if (!strcmp(arg, "--base-path-relaxed")) {
998 base_path_relaxed = 1;
1001 if (!prefixcmp(arg, "--interpolated-path=")) {
1002 interpolated_path = arg+20;
1005 if (!strcmp(arg, "--reuseaddr")) {
1009 if (!strcmp(arg, "--user-path")) {
1013 if (!prefixcmp(arg, "--user-path=")) {
1014 user_path = arg + 12;
1017 if (!prefixcmp(arg, "--pid-file=")) {
1018 pid_file = arg + 11;
1021 if (!strcmp(arg, "--detach")) {
1026 if (!prefixcmp(arg, "--user=")) {
1027 user_name = arg + 7;
1030 if (!prefixcmp(arg, "--group=")) {
1031 group_name = arg + 8;
1034 if (!prefixcmp(arg, "--enable=")) {
1035 enable_service(arg + 9, 1);
1038 if (!prefixcmp(arg, "--disable=")) {
1039 enable_service(arg + 10, 0);
1042 if (!prefixcmp(arg, "--allow-override=")) {
1043 make_service_overridable(arg + 17, 1);
1046 if (!prefixcmp(arg, "--forbid-override=")) {
1047 make_service_overridable(arg + 18, 0);
1050 if (!strcmp(arg, "--")) {
1051 ok_paths = &argv[i+1];
1053 } else if (arg[0] != '-') {
1054 ok_paths = &argv[i];
1058 usage(daemon_usage);
1062 openlog("git-daemon", LOG_PID, LOG_DAEMON);
1063 set_die_routine(daemon_die);
1065 /* avoid splitting a message in the middle */
1066 setvbuf(stderr, NULL, _IOLBF, 0);
1068 if (inetd_mode && (group_name || user_name))
1069 die("--user and --group are incompatible with --inetd");
1071 if (inetd_mode && (listen_port || listen_addr))
1072 die("--listen= and --port= are incompatible with --inetd");
1073 else if (listen_port == 0)
1074 listen_port = DEFAULT_GIT_PORT;
1076 if (group_name && !user_name)
1077 die("--group supplied without --user");
1080 pass = getpwnam(user_name);
1082 die("user not found - %s", user_name);
1087 group = getgrnam(group_name);
1089 die("group not found - %s", group_name);
1091 gid = group->gr_gid;
1095 if (strict_paths && (!ok_paths || !*ok_paths))
1096 die("option --strict-paths requires a whitelist");
1098 if (base_path && !is_directory(base_path))
1099 die("base-path '%s' does not exist or is not a directory",
1103 struct sockaddr_storage ss;
1104 struct sockaddr *peer = (struct sockaddr *)&ss;
1105 socklen_t slen = sizeof(ss);
1107 if (!freopen("/dev/null", "w", stderr))
1108 die("failed to redirect stderr to /dev/null: %s",
1111 if (getpeername(0, peer, &slen))
1114 return execute(peer);
1119 loginfo("Ready to rumble");
1125 store_pid(pid_file);
1127 return serve(listen_addr, listen_port, pass, gid);