1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
6 #include "environment.h"
10 #include "run-command.h"
13 #include "string-list.h"
16 #define initgroups(x, y) (0) /* nothing */
19 static enum log_destination
{
20 LOG_DESTINATION_UNSET
= -1,
21 LOG_DESTINATION_NONE
= 0,
22 LOG_DESTINATION_STDERR
= 1,
23 LOG_DESTINATION_SYSLOG
= 2,
24 } log_destination
= LOG_DESTINATION_UNSET
;
27 static int informative_errors
;
29 static const char daemon_usage
[] =
30 "git daemon [--verbose] [--syslog] [--export-all]\n"
31 " [--timeout=<n>] [--init-timeout=<n>] [--max-connections=<n>]\n"
32 " [--strict-paths] [--base-path=<path>] [--base-path-relaxed]\n"
33 " [--user-path | --user-path=<path>]\n"
34 " [--interpolated-path=<path>]\n"
35 " [--reuseaddr] [--pid-file=<file>]\n"
36 " [--(enable|disable|allow-override|forbid-override)=<service>]\n"
37 " [--access-hook=<path>]\n"
38 " [--inetd | [--listen=<host_or_ipaddr>] [--port=<n>]\n"
39 " [--detach] [--user=<user> [--group=<group>]]\n"
40 " [--log-destination=(stderr|syslog|none)]\n"
43 /* List of acceptable pathname prefixes */
44 static const char **ok_paths
;
45 static int strict_paths
;
47 /* If this is set, git-daemon-export-ok is not required */
48 static int export_all_trees
;
50 /* Take all paths relative to this one if non-NULL */
51 static const char *base_path
;
52 static const char *interpolated_path
;
53 static int base_path_relaxed
;
55 /* If defined, ~user notation is allowed and the string is inserted
56 * after ~user/. E.g. a request to git://host/~alice/frotz would
57 * go to /home/alice/pub_git/frotz with --user-path=pub_git.
59 static const char *user_path
;
61 /* Timeout, and initial timeout */
62 static unsigned int timeout
;
63 static unsigned int init_timeout
;
66 struct strbuf hostname
;
67 struct strbuf canon_hostname
;
68 struct strbuf ip_address
;
69 struct strbuf tcp_port
;
70 unsigned int hostname_lookup_done
:1;
71 unsigned int saw_extended_args
:1;
73 #define HOSTINFO_INIT { \
74 .hostname = STRBUF_INIT, \
75 .canon_hostname = STRBUF_INIT, \
76 .ip_address = STRBUF_INIT, \
77 .tcp_port = STRBUF_INIT, \
80 static void lookup_hostname(struct hostinfo
*hi
);
82 static const char *get_canon_hostname(struct hostinfo
*hi
)
85 return hi
->canon_hostname
.buf
;
88 static const char *get_ip_address(struct hostinfo
*hi
)
91 return hi
->ip_address
.buf
;
94 static void logreport(int priority
, const char *err
, va_list params
)
96 switch (log_destination
) {
97 case LOG_DESTINATION_SYSLOG
: {
99 vsnprintf(buf
, sizeof(buf
), err
, params
);
100 syslog(priority
, "%s", buf
);
103 case LOG_DESTINATION_STDERR
:
105 * Since stderr is set to buffered mode, the
106 * logging of different processes will not overlap
107 * unless they overflow the (rather big) buffers.
109 fprintf(stderr
, "[%"PRIuMAX
"] ", (uintmax_t)getpid());
110 vfprintf(stderr
, err
, params
);
114 case LOG_DESTINATION_NONE
:
116 case LOG_DESTINATION_UNSET
:
117 BUG("log destination not initialized correctly");
121 __attribute__((format (printf
, 1, 2)))
122 static void logerror(const char *err
, ...)
125 va_start(params
, err
);
126 logreport(LOG_ERR
, err
, params
);
130 __attribute__((format (printf
, 1, 2)))
131 static void loginfo(const char *err
, ...)
136 va_start(params
, err
);
137 logreport(LOG_INFO
, err
, params
);
141 static void NORETURN
daemon_die(const char *err
, va_list params
)
143 logreport(LOG_ERR
, err
, params
);
147 static const char *path_ok(const char *directory
, struct hostinfo
*hi
)
149 static char rpath
[PATH_MAX
];
150 static char interp_path
[PATH_MAX
];
157 if (daemon_avoid_alias(dir
)) {
158 logerror("'%s': aliased", dir
);
164 logerror("'%s': User-path not allowed", dir
);
168 /* Got either "~alice" or "~alice/foo";
169 * rewrite them to "~alice/%s" or
172 int namlen
, restlen
= strlen(dir
);
173 const char *slash
= strchr(dir
, '/');
175 slash
= dir
+ restlen
;
176 namlen
= slash
- dir
;
178 loginfo("userpath <%s>, request <%s>, namlen %d, restlen %d, slash <%s>", user_path
, dir
, namlen
, restlen
, slash
);
179 rlen
= snprintf(rpath
, sizeof(rpath
), "%.*s/%s%.*s",
180 namlen
, dir
, user_path
, restlen
, slash
);
181 if (rlen
>= sizeof(rpath
)) {
182 logerror("user-path too large: %s", rpath
);
188 else if (interpolated_path
&& hi
->saw_extended_args
) {
189 struct strbuf expanded_path
= STRBUF_INIT
;
190 const char *format
= interpolated_path
;
193 /* Allow only absolute */
194 logerror("'%s': Non-absolute path denied (interpolated-path active)", dir
);
198 while (strbuf_expand_step(&expanded_path
, &format
)) {
199 if (skip_prefix(format
, "%", &format
))
200 strbuf_addch(&expanded_path
, '%');
201 else if (skip_prefix(format
, "H", &format
))
202 strbuf_addbuf(&expanded_path
, &hi
->hostname
);
203 else if (skip_prefix(format
, "CH", &format
))
204 strbuf_addstr(&expanded_path
,
205 get_canon_hostname(hi
));
206 else if (skip_prefix(format
, "IP", &format
))
207 strbuf_addstr(&expanded_path
,
209 else if (skip_prefix(format
, "P", &format
))
210 strbuf_addbuf(&expanded_path
, &hi
->tcp_port
);
211 else if (skip_prefix(format
, "D", &format
))
212 strbuf_addstr(&expanded_path
, directory
);
214 strbuf_addch(&expanded_path
, '%');
217 rlen
= strlcpy(interp_path
, expanded_path
.buf
,
218 sizeof(interp_path
));
219 strbuf_release(&expanded_path
);
220 if (rlen
>= sizeof(interp_path
)) {
221 logerror("interpolated path too large: %s",
226 loginfo("Interpolated dir '%s'", interp_path
);
230 else if (base_path
) {
232 /* Allow only absolute */
233 logerror("'%s': Non-absolute path denied (base-path active)", dir
);
236 rlen
= snprintf(rpath
, sizeof(rpath
), "%s%s", base_path
, dir
);
237 if (rlen
>= sizeof(rpath
)) {
238 logerror("base-path too large: %s", rpath
);
244 path
= enter_repo(dir
, strict_paths
);
245 if (!path
&& base_path
&& base_path_relaxed
) {
247 * if we fail and base_path_relaxed is enabled, try without
248 * prefixing the base path
251 path
= enter_repo(dir
, strict_paths
);
255 logerror("'%s' does not appear to be a git repository", dir
);
259 if ( ok_paths
&& *ok_paths
) {
261 int pathlen
= strlen(path
);
263 /* The validation is done on the paths after enter_repo
264 * appends optional {.git,.git/.git} and friends, but
265 * it does not use getcwd(). So if your /pub is
266 * a symlink to /mnt/pub, you can include /pub and
267 * do not have to say /mnt/pub.
270 for ( pp
= ok_paths
; *pp
; pp
++ ) {
271 int len
= strlen(*pp
);
272 if (len
<= pathlen
&&
273 !memcmp(*pp
, path
, len
) &&
274 (path
[len
] == '\0' ||
275 (!strict_paths
&& path
[len
] == '/')))
280 /* be backwards compatible */
285 logerror("'%s': not in directory list", path
);
286 return NULL
; /* Fallthrough. Deny by default */
289 typedef int (*daemon_service_fn
)(const struct strvec
*env
);
290 struct daemon_service
{
292 const char *config_name
;
293 daemon_service_fn fn
;
298 static int daemon_error(const char *dir
, const char *msg
)
300 if (!informative_errors
)
301 msg
= "access denied or repository not exported";
302 packet_write_fmt(1, "ERR %s: %s", msg
, dir
);
306 static const char *access_hook
;
308 static int run_access_hook(struct daemon_service
*service
, const char *dir
,
309 const char *path
, struct hostinfo
*hi
)
311 struct child_process child
= CHILD_PROCESS_INIT
;
312 struct strbuf buf
= STRBUF_INIT
;
316 strvec_push(&child
.args
, access_hook
);
317 strvec_push(&child
.args
, service
->name
);
318 strvec_push(&child
.args
, path
);
319 strvec_push(&child
.args
, hi
->hostname
.buf
);
320 strvec_push(&child
.args
, get_canon_hostname(hi
));
321 strvec_push(&child
.args
, get_ip_address(hi
));
322 strvec_push(&child
.args
, hi
->tcp_port
.buf
);
328 if (start_command(&child
)) {
329 logerror("daemon access hook '%s' failed to start",
333 if (strbuf_read(&buf
, child
.out
, 0) < 0) {
334 logerror("failed to read from pipe to daemon access hook '%s'",
339 if (close(child
.out
) < 0) {
340 logerror("failed to close pipe to daemon access hook '%s'",
344 if (finish_command(&child
))
348 strbuf_release(&buf
);
355 strbuf_addstr(&buf
, "service rejected");
356 eol
= strchr(buf
.buf
, '\n');
360 daemon_error(dir
, buf
.buf
);
361 strbuf_release(&buf
);
365 static int run_service(const char *dir
, struct daemon_service
*service
,
366 struct hostinfo
*hi
, const struct strvec
*env
)
369 int enabled
= service
->enabled
;
370 struct strbuf var
= STRBUF_INIT
;
372 loginfo("Request %s for '%s'", service
->name
, dir
);
374 if (!enabled
&& !service
->overridable
) {
375 logerror("'%s': service not enabled.", service
->name
);
377 return daemon_error(dir
, "service not enabled");
380 if (!(path
= path_ok(dir
, hi
)))
381 return daemon_error(dir
, "no such repository");
384 * Security on the cheap.
386 * We want a readable HEAD, usable "objects" directory, and
387 * a "git-daemon-export-ok" flag that says that the other side
388 * is ok with us doing this.
390 * path_ok() uses enter_repo() and checks for included directories.
391 * We only need to make sure the repository is exported.
394 if (!export_all_trees
&& access("git-daemon-export-ok", F_OK
)) {
395 logerror("'%s': repository not exported.", path
);
397 return daemon_error(dir
, "repository not exported");
400 if (service
->overridable
) {
401 strbuf_addf(&var
, "daemon.%s", service
->config_name
);
402 git_config_get_bool(var
.buf
, &enabled
);
403 strbuf_release(&var
);
406 logerror("'%s': service not enabled for '%s'",
407 service
->name
, path
);
409 return daemon_error(dir
, "service not enabled");
413 * Optionally, a hook can choose to deny access to the
414 * repository depending on the phase of the moon.
416 if (access_hook
&& run_access_hook(service
, dir
, path
, hi
))
420 * We'll ignore SIGTERM from now on, we have a
423 signal(SIGTERM
, SIG_IGN
);
425 return service
->fn(env
);
428 static void copy_to_log(int fd
)
430 struct strbuf line
= STRBUF_INIT
;
433 fp
= fdopen(fd
, "r");
435 logerror("fdopen of error channel failed");
440 while (strbuf_getline_lf(&line
, fp
) != EOF
) {
441 logerror("%s", line
.buf
);
442 strbuf_setlen(&line
, 0);
445 strbuf_release(&line
);
449 static int run_service_command(struct child_process
*cld
)
451 strvec_push(&cld
->args
, ".");
454 if (start_command(cld
))
460 copy_to_log(cld
->err
);
462 return finish_command(cld
);
465 static int upload_pack(const struct strvec
*env
)
467 struct child_process cld
= CHILD_PROCESS_INIT
;
468 strvec_pushl(&cld
.args
, "upload-pack", "--strict", NULL
);
469 strvec_pushf(&cld
.args
, "--timeout=%u", timeout
);
471 strvec_pushv(&cld
.env
, env
->v
);
473 return run_service_command(&cld
);
476 static int upload_archive(const struct strvec
*env
)
478 struct child_process cld
= CHILD_PROCESS_INIT
;
479 strvec_push(&cld
.args
, "upload-archive");
481 strvec_pushv(&cld
.env
, env
->v
);
483 return run_service_command(&cld
);
486 static int receive_pack(const struct strvec
*env
)
488 struct child_process cld
= CHILD_PROCESS_INIT
;
489 strvec_push(&cld
.args
, "receive-pack");
491 strvec_pushv(&cld
.env
, env
->v
);
493 return run_service_command(&cld
);
496 static struct daemon_service daemon_service
[] = {
497 { "upload-archive", "uploadarch", upload_archive
, 0, 1 },
498 { "upload-pack", "uploadpack", upload_pack
, 1, 1 },
499 { "receive-pack", "receivepack", receive_pack
, 0, 1 },
502 static void enable_service(const char *name
, int ena
)
505 for (i
= 0; i
< ARRAY_SIZE(daemon_service
); i
++) {
506 if (!strcmp(daemon_service
[i
].name
, name
)) {
507 daemon_service
[i
].enabled
= ena
;
511 die("No such service %s", name
);
514 static void make_service_overridable(const char *name
, int ena
)
517 for (i
= 0; i
< ARRAY_SIZE(daemon_service
); i
++) {
518 if (!strcmp(daemon_service
[i
].name
, name
)) {
519 daemon_service
[i
].overridable
= ena
;
523 die("No such service %s", name
);
526 static void parse_host_and_port(char *hostport
, char **host
,
529 if (*hostport
== '[') {
532 end
= strchr(hostport
, ']');
534 die("Invalid request ('[' without ']')");
536 *host
= hostport
+ 1;
539 else if (end
[1] == ':')
542 die("Garbage after end of host part");
545 *port
= strrchr(hostport
, ':');
554 * Sanitize a string from the client so that it's OK to be inserted into a
555 * filesystem path. Specifically, we disallow directory separators, runs
556 * of "..", and trailing and leading dots, which means that the client
557 * cannot escape our base path via ".." traversal.
559 static void sanitize_client(struct strbuf
*out
, const char *in
)
564 if (*in
== '.' && (!out
->len
|| out
->buf
[out
->len
- 1] == '.'))
566 strbuf_addch(out
, *in
);
569 while (out
->len
&& out
->buf
[out
->len
- 1] == '.')
570 strbuf_setlen(out
, out
->len
- 1);
574 * Like sanitize_client, but we also perform any canonicalization
575 * to make life easier on the admin.
577 static void canonicalize_client(struct strbuf
*out
, const char *in
)
579 sanitize_client(out
, in
);
584 * Read the host as supplied by the client connection.
586 * Returns a pointer to the character after the NUL byte terminating the host
587 * argument, or 'extra_args' if there is no host argument.
589 static char *parse_host_arg(struct hostinfo
*hi
, char *extra_args
, int buflen
)
593 char *end
= extra_args
+ buflen
;
595 if (extra_args
< end
&& *extra_args
) {
596 hi
->saw_extended_args
= 1;
597 if (strncasecmp("host=", extra_args
, 5) == 0) {
598 val
= extra_args
+ 5;
599 vallen
= strlen(val
) + 1;
600 loginfo("Extended attribute \"host\": %s", val
);
602 /* Split <host>:<port> at colon. */
605 parse_host_and_port(val
, &host
, &port
);
607 sanitize_client(&hi
->tcp_port
, port
);
608 canonicalize_client(&hi
->hostname
, host
);
609 hi
->hostname_lookup_done
= 0;
612 /* On to the next one */
613 extra_args
= val
+ vallen
;
615 if (extra_args
< end
&& *extra_args
)
616 die("Invalid request");
622 static void parse_extra_args(struct hostinfo
*hi
, struct strvec
*env
,
623 char *extra_args
, int buflen
)
625 const char *end
= extra_args
+ buflen
;
626 struct strbuf git_protocol
= STRBUF_INIT
;
628 /* First look for the host argument */
629 extra_args
= parse_host_arg(hi
, extra_args
, buflen
);
631 /* Look for additional arguments places after a second NUL byte */
632 for (; extra_args
< end
; extra_args
+= strlen(extra_args
) + 1) {
633 const char *arg
= extra_args
;
636 * Parse the extra arguments, adding most to 'git_protocol'
637 * which will be used to set the 'GIT_PROTOCOL' envvar in the
638 * service that will be run.
640 * If there ends up being a particular arg in the future that
641 * git-daemon needs to parse specifically (like the 'host' arg)
642 * then it can be parsed here and not added to 'git_protocol'.
645 if (git_protocol
.len
> 0)
646 strbuf_addch(&git_protocol
, ':');
647 strbuf_addstr(&git_protocol
, arg
);
651 if (git_protocol
.len
> 0) {
652 loginfo("Extended attribute \"protocol\": %s", git_protocol
.buf
);
653 strvec_pushf(env
, GIT_PROTOCOL_ENVIRONMENT
"=%s",
656 strbuf_release(&git_protocol
);
660 * Locate canonical hostname and its IP address.
662 static void lookup_hostname(struct hostinfo
*hi
)
664 if (!hi
->hostname_lookup_done
&& hi
->hostname
.len
) {
666 struct addrinfo hints
;
669 static char addrbuf
[HOST_NAME_MAX
+ 1];
671 memset(&hints
, 0, sizeof(hints
));
672 hints
.ai_flags
= AI_CANONNAME
;
674 gai
= getaddrinfo(hi
->hostname
.buf
, NULL
, &hints
, &ai
);
676 struct sockaddr_in
*sin_addr
= (void *)ai
->ai_addr
;
678 inet_ntop(AF_INET
, &sin_addr
->sin_addr
,
679 addrbuf
, sizeof(addrbuf
));
680 strbuf_addstr(&hi
->ip_address
, addrbuf
);
682 if (ai
->ai_canonname
)
683 sanitize_client(&hi
->canon_hostname
,
686 strbuf_addbuf(&hi
->canon_hostname
,
692 struct hostent
*hent
;
693 struct sockaddr_in sa
;
695 static char addrbuf
[HOST_NAME_MAX
+ 1];
697 hent
= gethostbyname(hi
->hostname
.buf
);
699 ap
= hent
->h_addr_list
;
700 memset(&sa
, 0, sizeof sa
);
701 sa
.sin_family
= hent
->h_addrtype
;
702 sa
.sin_port
= htons(0);
703 memcpy(&sa
.sin_addr
, *ap
, hent
->h_length
);
705 inet_ntop(hent
->h_addrtype
, &sa
.sin_addr
,
706 addrbuf
, sizeof(addrbuf
));
708 sanitize_client(&hi
->canon_hostname
, hent
->h_name
);
709 strbuf_addstr(&hi
->ip_address
, addrbuf
);
712 hi
->hostname_lookup_done
= 1;
716 static void hostinfo_clear(struct hostinfo
*hi
)
718 strbuf_release(&hi
->hostname
);
719 strbuf_release(&hi
->canon_hostname
);
720 strbuf_release(&hi
->ip_address
);
721 strbuf_release(&hi
->tcp_port
);
724 static void set_keep_alive(int sockfd
)
728 if (setsockopt(sockfd
, SOL_SOCKET
, SO_KEEPALIVE
, &ka
, sizeof(ka
)) < 0) {
729 if (errno
!= ENOTSOCK
)
730 logerror("unable to set SO_KEEPALIVE on socket: %s",
735 static int execute(void)
737 char *line
= packet_buffer
;
739 char *addr
= getenv("REMOTE_ADDR"), *port
= getenv("REMOTE_PORT");
740 struct hostinfo hi
= HOSTINFO_INIT
;
741 struct strvec env
= STRVEC_INIT
;
744 loginfo("Connection from %s:%s", addr
, port
);
747 alarm(init_timeout
? init_timeout
: timeout
);
748 pktlen
= packet_read(0, packet_buffer
, sizeof(packet_buffer
), 0);
752 if (len
&& line
[len
-1] == '\n')
755 /* parse additional args hidden behind a NUL byte */
757 parse_extra_args(&hi
, &env
, line
+ len
+ 1, pktlen
- len
- 1);
759 for (i
= 0; i
< ARRAY_SIZE(daemon_service
); i
++) {
760 struct daemon_service
*s
= &(daemon_service
[i
]);
763 if (skip_prefix(line
, "git-", &arg
) &&
764 skip_prefix(arg
, s
->name
, &arg
) &&
767 * Note: The directory here is probably context sensitive,
768 * and might depend on the actual service being performed.
770 int rc
= run_service(arg
, s
, &hi
, &env
);
779 logerror("Protocol error: '%s'", line
);
783 static int addrcmp(const struct sockaddr_storage
*s1
,
784 const struct sockaddr_storage
*s2
)
786 const struct sockaddr
*sa1
= (const struct sockaddr
*) s1
;
787 const struct sockaddr
*sa2
= (const struct sockaddr
*) s2
;
789 if (sa1
->sa_family
!= sa2
->sa_family
)
790 return sa1
->sa_family
- sa2
->sa_family
;
791 if (sa1
->sa_family
== AF_INET
)
792 return memcmp(&((struct sockaddr_in
*)s1
)->sin_addr
,
793 &((struct sockaddr_in
*)s2
)->sin_addr
,
794 sizeof(struct in_addr
));
796 if (sa1
->sa_family
== AF_INET6
)
797 return memcmp(&((struct sockaddr_in6
*)s1
)->sin6_addr
,
798 &((struct sockaddr_in6
*)s2
)->sin6_addr
,
799 sizeof(struct in6_addr
));
804 static int max_connections
= 32;
806 static unsigned int live_children
;
808 static struct child
{
810 struct child_process cld
;
811 struct sockaddr_storage address
;
814 static void add_child(struct child_process
*cld
, struct sockaddr
*addr
, socklen_t addrlen
)
816 struct child
*newborn
, **cradle
;
818 CALLOC_ARRAY(newborn
, 1);
820 memcpy(&newborn
->cld
, cld
, sizeof(*cld
));
821 memcpy(&newborn
->address
, addr
, addrlen
);
822 for (cradle
= &firstborn
; *cradle
; cradle
= &(*cradle
)->next
)
823 if (!addrcmp(&(*cradle
)->address
, &newborn
->address
))
825 newborn
->next
= *cradle
;
830 * This gets called if the number of connections grows
831 * past "max_connections".
833 * We kill the newest connection from a duplicate IP.
835 static void kill_some_child(void)
837 const struct child
*blanket
, *next
;
839 if (!(blanket
= firstborn
))
842 for (; (next
= blanket
->next
); blanket
= next
)
843 if (!addrcmp(&blanket
->address
, &next
->address
)) {
844 kill(blanket
->cld
.pid
, SIGTERM
);
849 static void check_dead_children(void)
854 struct child
**cradle
, *blanket
;
855 for (cradle
= &firstborn
; (blanket
= *cradle
);)
856 if ((pid
= waitpid(blanket
->cld
.pid
, &status
, WNOHANG
)) > 1) {
857 const char *dead
= "";
859 dead
= " (with error)";
860 loginfo("[%"PRIuMAX
"] Disconnected%s", (uintmax_t)pid
, dead
);
862 /* remove the child */
863 *cradle
= blanket
->next
;
865 child_process_clear(&blanket
->cld
);
868 cradle
= &blanket
->next
;
871 static struct strvec cld_argv
= STRVEC_INIT
;
872 static void handle(int incoming
, struct sockaddr
*addr
, socklen_t addrlen
)
874 struct child_process cld
= CHILD_PROCESS_INIT
;
876 if (max_connections
&& live_children
>= max_connections
) {
878 sleep(1); /* give it some time to die */
879 check_dead_children();
880 if (live_children
>= max_connections
) {
882 logerror("Too many children, dropping connection");
887 if (addr
->sa_family
== AF_INET
) {
889 struct sockaddr_in
*sin_addr
= (void *) addr
;
890 inet_ntop(addr
->sa_family
, &sin_addr
->sin_addr
, buf
, sizeof(buf
));
891 strvec_pushf(&cld
.env
, "REMOTE_ADDR=%s", buf
);
892 strvec_pushf(&cld
.env
, "REMOTE_PORT=%d",
893 ntohs(sin_addr
->sin_port
));
895 } else if (addr
->sa_family
== AF_INET6
) {
897 struct sockaddr_in6
*sin6_addr
= (void *) addr
;
898 inet_ntop(AF_INET6
, &sin6_addr
->sin6_addr
, buf
, sizeof(buf
));
899 strvec_pushf(&cld
.env
, "REMOTE_ADDR=[%s]", buf
);
900 strvec_pushf(&cld
.env
, "REMOTE_PORT=%d",
901 ntohs(sin6_addr
->sin6_port
));
905 strvec_pushv(&cld
.args
, cld_argv
.v
);
907 cld
.out
= dup(incoming
);
909 if (start_command(&cld
))
910 logerror("unable to fork");
912 add_child(&cld
, addr
, addrlen
);
915 static void child_handler(int signo UNUSED
)
918 * Otherwise empty handler because systemcalls will get interrupted
919 * upon signal receipt
920 * SysV needs the handler to be rearmed
922 signal(SIGCHLD
, child_handler
);
925 static int set_reuse_addr(int sockfd
)
931 return setsockopt(sockfd
, SOL_SOCKET
, SO_REUSEADDR
,
941 static const char *ip2str(int family
, struct sockaddr
*sin
, socklen_t len
)
944 static char ip
[INET_ADDRSTRLEN
];
946 static char ip
[INET6_ADDRSTRLEN
];
952 inet_ntop(family
, &((struct sockaddr_in6
*)sin
)->sin6_addr
, ip
, len
);
956 inet_ntop(family
, &((struct sockaddr_in
*)sin
)->sin_addr
, ip
, len
);
959 xsnprintf(ip
, sizeof(ip
), "<unknown>");
966 static int setup_named_sock(char *listen_addr
, int listen_port
, struct socketlist
*socklist
)
969 char pbuf
[NI_MAXSERV
];
970 struct addrinfo hints
, *ai0
, *ai
;
974 xsnprintf(pbuf
, sizeof(pbuf
), "%d", listen_port
);
975 memset(&hints
, 0, sizeof(hints
));
976 hints
.ai_family
= AF_UNSPEC
;
977 hints
.ai_socktype
= SOCK_STREAM
;
978 hints
.ai_protocol
= IPPROTO_TCP
;
979 hints
.ai_flags
= AI_PASSIVE
;
981 gai
= getaddrinfo(listen_addr
, pbuf
, &hints
, &ai0
);
983 logerror("getaddrinfo() for %s failed: %s", listen_addr
, gai_strerror(gai
));
987 for (ai
= ai0
; ai
; ai
= ai
->ai_next
) {
990 sockfd
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
993 if (sockfd
>= FD_SETSIZE
) {
994 logerror("Socket descriptor too large");
1000 if (ai
->ai_family
== AF_INET6
) {
1002 setsockopt(sockfd
, IPPROTO_IPV6
, IPV6_V6ONLY
,
1004 /* Note: error is not fatal */
1008 if (set_reuse_addr(sockfd
)) {
1009 logerror("Could not set SO_REUSEADDR: %s", strerror(errno
));
1014 set_keep_alive(sockfd
);
1016 if (bind(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
1017 logerror("Could not bind to %s: %s",
1018 ip2str(ai
->ai_family
, ai
->ai_addr
, ai
->ai_addrlen
),
1021 continue; /* not fatal */
1023 if (listen(sockfd
, 5) < 0) {
1024 logerror("Could not listen to %s: %s",
1025 ip2str(ai
->ai_family
, ai
->ai_addr
, ai
->ai_addrlen
),
1028 continue; /* not fatal */
1031 flags
= fcntl(sockfd
, F_GETFD
, 0);
1033 fcntl(sockfd
, F_SETFD
, flags
| FD_CLOEXEC
);
1035 ALLOC_GROW(socklist
->list
, socklist
->nr
+ 1, socklist
->alloc
);
1036 socklist
->list
[socklist
->nr
++] = sockfd
;
1047 static int setup_named_sock(char *listen_addr
, int listen_port
, struct socketlist
*socklist
)
1049 struct sockaddr_in sin
;
1053 memset(&sin
, 0, sizeof sin
);
1054 sin
.sin_family
= AF_INET
;
1055 sin
.sin_port
= htons(listen_port
);
1058 /* Well, host better be an IP address here. */
1059 if (inet_pton(AF_INET
, listen_addr
, &sin
.sin_addr
.s_addr
) <= 0)
1062 sin
.sin_addr
.s_addr
= htonl(INADDR_ANY
);
1065 sockfd
= socket(AF_INET
, SOCK_STREAM
, 0);
1069 if (set_reuse_addr(sockfd
)) {
1070 logerror("Could not set SO_REUSEADDR: %s", strerror(errno
));
1075 set_keep_alive(sockfd
);
1077 if ( bind(sockfd
, (struct sockaddr
*)&sin
, sizeof sin
) < 0 ) {
1078 logerror("Could not bind to %s: %s",
1079 ip2str(AF_INET
, (struct sockaddr
*)&sin
, sizeof(sin
)),
1085 if (listen(sockfd
, 5) < 0) {
1086 logerror("Could not listen to %s: %s",
1087 ip2str(AF_INET
, (struct sockaddr
*)&sin
, sizeof(sin
)),
1093 flags
= fcntl(sockfd
, F_GETFD
, 0);
1095 fcntl(sockfd
, F_SETFD
, flags
| FD_CLOEXEC
);
1097 ALLOC_GROW(socklist
->list
, socklist
->nr
+ 1, socklist
->alloc
);
1098 socklist
->list
[socklist
->nr
++] = sockfd
;
1104 static void socksetup(struct string_list
*listen_addr
, int listen_port
, struct socketlist
*socklist
)
1106 if (!listen_addr
->nr
)
1107 setup_named_sock(NULL
, listen_port
, socklist
);
1110 for (i
= 0; i
< listen_addr
->nr
; i
++) {
1111 socknum
= setup_named_sock(listen_addr
->items
[i
].string
,
1112 listen_port
, socklist
);
1115 logerror("unable to allocate any listen sockets for host %s on port %u",
1116 listen_addr
->items
[i
].string
, listen_port
);
1121 static int service_loop(struct socketlist
*socklist
)
1126 CALLOC_ARRAY(pfd
, socklist
->nr
);
1128 for (i
= 0; i
< socklist
->nr
; i
++) {
1129 pfd
[i
].fd
= socklist
->list
[i
];
1130 pfd
[i
].events
= POLLIN
;
1133 signal(SIGCHLD
, child_handler
);
1138 check_dead_children();
1140 if (poll(pfd
, socklist
->nr
, -1) < 0) {
1141 if (errno
!= EINTR
) {
1142 logerror("Poll failed, resuming: %s",
1149 for (i
= 0; i
< socklist
->nr
; i
++) {
1150 if (pfd
[i
].revents
& POLLIN
) {
1153 struct sockaddr_in sai
;
1155 struct sockaddr_in6 sai6
;
1158 socklen_t sslen
= sizeof(ss
);
1159 int incoming
= accept(pfd
[i
].fd
, &ss
.sa
, &sslen
);
1167 die_errno("accept returned");
1170 handle(incoming
, &ss
.sa
, sslen
);
1176 #ifdef NO_POSIX_GOODIES
1180 static void drop_privileges(struct credentials
*cred UNUSED
)
1185 static struct credentials
*prepare_credentials(const char *user_name UNUSED
,
1186 const char *group_name UNUSED
)
1188 die("--user not supported on this platform");
1193 struct credentials
{
1194 struct passwd
*pass
;
1198 static void drop_privileges(struct credentials
*cred
)
1200 if (cred
&& (initgroups(cred
->pass
->pw_name
, cred
->gid
) ||
1201 setgid (cred
->gid
) || setuid(cred
->pass
->pw_uid
)))
1202 die("cannot drop privileges");
1205 static struct credentials
*prepare_credentials(const char *user_name
,
1206 const char *group_name
)
1208 static struct credentials c
;
1210 c
.pass
= getpwnam(user_name
);
1212 die("user not found - %s", user_name
);
1215 c
.gid
= c
.pass
->pw_gid
;
1217 struct group
*group
= getgrnam(group_name
);
1219 die("group not found - %s", group_name
);
1221 c
.gid
= group
->gr_gid
;
1228 static int serve(struct string_list
*listen_addr
, int listen_port
,
1229 struct credentials
*cred
)
1231 struct socketlist socklist
= { NULL
, 0, 0 };
1233 socksetup(listen_addr
, listen_port
, &socklist
);
1234 if (socklist
.nr
== 0)
1235 die("unable to allocate any listen sockets on port %u",
1238 drop_privileges(cred
);
1240 loginfo("Ready to rumble");
1242 return service_loop(&socklist
);
1245 int cmd_main(int argc
, const char **argv
)
1247 int listen_port
= 0;
1248 struct string_list listen_addr
= STRING_LIST_INIT_DUP
;
1249 int serve_mode
= 0, inetd_mode
= 0;
1250 const char *pid_file
= NULL
, *user_name
= NULL
, *group_name
= NULL
;
1252 struct credentials
*cred
= NULL
;
1256 for (i
= 1; i
< argc
; i
++) {
1257 const char *arg
= argv
[i
];
1260 if (skip_prefix(arg
, "--listen=", &v
)) {
1261 string_list_append_nodup(&listen_addr
, xstrdup_tolower(v
));
1264 if (skip_prefix(arg
, "--port=", &v
)) {
1267 n
= strtoul(v
, &end
, 0);
1273 if (!strcmp(arg
, "--serve")) {
1277 if (!strcmp(arg
, "--inetd")) {
1281 if (!strcmp(arg
, "--verbose")) {
1285 if (!strcmp(arg
, "--syslog")) {
1286 log_destination
= LOG_DESTINATION_SYSLOG
;
1289 if (skip_prefix(arg
, "--log-destination=", &v
)) {
1290 if (!strcmp(v
, "syslog")) {
1291 log_destination
= LOG_DESTINATION_SYSLOG
;
1293 } else if (!strcmp(v
, "stderr")) {
1294 log_destination
= LOG_DESTINATION_STDERR
;
1296 } else if (!strcmp(v
, "none")) {
1297 log_destination
= LOG_DESTINATION_NONE
;
1300 die("unknown log destination '%s'", v
);
1302 if (!strcmp(arg
, "--export-all")) {
1303 export_all_trees
= 1;
1306 if (skip_prefix(arg
, "--access-hook=", &v
)) {
1310 if (skip_prefix(arg
, "--timeout=", &v
)) {
1314 if (skip_prefix(arg
, "--init-timeout=", &v
)) {
1315 init_timeout
= atoi(v
);
1318 if (skip_prefix(arg
, "--max-connections=", &v
)) {
1319 max_connections
= atoi(v
);
1320 if (max_connections
< 0)
1321 max_connections
= 0; /* unlimited */
1324 if (!strcmp(arg
, "--strict-paths")) {
1328 if (skip_prefix(arg
, "--base-path=", &v
)) {
1332 if (!strcmp(arg
, "--base-path-relaxed")) {
1333 base_path_relaxed
= 1;
1336 if (skip_prefix(arg
, "--interpolated-path=", &v
)) {
1337 interpolated_path
= v
;
1340 if (!strcmp(arg
, "--reuseaddr")) {
1344 if (!strcmp(arg
, "--user-path")) {
1348 if (skip_prefix(arg
, "--user-path=", &v
)) {
1352 if (skip_prefix(arg
, "--pid-file=", &v
)) {
1356 if (!strcmp(arg
, "--detach")) {
1360 if (skip_prefix(arg
, "--user=", &v
)) {
1364 if (skip_prefix(arg
, "--group=", &v
)) {
1368 if (skip_prefix(arg
, "--enable=", &v
)) {
1369 enable_service(v
, 1);
1372 if (skip_prefix(arg
, "--disable=", &v
)) {
1373 enable_service(v
, 0);
1376 if (skip_prefix(arg
, "--allow-override=", &v
)) {
1377 make_service_overridable(v
, 1);
1380 if (skip_prefix(arg
, "--forbid-override=", &v
)) {
1381 make_service_overridable(v
, 0);
1384 if (!strcmp(arg
, "--informative-errors")) {
1385 informative_errors
= 1;
1388 if (!strcmp(arg
, "--no-informative-errors")) {
1389 informative_errors
= 0;
1392 if (!strcmp(arg
, "--")) {
1393 ok_paths
= &argv
[i
+1];
1395 } else if (arg
[0] != '-') {
1396 ok_paths
= &argv
[i
];
1400 usage(daemon_usage
);
1403 if (log_destination
== LOG_DESTINATION_UNSET
) {
1404 if (inetd_mode
|| detach
)
1405 log_destination
= LOG_DESTINATION_SYSLOG
;
1407 log_destination
= LOG_DESTINATION_STDERR
;
1410 if (log_destination
== LOG_DESTINATION_SYSLOG
) {
1411 openlog("git-daemon", LOG_PID
, LOG_DAEMON
);
1412 set_die_routine(daemon_die
);
1414 /* avoid splitting a message in the middle */
1415 setvbuf(stderr
, NULL
, _IOFBF
, 4096);
1417 if (inetd_mode
&& (detach
|| group_name
|| user_name
))
1418 die("--detach, --user and --group are incompatible with --inetd");
1420 if (inetd_mode
&& (listen_port
|| (listen_addr
.nr
> 0)))
1421 die("--listen= and --port= are incompatible with --inetd");
1422 else if (listen_port
== 0)
1423 listen_port
= DEFAULT_GIT_PORT
;
1425 if (group_name
&& !user_name
)
1426 die("--group supplied without --user");
1429 cred
= prepare_credentials(user_name
, group_name
);
1431 if (strict_paths
&& (!ok_paths
|| !*ok_paths
))
1432 die("option --strict-paths requires '<directory>' arguments");
1434 if (base_path
&& !is_directory(base_path
))
1435 die("base-path '%s' does not exist or is not a directory",
1438 if (log_destination
!= LOG_DESTINATION_STDERR
) {
1439 if (!freopen("/dev/null", "w", stderr
))
1440 die_errno("failed to redirect stderr to /dev/null");
1443 if (inetd_mode
|| serve_mode
) {
1448 die("--detach not supported on this platform");
1452 write_file(pid_file
, "%"PRIuMAX
, (uintmax_t) getpid());
1454 /* prepare argv for serving-processes */
1455 strvec_push(&cld_argv
, argv
[0]); /* git-daemon */
1456 strvec_push(&cld_argv
, "--serve");
1457 for (i
= 1; i
< argc
; ++i
)
1458 strvec_push(&cld_argv
, argv
[i
]);
1460 ret
= serve(&listen_addr
, listen_port
, cred
);
1463 string_list_clear(&listen_addr
, 0);