4 #include "run-command.h"
6 #include "string-list.h"
9 #define HOST_NAME_MAX 256
13 #define initgroups(x, y) (0) /* nothing */
16 static int log_syslog;
19 static int informative_errors;
21 static const char daemon_usage[] =
22 "git daemon [--verbose] [--syslog] [--export-all]\n"
23 " [--timeout=<n>] [--init-timeout=<n>] [--max-connections=<n>]\n"
24 " [--strict-paths] [--base-path=<path>] [--base-path-relaxed]\n"
25 " [--user-path | --user-path=<path>]\n"
26 " [--interpolated-path=<path>]\n"
27 " [--reuseaddr] [--pid-file=<file>]\n"
28 " [--(enable|disable|allow-override|forbid-override)=<service>]\n"
29 " [--access-hook=<path>]\n"
30 " [--inetd | [--listen=<host_or_ipaddr>] [--port=<n>]\n"
31 " [--detach] [--user=<user> [--group=<group>]]\n"
34 /* List of acceptable pathname prefixes */
35 static char **ok_paths;
36 static int strict_paths;
38 /* If this is set, git-daemon-export-ok is not required */
39 static int export_all_trees;
41 /* Take all paths relative to this one if non-NULL */
42 static const char *base_path;
43 static const char *interpolated_path;
44 static int base_path_relaxed;
46 /* Flag indicating client sent extra args. */
47 static int saw_extended_args;
49 /* If defined, ~user notation is allowed and the string is inserted
50 * after ~user/. E.g. a request to git://host/~alice/frotz would
51 * go to /home/alice/pub_git/frotz with --user-path=pub_git.
53 static const char *user_path;
55 /* Timeout, and initial timeout */
56 static unsigned int timeout;
57 static unsigned int init_timeout;
59 static char *hostname;
60 static char *canon_hostname;
61 static char *ip_address;
62 static char *tcp_port;
64 static void logreport(int priority, const char *err, va_list params)
68 vsnprintf(buf, sizeof(buf), err, params);
69 syslog(priority, "%s", buf);
72 * Since stderr is set to buffered mode, the
73 * logging of different processes will not overlap
74 * unless they overflow the (rather big) buffers.
76 fprintf(stderr, "[%"PRIuMAX"] ", (uintmax_t)getpid());
77 vfprintf(stderr, err, params);
83 __attribute__((format (printf, 1, 2)))
84 static void logerror(const char *err, ...)
87 va_start(params, err);
88 logreport(LOG_ERR, err, params);
92 __attribute__((format (printf, 1, 2)))
93 static void loginfo(const char *err, ...)
98 va_start(params, err);
99 logreport(LOG_INFO, err, params);
103 static void NORETURN daemon_die(const char *err, va_list params)
105 logreport(LOG_ERR, err, params);
109 static const char *path_ok(const char *directory)
111 static char rpath[PATH_MAX];
112 static char interp_path[PATH_MAX];
118 if (daemon_avoid_alias(dir)) {
119 logerror("'%s': aliased", dir);
125 logerror("'%s': User-path not allowed", dir);
129 /* Got either "~alice" or "~alice/foo";
130 * rewrite them to "~alice/%s" or
133 int namlen, restlen = strlen(dir);
134 const char *slash = strchr(dir, '/');
136 slash = dir + restlen;
137 namlen = slash - dir;
139 loginfo("userpath <%s>, request <%s>, namlen %d, restlen %d, slash <%s>", user_path, dir, namlen, restlen, slash);
140 snprintf(rpath, PATH_MAX, "%.*s/%s%.*s",
141 namlen, dir, user_path, restlen, slash);
145 else if (interpolated_path && saw_extended_args) {
146 struct strbuf expanded_path = STRBUF_INIT;
147 struct strbuf_expand_dict_entry dict[6];
149 dict[0].placeholder = "H"; dict[0].value = hostname;
150 dict[1].placeholder = "CH"; dict[1].value = canon_hostname;
151 dict[2].placeholder = "IP"; dict[2].value = ip_address;
152 dict[3].placeholder = "P"; dict[3].value = tcp_port;
153 dict[4].placeholder = "D"; dict[4].value = directory;
154 dict[5].placeholder = NULL; dict[5].value = NULL;
156 /* Allow only absolute */
157 logerror("'%s': Non-absolute path denied (interpolated-path active)", dir);
161 strbuf_expand(&expanded_path, interpolated_path,
162 strbuf_expand_dict_cb, &dict);
163 strlcpy(interp_path, expanded_path.buf, PATH_MAX);
164 strbuf_release(&expanded_path);
165 loginfo("Interpolated dir '%s'", interp_path);
169 else if (base_path) {
171 /* Allow only absolute */
172 logerror("'%s': Non-absolute path denied (base-path active)", dir);
175 snprintf(rpath, PATH_MAX, "%s%s", base_path, dir);
179 path = enter_repo(dir, strict_paths);
180 if (!path && base_path && base_path_relaxed) {
182 * if we fail and base_path_relaxed is enabled, try without
183 * prefixing the base path
186 path = enter_repo(dir, strict_paths);
190 logerror("'%s' does not appear to be a git repository", dir);
194 if ( ok_paths && *ok_paths ) {
196 int pathlen = strlen(path);
198 /* The validation is done on the paths after enter_repo
199 * appends optional {.git,.git/.git} and friends, but
200 * it does not use getcwd(). So if your /pub is
201 * a symlink to /mnt/pub, you can whitelist /pub and
202 * do not have to say /mnt/pub.
205 for ( pp = ok_paths ; *pp ; pp++ ) {
206 int len = strlen(*pp);
207 if (len <= pathlen &&
208 !memcmp(*pp, path, len) &&
209 (path[len] == '\0' ||
210 (!strict_paths && path[len] == '/')))
215 /* be backwards compatible */
220 logerror("'%s': not in whitelist", path);
221 return NULL; /* Fallthrough. Deny by default */
224 typedef int (*daemon_service_fn)(void);
225 struct daemon_service {
227 const char *config_name;
228 daemon_service_fn fn;
233 static struct daemon_service *service_looking_at;
234 static int service_enabled;
236 static int git_daemon_config(const char *var, const char *value, void *cb)
240 if (skip_prefix(var, "daemon.", &service) &&
241 !strcmp(service, service_looking_at->config_name)) {
242 service_enabled = git_config_bool(var, value);
246 /* we are not interested in parsing any other configuration here */
250 static int daemon_error(const char *dir, const char *msg)
252 if (!informative_errors)
253 msg = "access denied or repository not exported";
254 packet_write(1, "ERR %s: %s", msg, dir);
258 static const char *access_hook;
260 static int run_access_hook(struct daemon_service *service, const char *dir, const char *path)
262 struct child_process child;
263 struct strbuf buf = STRBUF_INIT;
265 const char **arg = argv;
269 #define STRARG(x) ((x) ? (x) : "")
270 *arg++ = access_hook;
271 *arg++ = service->name;
273 *arg++ = STRARG(hostname);
274 *arg++ = STRARG(canon_hostname);
275 *arg++ = STRARG(ip_address);
276 *arg++ = STRARG(tcp_port);
280 memset(&child, 0, sizeof(child));
286 if (start_command(&child)) {
287 logerror("daemon access hook '%s' failed to start",
291 if (strbuf_read(&buf, child.out, 0) < 0) {
292 logerror("failed to read from pipe to daemon access hook '%s'",
297 if (close(child.out) < 0) {
298 logerror("failed to close pipe to daemon access hook '%s'",
302 if (finish_command(&child))
306 strbuf_release(&buf);
313 strbuf_addstr(&buf, "service rejected");
314 eol = strchr(buf.buf, '\n');
318 daemon_error(dir, buf.buf);
319 strbuf_release(&buf);
323 static int run_service(const char *dir, struct daemon_service *service)
326 int enabled = service->enabled;
328 loginfo("Request %s for '%s'", service->name, dir);
330 if (!enabled && !service->overridable) {
331 logerror("'%s': service not enabled.", service->name);
333 return daemon_error(dir, "service not enabled");
336 if (!(path = path_ok(dir)))
337 return daemon_error(dir, "no such repository");
340 * Security on the cheap.
342 * We want a readable HEAD, usable "objects" directory, and
343 * a "git-daemon-export-ok" flag that says that the other side
344 * is ok with us doing this.
346 * path_ok() uses enter_repo() and does whitelist checking.
347 * We only need to make sure the repository is exported.
350 if (!export_all_trees && access("git-daemon-export-ok", F_OK)) {
351 logerror("'%s': repository not exported.", path);
353 return daemon_error(dir, "repository not exported");
356 if (service->overridable) {
357 service_looking_at = service;
358 service_enabled = -1;
359 git_config(git_daemon_config, NULL);
360 if (0 <= service_enabled)
361 enabled = service_enabled;
364 logerror("'%s': service not enabled for '%s'",
365 service->name, path);
367 return daemon_error(dir, "service not enabled");
371 * Optionally, a hook can choose to deny access to the
372 * repository depending on the phase of the moon.
374 if (access_hook && run_access_hook(service, dir, path))
378 * We'll ignore SIGTERM from now on, we have a
381 signal(SIGTERM, SIG_IGN);
383 return service->fn();
386 static void copy_to_log(int fd)
388 struct strbuf line = STRBUF_INIT;
391 fp = fdopen(fd, "r");
393 logerror("fdopen of error channel failed");
398 while (strbuf_getline(&line, fp, '\n') != EOF) {
399 logerror("%s", line.buf);
400 strbuf_setlen(&line, 0);
403 strbuf_release(&line);
407 static int run_service_command(const char **argv)
409 struct child_process cld;
411 memset(&cld, 0, sizeof(cld));
415 if (start_command(&cld))
421 copy_to_log(cld.err);
423 return finish_command(&cld);
426 static int upload_pack(void)
428 /* Timeout as string */
429 char timeout_buf[64];
430 const char *argv[] = { "upload-pack", "--strict", NULL, ".", NULL };
432 argv[2] = timeout_buf;
434 snprintf(timeout_buf, sizeof timeout_buf, "--timeout=%u", timeout);
435 return run_service_command(argv);
438 static int upload_archive(void)
440 static const char *argv[] = { "upload-archive", ".", NULL };
441 return run_service_command(argv);
444 static int receive_pack(void)
446 static const char *argv[] = { "receive-pack", ".", NULL };
447 return run_service_command(argv);
450 static struct daemon_service daemon_service[] = {
451 { "upload-archive", "uploadarch", upload_archive, 0, 1 },
452 { "upload-pack", "uploadpack", upload_pack, 1, 1 },
453 { "receive-pack", "receivepack", receive_pack, 0, 1 },
456 static void enable_service(const char *name, int ena)
459 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
460 if (!strcmp(daemon_service[i].name, name)) {
461 daemon_service[i].enabled = ena;
465 die("No such service %s", name);
468 static void make_service_overridable(const char *name, int ena)
471 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
472 if (!strcmp(daemon_service[i].name, name)) {
473 daemon_service[i].overridable = ena;
477 die("No such service %s", name);
480 static void parse_host_and_port(char *hostport, char **host,
483 if (*hostport == '[') {
486 end = strchr(hostport, ']');
488 die("Invalid request ('[' without ']')");
490 *host = hostport + 1;
493 else if (end[1] == ':')
496 die("Garbage after end of host part");
499 *port = strrchr(hostport, ':');
508 * Sanitize a string from the client so that it's OK to be inserted into a
509 * filesystem path. Specifically, we disallow slashes, runs of "..", and
510 * trailing and leading dots, which means that the client cannot escape
511 * our base path via ".." traversal.
513 static void sanitize_client_strbuf(struct strbuf *out, const char *in)
518 if (*in == '.' && (!out->len || out->buf[out->len - 1] == '.'))
520 strbuf_addch(out, *in);
523 while (out->len && out->buf[out->len - 1] == '.')
524 strbuf_setlen(out, out->len - 1);
527 static char *sanitize_client(const char *in)
529 struct strbuf out = STRBUF_INIT;
530 sanitize_client_strbuf(&out, in);
531 return strbuf_detach(&out, NULL);
535 * Like sanitize_client, but we also perform any canonicalization
536 * to make life easier on the admin.
538 static char *canonicalize_client(const char *in)
540 struct strbuf out = STRBUF_INIT;
541 sanitize_client_strbuf(&out, in);
542 strbuf_tolower(&out);
543 return strbuf_detach(&out, NULL);
547 * Read the host as supplied by the client connection.
549 static void parse_host_arg(char *extra_args, int buflen)
553 char *end = extra_args + buflen;
555 if (extra_args < end && *extra_args) {
556 saw_extended_args = 1;
557 if (strncasecmp("host=", extra_args, 5) == 0) {
558 val = extra_args + 5;
559 vallen = strlen(val) + 1;
561 /* Split <host>:<port> at colon. */
564 parse_host_and_port(val, &host, &port);
567 tcp_port = sanitize_client(port);
570 hostname = canonicalize_client(host);
573 /* On to the next one */
574 extra_args = val + vallen;
576 if (extra_args < end && *extra_args)
577 die("Invalid request");
581 * Locate canonical hostname and its IP address.
585 struct addrinfo hints;
588 static char addrbuf[HOST_NAME_MAX + 1];
590 memset(&hints, 0, sizeof(hints));
591 hints.ai_flags = AI_CANONNAME;
593 gai = getaddrinfo(hostname, NULL, &hints, &ai);
595 struct sockaddr_in *sin_addr = (void *)ai->ai_addr;
597 inet_ntop(AF_INET, &sin_addr->sin_addr,
598 addrbuf, sizeof(addrbuf));
600 ip_address = xstrdup(addrbuf);
602 free(canon_hostname);
603 canon_hostname = ai->ai_canonname ?
604 sanitize_client(ai->ai_canonname) :
610 struct hostent *hent;
611 struct sockaddr_in sa;
613 static char addrbuf[HOST_NAME_MAX + 1];
615 hent = gethostbyname(hostname);
617 ap = hent->h_addr_list;
618 memset(&sa, 0, sizeof sa);
619 sa.sin_family = hent->h_addrtype;
620 sa.sin_port = htons(0);
621 memcpy(&sa.sin_addr, *ap, hent->h_length);
623 inet_ntop(hent->h_addrtype, &sa.sin_addr,
624 addrbuf, sizeof(addrbuf));
626 free(canon_hostname);
627 canon_hostname = sanitize_client(hent->h_name);
629 ip_address = xstrdup(addrbuf);
636 static int execute(void)
638 char *line = packet_buffer;
640 char *addr = getenv("REMOTE_ADDR"), *port = getenv("REMOTE_PORT");
643 loginfo("Connection from %s:%s", addr, port);
645 alarm(init_timeout ? init_timeout : timeout);
646 pktlen = packet_read(0, NULL, NULL, packet_buffer, sizeof(packet_buffer), 0);
651 loginfo("Extended attributes (%d bytes) exist <%.*s>",
653 (int) pktlen - len, line + len + 1);
654 if (len && line[len-1] == '\n') {
660 free(canon_hostname);
663 hostname = canon_hostname = ip_address = tcp_port = NULL;
666 parse_host_arg(line + len + 1, pktlen - len - 1);
668 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
669 struct daemon_service *s = &(daemon_service[i]);
672 if (skip_prefix(line, "git-", &arg) &&
673 skip_prefix(arg, s->name, &arg) &&
676 * Note: The directory here is probably context sensitive,
677 * and might depend on the actual service being performed.
679 return run_service(arg, s);
683 logerror("Protocol error: '%s'", line);
687 static int addrcmp(const struct sockaddr_storage *s1,
688 const struct sockaddr_storage *s2)
690 const struct sockaddr *sa1 = (const struct sockaddr*) s1;
691 const struct sockaddr *sa2 = (const struct sockaddr*) s2;
693 if (sa1->sa_family != sa2->sa_family)
694 return sa1->sa_family - sa2->sa_family;
695 if (sa1->sa_family == AF_INET)
696 return memcmp(&((struct sockaddr_in *)s1)->sin_addr,
697 &((struct sockaddr_in *)s2)->sin_addr,
698 sizeof(struct in_addr));
700 if (sa1->sa_family == AF_INET6)
701 return memcmp(&((struct sockaddr_in6 *)s1)->sin6_addr,
702 &((struct sockaddr_in6 *)s2)->sin6_addr,
703 sizeof(struct in6_addr));
708 static int max_connections = 32;
710 static unsigned int live_children;
712 static struct child {
714 struct child_process cld;
715 struct sockaddr_storage address;
718 static void add_child(struct child_process *cld, struct sockaddr *addr, socklen_t addrlen)
720 struct child *newborn, **cradle;
722 newborn = xcalloc(1, sizeof(*newborn));
724 memcpy(&newborn->cld, cld, sizeof(*cld));
725 memcpy(&newborn->address, addr, addrlen);
726 for (cradle = &firstborn; *cradle; cradle = &(*cradle)->next)
727 if (!addrcmp(&(*cradle)->address, &newborn->address))
729 newborn->next = *cradle;
734 * This gets called if the number of connections grows
735 * past "max_connections".
737 * We kill the newest connection from a duplicate IP.
739 static void kill_some_child(void)
741 const struct child *blanket, *next;
743 if (!(blanket = firstborn))
746 for (; (next = blanket->next); blanket = next)
747 if (!addrcmp(&blanket->address, &next->address)) {
748 kill(blanket->cld.pid, SIGTERM);
753 static void check_dead_children(void)
758 struct child **cradle, *blanket;
759 for (cradle = &firstborn; (blanket = *cradle);)
760 if ((pid = waitpid(blanket->cld.pid, &status, WNOHANG)) > 1) {
761 const char *dead = "";
763 dead = " (with error)";
764 loginfo("[%"PRIuMAX"] Disconnected%s", (uintmax_t)pid, dead);
766 /* remove the child */
767 *cradle = blanket->next;
771 cradle = &blanket->next;
774 static char **cld_argv;
775 static void handle(int incoming, struct sockaddr *addr, socklen_t addrlen)
777 struct child_process cld = { NULL };
778 char addrbuf[300] = "REMOTE_ADDR=", portbuf[300];
779 char *env[] = { addrbuf, portbuf, NULL };
781 if (max_connections && live_children >= max_connections) {
783 sleep(1); /* give it some time to die */
784 check_dead_children();
785 if (live_children >= max_connections) {
787 logerror("Too many children, dropping connection");
792 if (addr->sa_family == AF_INET) {
793 struct sockaddr_in *sin_addr = (void *) addr;
794 inet_ntop(addr->sa_family, &sin_addr->sin_addr, addrbuf + 12,
795 sizeof(addrbuf) - 12);
796 snprintf(portbuf, sizeof(portbuf), "REMOTE_PORT=%d",
797 ntohs(sin_addr->sin_port));
799 } else if (addr->sa_family == AF_INET6) {
800 struct sockaddr_in6 *sin6_addr = (void *) addr;
802 char *buf = addrbuf + 12;
803 *buf++ = '['; *buf = '\0'; /* stpcpy() is cool */
804 inet_ntop(AF_INET6, &sin6_addr->sin6_addr, buf,
805 sizeof(addrbuf) - 13);
808 snprintf(portbuf, sizeof(portbuf), "REMOTE_PORT=%d",
809 ntohs(sin6_addr->sin6_port));
813 cld.env = (const char **)env;
814 cld.argv = (const char **)cld_argv;
816 cld.out = dup(incoming);
818 if (start_command(&cld))
819 logerror("unable to fork");
821 add_child(&cld, addr, addrlen);
824 static void child_handler(int signo)
827 * Otherwise empty handler because systemcalls will get interrupted
828 * upon signal receipt
829 * SysV needs the handler to be rearmed
831 signal(SIGCHLD, child_handler);
834 static int set_reuse_addr(int sockfd)
840 return setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
850 static const char *ip2str(int family, struct sockaddr *sin, socklen_t len)
853 static char ip[INET_ADDRSTRLEN];
855 static char ip[INET6_ADDRSTRLEN];
861 inet_ntop(family, &((struct sockaddr_in6*)sin)->sin6_addr, ip, len);
865 inet_ntop(family, &((struct sockaddr_in*)sin)->sin_addr, ip, len);
868 strcpy(ip, "<unknown>");
875 static int setup_named_sock(char *listen_addr, int listen_port, struct socketlist *socklist)
878 char pbuf[NI_MAXSERV];
879 struct addrinfo hints, *ai0, *ai;
883 sprintf(pbuf, "%d", listen_port);
884 memset(&hints, 0, sizeof(hints));
885 hints.ai_family = AF_UNSPEC;
886 hints.ai_socktype = SOCK_STREAM;
887 hints.ai_protocol = IPPROTO_TCP;
888 hints.ai_flags = AI_PASSIVE;
890 gai = getaddrinfo(listen_addr, pbuf, &hints, &ai0);
892 logerror("getaddrinfo() for %s failed: %s", listen_addr, gai_strerror(gai));
896 for (ai = ai0; ai; ai = ai->ai_next) {
899 sockfd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
902 if (sockfd >= FD_SETSIZE) {
903 logerror("Socket descriptor too large");
909 if (ai->ai_family == AF_INET6) {
911 setsockopt(sockfd, IPPROTO_IPV6, IPV6_V6ONLY,
913 /* Note: error is not fatal */
917 if (set_reuse_addr(sockfd)) {
918 logerror("Could not set SO_REUSEADDR: %s", strerror(errno));
923 if (bind(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) {
924 logerror("Could not bind to %s: %s",
925 ip2str(ai->ai_family, ai->ai_addr, ai->ai_addrlen),
928 continue; /* not fatal */
930 if (listen(sockfd, 5) < 0) {
931 logerror("Could not listen to %s: %s",
932 ip2str(ai->ai_family, ai->ai_addr, ai->ai_addrlen),
935 continue; /* not fatal */
938 flags = fcntl(sockfd, F_GETFD, 0);
940 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
942 ALLOC_GROW(socklist->list, socklist->nr + 1, socklist->alloc);
943 socklist->list[socklist->nr++] = sockfd;
954 static int setup_named_sock(char *listen_addr, int listen_port, struct socketlist *socklist)
956 struct sockaddr_in sin;
960 memset(&sin, 0, sizeof sin);
961 sin.sin_family = AF_INET;
962 sin.sin_port = htons(listen_port);
965 /* Well, host better be an IP address here. */
966 if (inet_pton(AF_INET, listen_addr, &sin.sin_addr.s_addr) <= 0)
969 sin.sin_addr.s_addr = htonl(INADDR_ANY);
972 sockfd = socket(AF_INET, SOCK_STREAM, 0);
976 if (set_reuse_addr(sockfd)) {
977 logerror("Could not set SO_REUSEADDR: %s", strerror(errno));
982 if ( bind(sockfd, (struct sockaddr *)&sin, sizeof sin) < 0 ) {
983 logerror("Could not bind to %s: %s",
984 ip2str(AF_INET, (struct sockaddr *)&sin, sizeof(sin)),
990 if (listen(sockfd, 5) < 0) {
991 logerror("Could not listen to %s: %s",
992 ip2str(AF_INET, (struct sockaddr *)&sin, sizeof(sin)),
998 flags = fcntl(sockfd, F_GETFD, 0);
1000 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
1002 ALLOC_GROW(socklist->list, socklist->nr + 1, socklist->alloc);
1003 socklist->list[socklist->nr++] = sockfd;
1009 static void socksetup(struct string_list *listen_addr, int listen_port, struct socketlist *socklist)
1011 if (!listen_addr->nr)
1012 setup_named_sock(NULL, listen_port, socklist);
1015 for (i = 0; i < listen_addr->nr; i++) {
1016 socknum = setup_named_sock(listen_addr->items[i].string,
1017 listen_port, socklist);
1020 logerror("unable to allocate any listen sockets for host %s on port %u",
1021 listen_addr->items[i].string, listen_port);
1026 static int service_loop(struct socketlist *socklist)
1031 pfd = xcalloc(socklist->nr, sizeof(struct pollfd));
1033 for (i = 0; i < socklist->nr; i++) {
1034 pfd[i].fd = socklist->list[i];
1035 pfd[i].events = POLLIN;
1038 signal(SIGCHLD, child_handler);
1043 check_dead_children();
1045 if (poll(pfd, socklist->nr, -1) < 0) {
1046 if (errno != EINTR) {
1047 logerror("Poll failed, resuming: %s",
1054 for (i = 0; i < socklist->nr; i++) {
1055 if (pfd[i].revents & POLLIN) {
1058 struct sockaddr_in sai;
1060 struct sockaddr_in6 sai6;
1063 socklen_t sslen = sizeof(ss);
1064 int incoming = accept(pfd[i].fd, &ss.sa, &sslen);
1072 die_errno("accept returned");
1075 handle(incoming, &ss.sa, sslen);
1081 #ifdef NO_POSIX_GOODIES
1085 static void drop_privileges(struct credentials *cred)
1090 static struct credentials *prepare_credentials(const char *user_name,
1091 const char *group_name)
1093 die("--user not supported on this platform");
1098 struct credentials {
1099 struct passwd *pass;
1103 static void drop_privileges(struct credentials *cred)
1105 if (cred && (initgroups(cred->pass->pw_name, cred->gid) ||
1106 setgid (cred->gid) || setuid(cred->pass->pw_uid)))
1107 die("cannot drop privileges");
1110 static struct credentials *prepare_credentials(const char *user_name,
1111 const char *group_name)
1113 static struct credentials c;
1115 c.pass = getpwnam(user_name);
1117 die("user not found - %s", user_name);
1120 c.gid = c.pass->pw_gid;
1122 struct group *group = getgrnam(group_name);
1124 die("group not found - %s", group_name);
1126 c.gid = group->gr_gid;
1133 static void store_pid(const char *path)
1135 FILE *f = fopen(path, "w");
1137 die_errno("cannot open pid file '%s'", path);
1138 if (fprintf(f, "%"PRIuMAX"\n", (uintmax_t) getpid()) < 0 || fclose(f) != 0)
1139 die_errno("failed to write pid file '%s'", path);
1142 static int serve(struct string_list *listen_addr, int listen_port,
1143 struct credentials *cred)
1145 struct socketlist socklist = { NULL, 0, 0 };
1147 socksetup(listen_addr, listen_port, &socklist);
1148 if (socklist.nr == 0)
1149 die("unable to allocate any listen sockets on port %u",
1152 drop_privileges(cred);
1154 loginfo("Ready to rumble");
1156 return service_loop(&socklist);
1159 int main(int argc, char **argv)
1161 int listen_port = 0;
1162 struct string_list listen_addr = STRING_LIST_INIT_NODUP;
1163 int serve_mode = 0, inetd_mode = 0;
1164 const char *pid_file = NULL, *user_name = NULL, *group_name = NULL;
1166 struct credentials *cred = NULL;
1169 git_setup_gettext();
1171 git_extract_argv0_path(argv[0]);
1173 for (i = 1; i < argc; i++) {
1174 char *arg = argv[i];
1177 if (skip_prefix(arg, "--listen=", &v)) {
1178 string_list_append(&listen_addr, xstrdup_tolower(v));
1181 if (skip_prefix(arg, "--port=", &v)) {
1184 n = strtoul(v, &end, 0);
1190 if (!strcmp(arg, "--serve")) {
1194 if (!strcmp(arg, "--inetd")) {
1199 if (!strcmp(arg, "--verbose")) {
1203 if (!strcmp(arg, "--syslog")) {
1207 if (!strcmp(arg, "--export-all")) {
1208 export_all_trees = 1;
1211 if (skip_prefix(arg, "--access-hook=", &v)) {
1215 if (skip_prefix(arg, "--timeout=", &v)) {
1219 if (skip_prefix(arg, "--init-timeout=", &v)) {
1220 init_timeout = atoi(v);
1223 if (skip_prefix(arg, "--max-connections=", &v)) {
1224 max_connections = atoi(v);
1225 if (max_connections < 0)
1226 max_connections = 0; /* unlimited */
1229 if (!strcmp(arg, "--strict-paths")) {
1233 if (skip_prefix(arg, "--base-path=", &v)) {
1237 if (!strcmp(arg, "--base-path-relaxed")) {
1238 base_path_relaxed = 1;
1241 if (skip_prefix(arg, "--interpolated-path=", &v)) {
1242 interpolated_path = v;
1245 if (!strcmp(arg, "--reuseaddr")) {
1249 if (!strcmp(arg, "--user-path")) {
1253 if (skip_prefix(arg, "--user-path=", &v)) {
1257 if (skip_prefix(arg, "--pid-file=", &v)) {
1261 if (!strcmp(arg, "--detach")) {
1266 if (skip_prefix(arg, "--user=", &v)) {
1270 if (skip_prefix(arg, "--group=", &v)) {
1274 if (skip_prefix(arg, "--enable=", &v)) {
1275 enable_service(v, 1);
1278 if (skip_prefix(arg, "--disable=", &v)) {
1279 enable_service(v, 0);
1282 if (skip_prefix(arg, "--allow-override=", &v)) {
1283 make_service_overridable(v, 1);
1286 if (skip_prefix(arg, "--forbid-override=", &v)) {
1287 make_service_overridable(v, 0);
1290 if (!strcmp(arg, "--informative-errors")) {
1291 informative_errors = 1;
1294 if (!strcmp(arg, "--no-informative-errors")) {
1295 informative_errors = 0;
1298 if (!strcmp(arg, "--")) {
1299 ok_paths = &argv[i+1];
1301 } else if (arg[0] != '-') {
1302 ok_paths = &argv[i];
1306 usage(daemon_usage);
1310 openlog("git-daemon", LOG_PID, LOG_DAEMON);
1311 set_die_routine(daemon_die);
1313 /* avoid splitting a message in the middle */
1314 setvbuf(stderr, NULL, _IOFBF, 4096);
1316 if (inetd_mode && (detach || group_name || user_name))
1317 die("--detach, --user and --group are incompatible with --inetd");
1319 if (inetd_mode && (listen_port || (listen_addr.nr > 0)))
1320 die("--listen= and --port= are incompatible with --inetd");
1321 else if (listen_port == 0)
1322 listen_port = DEFAULT_GIT_PORT;
1324 if (group_name && !user_name)
1325 die("--group supplied without --user");
1328 cred = prepare_credentials(user_name, group_name);
1330 if (strict_paths && (!ok_paths || !*ok_paths))
1331 die("option --strict-paths requires a whitelist");
1333 if (base_path && !is_directory(base_path))
1334 die("base-path '%s' does not exist or is not a directory",
1338 if (!freopen("/dev/null", "w", stderr))
1339 die_errno("failed to redirect stderr to /dev/null");
1342 if (inetd_mode || serve_mode)
1347 die("--detach not supported on this platform");
1352 store_pid(pid_file);
1354 /* prepare argv for serving-processes */
1355 cld_argv = xmalloc(sizeof (char *) * (argc + 2));
1356 cld_argv[0] = argv[0]; /* git-daemon */
1357 cld_argv[1] = "--serve";
1358 for (i = 1; i < argc; ++i)
1359 cld_argv[i+1] = argv[i];
1360 cld_argv[argc+1] = NULL;
1362 return serve(&listen_addr, listen_port, cred);