4 #include "interpolate.h"
9 #define HOST_NAME_MAX 256
16 static int log_syslog
;
19 static int child_handler_pipe
[2];
21 static const char daemon_usage
[] =
22 "git daemon [--verbose] [--syslog] [--export-all]\n"
23 " [--timeout=n] [--init-timeout=n] [--strict-paths]\n"
24 " [--base-path=path] [--base-path-relaxed]\n"
25 " [--user-path | --user-path=path]\n"
26 " [--interpolated-path=path]\n"
27 " [--reuseaddr] [--detach] [--pid-file=file]\n"
28 " [--[enable|disable|allow-override|forbid-override]=service]\n"
29 " [--inetd | [--listen=host_or_ipaddr] [--port=n]\n"
30 " [--user=user [--group=group]]\n"
33 /* List of acceptable pathname prefixes */
34 static char **ok_paths
;
35 static int strict_paths
;
37 /* If this is set, git-daemon-export-ok is not required */
38 static int export_all_trees
;
40 /* Take all paths relative to this one if non-NULL */
41 static char *base_path
;
42 static char *interpolated_path
;
43 static int base_path_relaxed
;
45 /* Flag indicating client sent extra args. */
46 static int saw_extended_args
;
48 /* If defined, ~user notation is allowed and the string is inserted
49 * after ~user/. E.g. a request to git://host/~alice/frotz would
50 * go to /home/alice/pub_git/frotz with --user-path=pub_git.
52 static const char *user_path
;
54 /* Timeout, and initial timeout */
55 static unsigned int timeout
;
56 static unsigned int init_timeout
;
59 * Static table for now. Ugh.
60 * Feel free to make dynamic as needed.
62 #define INTERP_SLOT_HOST (0)
63 #define INTERP_SLOT_CANON_HOST (1)
64 #define INTERP_SLOT_IP (2)
65 #define INTERP_SLOT_PORT (3)
66 #define INTERP_SLOT_DIR (4)
67 #define INTERP_SLOT_PERCENT (5)
69 static struct interp interp_table
[] = {
79 static void logreport(int priority
, const char *err
, va_list params
)
81 /* We should do a single write so that it is atomic and output
82 * of several processes do not get intermingled. */
87 /* sizeof(buf) should be big enough for "[pid] \n" */
88 buflen
= snprintf(buf
, sizeof(buf
), "[%ld] ", (long) getpid());
90 maxlen
= sizeof(buf
) - buflen
- 1; /* -1 for our own LF */
91 msglen
= vsnprintf(buf
+ buflen
, maxlen
, err
, params
);
94 syslog(priority
, "%s", buf
);
98 /* maxlen counted our own LF but also counts space given to
99 * vsnprintf for the terminating NUL. We want to make sure that
100 * we have space for our own LF and NUL after the "meat" of the
101 * message, so truncate it at maxlen - 1.
103 if (msglen
> maxlen
- 1)
106 msglen
= 0; /* Protect against weird return values. */
109 buf
[buflen
++] = '\n';
112 write_in_full(2, buf
, buflen
);
115 static void logerror(const char *err
, ...)
118 va_start(params
, err
);
119 logreport(LOG_ERR
, err
, params
);
123 static void loginfo(const char *err
, ...)
128 va_start(params
, err
);
129 logreport(LOG_INFO
, err
, params
);
133 static void NORETURN
daemon_die(const char *err
, va_list params
)
135 logreport(LOG_ERR
, err
, params
);
139 static int avoid_alias(char *p
)
144 * This resurrects the belts and suspenders paranoia check by HPA
145 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
146 * does not do getcwd() based path canonicalizations.
148 * sl becomes true immediately after seeing '/' and continues to
149 * be true as long as dots continue after that without intervening
152 if (!p
|| (*p
!= '/' && *p
!= '~'))
162 else if (ch
== '/') {
164 /* reject //, /./ and /../ */
169 if (0 < ndot
&& ndot
< 3)
170 /* reject /.$ and /..$ */
179 else if (ch
== '/') {
186 static char *path_ok(struct interp
*itable
)
188 static char rpath
[PATH_MAX
];
189 static char interp_path
[PATH_MAX
];
190 int retried_path
= 0;
194 dir
= itable
[INTERP_SLOT_DIR
].value
;
196 if (avoid_alias(dir
)) {
197 logerror("'%s': aliased", dir
);
203 logerror("'%s': User-path not allowed", dir
);
207 /* Got either "~alice" or "~alice/foo";
208 * rewrite them to "~alice/%s" or
211 int namlen
, restlen
= strlen(dir
);
212 char *slash
= strchr(dir
, '/');
214 slash
= dir
+ restlen
;
215 namlen
= slash
- dir
;
217 loginfo("userpath <%s>, request <%s>, namlen %d, restlen %d, slash <%s>", user_path
, dir
, namlen
, restlen
, slash
);
218 snprintf(rpath
, PATH_MAX
, "%.*s/%s%.*s",
219 namlen
, dir
, user_path
, restlen
, slash
);
223 else if (interpolated_path
&& saw_extended_args
) {
225 /* Allow only absolute */
226 logerror("'%s': Non-absolute path denied (interpolated-path active)", dir
);
230 interpolate(interp_path
, PATH_MAX
, interpolated_path
,
231 interp_table
, ARRAY_SIZE(interp_table
));
232 loginfo("Interpolated dir '%s'", interp_path
);
236 else if (base_path
) {
238 /* Allow only absolute */
239 logerror("'%s': Non-absolute path denied (base-path active)", dir
);
242 snprintf(rpath
, PATH_MAX
, "%s%s", base_path
, dir
);
247 path
= enter_repo(dir
, strict_paths
);
252 * if we fail and base_path_relaxed is enabled, try without
253 * prefixing the base path
255 if (base_path
&& base_path_relaxed
&& !retried_path
) {
256 dir
= itable
[INTERP_SLOT_DIR
].value
;
264 logerror("'%s': unable to chdir or not a git archive", dir
);
268 if ( ok_paths
&& *ok_paths
) {
270 int pathlen
= strlen(path
);
272 /* The validation is done on the paths after enter_repo
273 * appends optional {.git,.git/.git} and friends, but
274 * it does not use getcwd(). So if your /pub is
275 * a symlink to /mnt/pub, you can whitelist /pub and
276 * do not have to say /mnt/pub.
279 for ( pp
= ok_paths
; *pp
; pp
++ ) {
280 int len
= strlen(*pp
);
281 if (len
<= pathlen
&&
282 !memcmp(*pp
, path
, len
) &&
283 (path
[len
] == '\0' ||
284 (!strict_paths
&& path
[len
] == '/')))
289 /* be backwards compatible */
294 logerror("'%s': not in whitelist", path
);
295 return NULL
; /* Fallthrough. Deny by default */
298 typedef int (*daemon_service_fn
)(void);
299 struct daemon_service
{
301 const char *config_name
;
302 daemon_service_fn fn
;
307 static struct daemon_service
*service_looking_at
;
308 static int service_enabled
;
310 static int git_daemon_config(const char *var
, const char *value
, void *cb
)
312 if (!prefixcmp(var
, "daemon.") &&
313 !strcmp(var
+ 7, service_looking_at
->config_name
)) {
314 service_enabled
= git_config_bool(var
, value
);
318 /* we are not interested in parsing any other configuration here */
322 static int run_service(struct interp
*itable
, struct daemon_service
*service
)
325 int enabled
= service
->enabled
;
327 loginfo("Request %s for '%s'",
329 itable
[INTERP_SLOT_DIR
].value
);
331 if (!enabled
&& !service
->overridable
) {
332 logerror("'%s': service not enabled.", service
->name
);
337 if (!(path
= path_ok(itable
)))
341 * Security on the cheap.
343 * We want a readable HEAD, usable "objects" directory, and
344 * a "git-daemon-export-ok" flag that says that the other side
345 * is ok with us doing this.
347 * path_ok() uses enter_repo() and does whitelist checking.
348 * We only need to make sure the repository is exported.
351 if (!export_all_trees
&& access("git-daemon-export-ok", F_OK
)) {
352 logerror("'%s': repository not exported.", path
);
357 if (service
->overridable
) {
358 service_looking_at
= service
;
359 service_enabled
= -1;
360 git_config(git_daemon_config
, NULL
);
361 if (0 <= service_enabled
)
362 enabled
= service_enabled
;
365 logerror("'%s': service not enabled for '%s'",
366 service
->name
, path
);
372 * We'll ignore SIGTERM from now on, we have a
375 signal(SIGTERM
, SIG_IGN
);
377 return service
->fn();
380 static int upload_pack(void)
382 /* Timeout as string */
383 char timeout_buf
[64];
385 snprintf(timeout_buf
, sizeof timeout_buf
, "--timeout=%u", timeout
);
387 /* git-upload-pack only ever reads stuff, so this is safe */
388 execl_git_cmd("upload-pack", "--strict", timeout_buf
, ".", NULL
);
392 static int upload_archive(void)
394 execl_git_cmd("upload-archive", ".", NULL
);
398 static int receive_pack(void)
400 execl_git_cmd("receive-pack", ".", NULL
);
404 static struct daemon_service daemon_service
[] = {
405 { "upload-archive", "uploadarch", upload_archive
, 0, 1 },
406 { "upload-pack", "uploadpack", upload_pack
, 1, 1 },
407 { "receive-pack", "receivepack", receive_pack
, 0, 1 },
410 static void enable_service(const char *name
, int ena
)
413 for (i
= 0; i
< ARRAY_SIZE(daemon_service
); i
++) {
414 if (!strcmp(daemon_service
[i
].name
, name
)) {
415 daemon_service
[i
].enabled
= ena
;
419 die("No such service %s", name
);
422 static void make_service_overridable(const char *name
, int ena
)
425 for (i
= 0; i
< ARRAY_SIZE(daemon_service
); i
++) {
426 if (!strcmp(daemon_service
[i
].name
, name
)) {
427 daemon_service
[i
].overridable
= ena
;
431 die("No such service %s", name
);
435 * Separate the "extra args" information as supplied by the client connection.
436 * Any resulting data is squirreled away in the given interpolation table.
438 static void parse_extra_args(struct interp
*table
, char *extra_args
, int buflen
)
442 char *end
= extra_args
+ buflen
;
444 while (extra_args
< end
&& *extra_args
) {
445 saw_extended_args
= 1;
446 if (strncasecmp("host=", extra_args
, 5) == 0) {
447 val
= extra_args
+ 5;
448 vallen
= strlen(val
) + 1;
450 /* Split <host>:<port> at colon. */
452 char *port
= strrchr(host
, ':');
456 interp_set_entry(table
, INTERP_SLOT_PORT
, port
);
458 interp_set_entry(table
, INTERP_SLOT_HOST
, host
);
461 /* On to the next one */
462 extra_args
= val
+ vallen
;
467 static void fill_in_extra_table_entries(struct interp
*itable
)
472 * Replace literal host with lowercase-ized hostname.
474 hp
= interp_table
[INTERP_SLOT_HOST
].value
;
481 * Locate canonical hostname and its IP address.
485 struct addrinfo hints
;
486 struct addrinfo
*ai
, *ai0
;
488 static char addrbuf
[HOST_NAME_MAX
+ 1];
490 memset(&hints
, 0, sizeof(hints
));
491 hints
.ai_flags
= AI_CANONNAME
;
493 gai
= getaddrinfo(interp_table
[INTERP_SLOT_HOST
].value
, 0, &hints
, &ai0
);
495 for (ai
= ai0
; ai
; ai
= ai
->ai_next
) {
496 struct sockaddr_in
*sin_addr
= (void *)ai
->ai_addr
;
498 inet_ntop(AF_INET
, &sin_addr
->sin_addr
,
499 addrbuf
, sizeof(addrbuf
));
500 interp_set_entry(interp_table
,
501 INTERP_SLOT_CANON_HOST
, ai
->ai_canonname
);
502 interp_set_entry(interp_table
,
503 INTERP_SLOT_IP
, addrbuf
);
511 struct hostent
*hent
;
512 struct sockaddr_in sa
;
514 static char addrbuf
[HOST_NAME_MAX
+ 1];
516 hent
= gethostbyname(interp_table
[INTERP_SLOT_HOST
].value
);
518 ap
= hent
->h_addr_list
;
519 memset(&sa
, 0, sizeof sa
);
520 sa
.sin_family
= hent
->h_addrtype
;
521 sa
.sin_port
= htons(0);
522 memcpy(&sa
.sin_addr
, *ap
, hent
->h_length
);
524 inet_ntop(hent
->h_addrtype
, &sa
.sin_addr
,
525 addrbuf
, sizeof(addrbuf
));
527 interp_set_entry(interp_table
, INTERP_SLOT_CANON_HOST
, hent
->h_name
);
528 interp_set_entry(interp_table
, INTERP_SLOT_IP
, addrbuf
);
534 static int execute(struct sockaddr
*addr
)
536 static char line
[1000];
540 char addrbuf
[256] = "";
543 if (addr
->sa_family
== AF_INET
) {
544 struct sockaddr_in
*sin_addr
= (void *) addr
;
545 inet_ntop(addr
->sa_family
, &sin_addr
->sin_addr
, addrbuf
, sizeof(addrbuf
));
546 port
= ntohs(sin_addr
->sin_port
);
548 } else if (addr
&& addr
->sa_family
== AF_INET6
) {
549 struct sockaddr_in6
*sin6_addr
= (void *) addr
;
552 *buf
++ = '['; *buf
= '\0'; /* stpcpy() is cool */
553 inet_ntop(AF_INET6
, &sin6_addr
->sin6_addr
, buf
, sizeof(addrbuf
) - 1);
556 port
= ntohs(sin6_addr
->sin6_port
);
559 loginfo("Connection from %s:%d", addrbuf
, port
);
562 alarm(init_timeout
? init_timeout
: timeout
);
563 pktlen
= packet_read_line(0, line
, sizeof(line
));
568 loginfo("Extended attributes (%d bytes) exist <%.*s>",
570 (int) pktlen
- len
, line
+ len
+ 1);
571 if (len
&& line
[len
-1] == '\n') {
577 * Initialize the path interpolation table for this connection.
579 interp_clear_table(interp_table
, ARRAY_SIZE(interp_table
));
580 interp_set_entry(interp_table
, INTERP_SLOT_PERCENT
, "%");
583 parse_extra_args(interp_table
, line
+ len
+ 1, pktlen
- len
- 1);
584 fill_in_extra_table_entries(interp_table
);
587 for (i
= 0; i
< ARRAY_SIZE(daemon_service
); i
++) {
588 struct daemon_service
*s
= &(daemon_service
[i
]);
589 int namelen
= strlen(s
->name
);
590 if (!prefixcmp(line
, "git-") &&
591 !strncmp(s
->name
, line
+ 4, namelen
) &&
592 line
[namelen
+ 4] == ' ') {
594 * Note: The directory here is probably context sensitive,
595 * and might depend on the actual service being performed.
597 interp_set_entry(interp_table
,
598 INTERP_SLOT_DIR
, line
+ namelen
+ 5);
599 return run_service(interp_table
, s
);
603 logerror("Protocol error: '%s'", line
);
609 * We count spawned/reaped separately, just to avoid any
610 * races when updating them from signals. The SIGCHLD handler
611 * will only update children_reaped, and the fork logic will
612 * only update children_spawned.
614 * MAX_CHILDREN should be a power-of-two to make the modulus
615 * operation cheap. It should also be at least twice
616 * the maximum number of connections we will ever allow.
618 #define MAX_CHILDREN 128
620 static int max_connections
= 25;
622 /* These are updated by the signal handler */
623 static volatile unsigned int children_reaped
;
624 static pid_t dead_child
[MAX_CHILDREN
];
626 /* These are updated by the main loop */
627 static unsigned int children_spawned
;
628 static unsigned int children_deleted
;
630 static struct child
{
633 struct sockaddr_storage address
;
634 } live_child
[MAX_CHILDREN
];
636 static void add_child(int idx
, pid_t pid
, struct sockaddr
*addr
, int addrlen
)
638 live_child
[idx
].pid
= pid
;
639 live_child
[idx
].addrlen
= addrlen
;
640 memcpy(&live_child
[idx
].address
, addr
, addrlen
);
644 * Walk from "deleted" to "spawned", and remove child "pid".
646 * We move everything up by one, since the new "deleted" will
649 static void remove_child(pid_t pid
, unsigned deleted
, unsigned spawned
)
653 deleted
%= MAX_CHILDREN
;
654 spawned
%= MAX_CHILDREN
;
655 if (live_child
[deleted
].pid
== pid
) {
656 live_child
[deleted
].pid
= -1;
659 n
= live_child
[deleted
];
662 deleted
= (deleted
+ 1) % MAX_CHILDREN
;
663 if (deleted
== spawned
)
664 die("could not find dead child %d\n", pid
);
665 m
= live_child
[deleted
];
666 live_child
[deleted
] = n
;
674 * This gets called if the number of connections grows
675 * past "max_connections".
677 * We _should_ start off by searching for connections
678 * from the same IP, and if there is some address wth
679 * multiple connections, we should kill that first.
681 * As it is, we just "randomly" kill 25% of the connections,
682 * and our pseudo-random generator sucks too. I have no
685 * Really, this is just a place-holder for a _real_ algorithm.
687 static void kill_some_children(int signo
, unsigned start
, unsigned stop
)
689 start
%= MAX_CHILDREN
;
690 stop
%= MAX_CHILDREN
;
691 while (start
!= stop
) {
693 kill(live_child
[start
].pid
, signo
);
694 start
= (start
+ 1) % MAX_CHILDREN
;
698 static void check_dead_children(void)
700 unsigned spawned
, reaped
, deleted
;
702 spawned
= children_spawned
;
703 reaped
= children_reaped
;
704 deleted
= children_deleted
;
706 while (deleted
< reaped
) {
707 pid_t pid
= dead_child
[deleted
% MAX_CHILDREN
];
708 const char *dead
= pid
< 0 ? " (with error)" : "";
713 /* XXX: Custom logging, since we don't wanna getpid() */
716 syslog(LOG_INFO
, "[%d] Disconnected%s",
719 fprintf(stderr
, "[%d] Disconnected%s\n",
722 remove_child(pid
, deleted
, spawned
);
725 children_deleted
= deleted
;
728 static void check_max_connections(void)
732 unsigned spawned
, deleted
;
734 check_dead_children();
736 spawned
= children_spawned
;
737 deleted
= children_deleted
;
739 active
= spawned
- deleted
;
740 if (active
<= max_connections
)
743 /* Kill some unstarted connections with SIGTERM */
744 kill_some_children(SIGTERM
, deleted
, spawned
);
745 if (active
<= max_connections
<< 1)
748 /* If the SIGTERM thing isn't helping use SIGKILL */
749 kill_some_children(SIGKILL
, deleted
, spawned
);
754 static void handle(int incoming
, struct sockaddr
*addr
, int addrlen
)
765 idx
= children_spawned
% MAX_CHILDREN
;
767 add_child(idx
, pid
, addr
, addrlen
);
769 check_max_connections();
780 static void child_handler(int signo
)
784 pid_t pid
= waitpid(-1, &status
, WNOHANG
);
787 unsigned reaped
= children_reaped
;
788 if (!WIFEXITED(status
) || WEXITSTATUS(status
) > 0)
790 dead_child
[reaped
% MAX_CHILDREN
] = pid
;
791 children_reaped
= reaped
+ 1;
792 write(child_handler_pipe
[1], &status
, 1);
797 signal(SIGCHLD
, child_handler
);
800 static int set_reuse_addr(int sockfd
)
806 return setsockopt(sockfd
, SOL_SOCKET
, SO_REUSEADDR
,
812 static int socksetup(char *listen_addr
, int listen_port
, int **socklist_p
)
814 int socknum
= 0, *socklist
= NULL
;
816 char pbuf
[NI_MAXSERV
];
817 struct addrinfo hints
, *ai0
, *ai
;
821 sprintf(pbuf
, "%d", listen_port
);
822 memset(&hints
, 0, sizeof(hints
));
823 hints
.ai_family
= AF_UNSPEC
;
824 hints
.ai_socktype
= SOCK_STREAM
;
825 hints
.ai_protocol
= IPPROTO_TCP
;
826 hints
.ai_flags
= AI_PASSIVE
;
828 gai
= getaddrinfo(listen_addr
, pbuf
, &hints
, &ai0
);
830 die("getaddrinfo() failed: %s\n", gai_strerror(gai
));
832 for (ai
= ai0
; ai
; ai
= ai
->ai_next
) {
835 sockfd
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
838 if (sockfd
>= FD_SETSIZE
) {
839 error("too large socket descriptor.");
845 if (ai
->ai_family
== AF_INET6
) {
847 setsockopt(sockfd
, IPPROTO_IPV6
, IPV6_V6ONLY
,
849 /* Note: error is not fatal */
853 if (set_reuse_addr(sockfd
)) {
858 if (bind(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
860 continue; /* not fatal */
862 if (listen(sockfd
, 5) < 0) {
864 continue; /* not fatal */
867 flags
= fcntl(sockfd
, F_GETFD
, 0);
869 fcntl(sockfd
, F_SETFD
, flags
| FD_CLOEXEC
);
871 socklist
= xrealloc(socklist
, sizeof(int) * (socknum
+ 1));
872 socklist
[socknum
++] = sockfd
;
880 *socklist_p
= socklist
;
886 static int socksetup(char *listen_addr
, int listen_port
, int **socklist_p
)
888 struct sockaddr_in sin
;
892 memset(&sin
, 0, sizeof sin
);
893 sin
.sin_family
= AF_INET
;
894 sin
.sin_port
= htons(listen_port
);
897 /* Well, host better be an IP address here. */
898 if (inet_pton(AF_INET
, listen_addr
, &sin
.sin_addr
.s_addr
) <= 0)
901 sin
.sin_addr
.s_addr
= htonl(INADDR_ANY
);
904 sockfd
= socket(AF_INET
, SOCK_STREAM
, 0);
908 if (set_reuse_addr(sockfd
)) {
913 if ( bind(sockfd
, (struct sockaddr
*)&sin
, sizeof sin
) < 0 ) {
918 if (listen(sockfd
, 5) < 0) {
923 flags
= fcntl(sockfd
, F_GETFD
, 0);
925 fcntl(sockfd
, F_SETFD
, flags
| FD_CLOEXEC
);
927 *socklist_p
= xmalloc(sizeof(int));
928 **socklist_p
= sockfd
;
934 static int service_loop(int socknum
, int *socklist
)
939 if (pipe(child_handler_pipe
) < 0)
940 die ("Could not set up pipe for child handler");
942 pfd
= xcalloc(socknum
+ 1, sizeof(struct pollfd
));
944 for (i
= 0; i
< socknum
; i
++) {
945 pfd
[i
].fd
= socklist
[i
];
946 pfd
[i
].events
= POLLIN
;
948 pfd
[socknum
].fd
= child_handler_pipe
[0];
949 pfd
[socknum
].events
= POLLIN
;
951 signal(SIGCHLD
, child_handler
);
956 if (poll(pfd
, socknum
+ 1, -1) < 0) {
957 if (errno
!= EINTR
) {
958 error("poll failed, resuming: %s",
964 if (pfd
[socknum
].revents
& POLLIN
) {
965 read(child_handler_pipe
[0], &i
, 1);
966 check_dead_children();
969 for (i
= 0; i
< socknum
; i
++) {
970 if (pfd
[i
].revents
& POLLIN
) {
971 struct sockaddr_storage ss
;
972 unsigned int sslen
= sizeof(ss
);
973 int incoming
= accept(pfd
[i
].fd
, (struct sockaddr
*)&ss
, &sslen
);
981 die("accept returned %s", strerror(errno
));
984 handle(incoming
, (struct sockaddr
*)&ss
, sslen
);
990 /* if any standard file descriptor is missing open it to /dev/null */
991 static void sanitize_stdfds(void)
993 int fd
= open("/dev/null", O_RDWR
, 0);
994 while (fd
!= -1 && fd
< 2)
997 die("open /dev/null or dup failed: %s", strerror(errno
));
1002 static void daemonize(void)
1008 die("fork failed: %s", strerror(errno
));
1013 die("setsid failed: %s", strerror(errno
));
1020 static void store_pid(const char *path
)
1022 FILE *f
= fopen(path
, "w");
1024 die("cannot open pid file %s: %s", path
, strerror(errno
));
1025 if (fprintf(f
, "%d\n", getpid()) < 0 || fclose(f
) != 0)
1026 die("failed to write pid file %s: %s", path
, strerror(errno
));
1029 static int serve(char *listen_addr
, int listen_port
, struct passwd
*pass
, gid_t gid
)
1031 int socknum
, *socklist
;
1033 socknum
= socksetup(listen_addr
, listen_port
, &socklist
);
1035 die("unable to allocate any listen sockets on host %s port %u",
1036 listen_addr
, listen_port
);
1039 (initgroups(pass
->pw_name
, gid
) || setgid (gid
) ||
1040 setuid(pass
->pw_uid
)))
1041 die("cannot drop privileges");
1043 return service_loop(socknum
, socklist
);
1046 int main(int argc
, char **argv
)
1048 int listen_port
= 0;
1049 char *listen_addr
= NULL
;
1051 const char *pid_file
= NULL
, *user_name
= NULL
, *group_name
= NULL
;
1053 struct passwd
*pass
= NULL
;
1054 struct group
*group
;
1058 /* Without this we cannot rely on waitpid() to tell
1059 * what happened to our children.
1061 signal(SIGCHLD
, SIG_DFL
);
1063 for (i
= 1; i
< argc
; i
++) {
1064 char *arg
= argv
[i
];
1066 if (!prefixcmp(arg
, "--listen=")) {
1068 char *ph
= listen_addr
= xmalloc(strlen(arg
+ 9) + 1);
1070 *ph
++ = tolower(*p
++);
1074 if (!prefixcmp(arg
, "--port=")) {
1077 n
= strtoul(arg
+7, &end
, 0);
1078 if (arg
[7] && !*end
) {
1083 if (!strcmp(arg
, "--inetd")) {
1088 if (!strcmp(arg
, "--verbose")) {
1092 if (!strcmp(arg
, "--syslog")) {
1096 if (!strcmp(arg
, "--export-all")) {
1097 export_all_trees
= 1;
1100 if (!prefixcmp(arg
, "--timeout=")) {
1101 timeout
= atoi(arg
+10);
1104 if (!prefixcmp(arg
, "--init-timeout=")) {
1105 init_timeout
= atoi(arg
+15);
1108 if (!strcmp(arg
, "--strict-paths")) {
1112 if (!prefixcmp(arg
, "--base-path=")) {
1116 if (!strcmp(arg
, "--base-path-relaxed")) {
1117 base_path_relaxed
= 1;
1120 if (!prefixcmp(arg
, "--interpolated-path=")) {
1121 interpolated_path
= arg
+20;
1124 if (!strcmp(arg
, "--reuseaddr")) {
1128 if (!strcmp(arg
, "--user-path")) {
1132 if (!prefixcmp(arg
, "--user-path=")) {
1133 user_path
= arg
+ 12;
1136 if (!prefixcmp(arg
, "--pid-file=")) {
1137 pid_file
= arg
+ 11;
1140 if (!strcmp(arg
, "--detach")) {
1145 if (!prefixcmp(arg
, "--user=")) {
1146 user_name
= arg
+ 7;
1149 if (!prefixcmp(arg
, "--group=")) {
1150 group_name
= arg
+ 8;
1153 if (!prefixcmp(arg
, "--enable=")) {
1154 enable_service(arg
+ 9, 1);
1157 if (!prefixcmp(arg
, "--disable=")) {
1158 enable_service(arg
+ 10, 0);
1161 if (!prefixcmp(arg
, "--allow-override=")) {
1162 make_service_overridable(arg
+ 17, 1);
1165 if (!prefixcmp(arg
, "--forbid-override=")) {
1166 make_service_overridable(arg
+ 18, 0);
1169 if (!strcmp(arg
, "--")) {
1170 ok_paths
= &argv
[i
+1];
1172 } else if (arg
[0] != '-') {
1173 ok_paths
= &argv
[i
];
1177 usage(daemon_usage
);
1181 openlog("git-daemon", 0, LOG_DAEMON
);
1182 set_die_routine(daemon_die
);
1185 if (inetd_mode
&& (group_name
|| user_name
))
1186 die("--user and --group are incompatible with --inetd");
1188 if (inetd_mode
&& (listen_port
|| listen_addr
))
1189 die("--listen= and --port= are incompatible with --inetd");
1190 else if (listen_port
== 0)
1191 listen_port
= DEFAULT_GIT_PORT
;
1193 if (group_name
&& !user_name
)
1194 die("--group supplied without --user");
1197 pass
= getpwnam(user_name
);
1199 die("user not found - %s", user_name
);
1204 group
= getgrnam(group_name
);
1206 die("group not found - %s", group_name
);
1208 gid
= group
->gr_gid
;
1212 if (strict_paths
&& (!ok_paths
|| !*ok_paths
))
1213 die("option --strict-paths requires a whitelist");
1218 if (stat(base_path
, &st
) || !S_ISDIR(st
.st_mode
))
1219 die("base-path '%s' does not exist or "
1220 "is not a directory", base_path
);
1224 struct sockaddr_storage ss
;
1225 struct sockaddr
*peer
= (struct sockaddr
*)&ss
;
1226 socklen_t slen
= sizeof(ss
);
1228 freopen("/dev/null", "w", stderr
);
1230 if (getpeername(0, peer
, &slen
))
1233 return execute(peer
);
1242 store_pid(pid_file
);
1244 return serve(listen_addr
, listen_port
, pass
, gid
);