3 #include <sys/socket.h>
7 #include <netinet/in.h>
14 static int log_syslog
;
17 static const char daemon_usage
[] =
18 "git-daemon [--verbose] [--syslog] [--inetd | --port=n] [--export-all]\n"
19 " [--timeout=n] [--init-timeout=n] [--strict-paths]\n"
20 " [--base-path=path] [directory...]";
22 /* List of acceptable pathname prefixes */
23 static char **ok_paths
= NULL
;
24 static int strict_paths
= 0;
26 /* If this is set, git-daemon-export-ok is not required */
27 static int export_all_trees
= 0;
29 /* Take all paths relative to this one if non-NULL */
30 static char *base_path
= NULL
;
32 /* Timeout, and initial timeout */
33 static unsigned int timeout
= 0;
34 static unsigned int init_timeout
= 0;
36 static void logreport(int priority
, const char *err
, va_list params
)
38 /* We should do a single write so that it is atomic and output
39 * of several processes do not get intermingled. */
44 /* sizeof(buf) should be big enough for "[pid] \n" */
45 buflen
= snprintf(buf
, sizeof(buf
), "[%ld] ", (long) getpid());
47 maxlen
= sizeof(buf
) - buflen
- 1; /* -1 for our own LF */
48 msglen
= vsnprintf(buf
+ buflen
, maxlen
, err
, params
);
51 syslog(priority
, "%s", buf
);
55 /* maxlen counted our own LF but also counts space given to
56 * vsnprintf for the terminating NUL. We want to make sure that
57 * we have space for our own LF and NUL after the "meat" of the
58 * message, so truncate it at maxlen - 1.
60 if (msglen
> maxlen
- 1)
63 msglen
= 0; /* Protect against weird return values. */
69 write(2, buf
, buflen
);
72 static void logerror(const char *err
, ...)
75 va_start(params
, err
);
76 logreport(LOG_ERR
, err
, params
);
80 static void loginfo(const char *err
, ...)
85 va_start(params
, err
);
86 logreport(LOG_INFO
, err
, params
);
90 static int avoid_alias(char *p
)
95 * This resurrects the belts and suspenders paranoia check by HPA
96 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
97 * does not do getcwd() based path canonicalizations.
99 * sl becomes true immediately after seeing '/' and continues to
100 * be true as long as dots continue after that without intervening
103 if (!p
|| (*p
!= '/' && *p
!= '~'))
113 else if (ch
== '/') {
115 /* reject //, /./ and /../ */
120 if (0 < ndot
&& ndot
< 3)
121 /* reject /.$ and /..$ */
130 else if (ch
== '/') {
137 static char *path_ok(char *dir
)
141 if (avoid_alias(dir
)) {
142 logerror("'%s': aliased", dir
);
147 static char rpath
[PATH_MAX
];
149 /* Forbid possible base-path evasion using ~paths. */
150 logerror("'%s': Non-absolute path denied (base-path active)");
153 snprintf(rpath
, PATH_MAX
, "%s%s", base_path
, dir
);
157 path
= enter_repo(dir
, strict_paths
);
160 logerror("'%s': unable to chdir or not a git archive", dir
);
164 if ( ok_paths
&& *ok_paths
) {
166 int pathlen
= strlen(path
);
168 /* The validation is done on the paths after enter_repo
169 * appends optional {.git,.git/.git} and friends, but
170 * it does not use getcwd(). So if your /pub is
171 * a symlink to /mnt/pub, you can whitelist /pub and
172 * do not have to say /mnt/pub.
175 for ( pp
= ok_paths
; *pp
; pp
++ ) {
176 int len
= strlen(*pp
);
177 if (len
<= pathlen
&&
178 !memcmp(*pp
, path
, len
) &&
179 (path
[len
] == '\0' ||
180 (!strict_paths
&& path
[len
] == '/')))
185 /* be backwards compatible */
190 logerror("'%s': not in whitelist", path
);
191 return NULL
; /* Fallthrough. Deny by default */
194 static int upload(char *dir
)
196 /* Timeout as string */
197 char timeout_buf
[64];
200 loginfo("Request for '%s'", dir
);
202 if (!(path
= path_ok(dir
)))
206 * Security on the cheap.
208 * We want a readable HEAD, usable "objects" directory, and
209 * a "git-daemon-export-ok" flag that says that the other side
210 * is ok with us doing this.
212 * path_ok() uses enter_repo() and does whitelist checking.
213 * We only need to make sure the repository is exported.
216 if (!export_all_trees
&& access("git-daemon-export-ok", F_OK
)) {
217 logerror("'%s': repository not exported.", path
);
223 * We'll ignore SIGTERM from now on, we have a
226 signal(SIGTERM
, SIG_IGN
);
228 snprintf(timeout_buf
, sizeof timeout_buf
, "--timeout=%u", timeout
);
230 /* git-upload-pack only ever reads stuff, so this is safe */
231 execl_git_cmd("upload-pack", "--strict", timeout_buf
, ".", NULL
);
235 static int execute(void)
237 static char line
[1000];
240 alarm(init_timeout
? init_timeout
: timeout
);
241 len
= packet_read_line(0, line
, sizeof(line
));
244 if (len
&& line
[len
-1] == '\n')
247 if (!strncmp("git-upload-pack ", line
, 16))
248 return upload(line
+16);
250 logerror("Protocol error: '%s'", line
);
256 * We count spawned/reaped separately, just to avoid any
257 * races when updating them from signals. The SIGCHLD handler
258 * will only update children_reaped, and the fork logic will
259 * only update children_spawned.
261 * MAX_CHILDREN should be a power-of-two to make the modulus
262 * operation cheap. It should also be at least twice
263 * the maximum number of connections we will ever allow.
265 #define MAX_CHILDREN 128
267 static int max_connections
= 25;
269 /* These are updated by the signal handler */
270 static volatile unsigned int children_reaped
= 0;
271 static pid_t dead_child
[MAX_CHILDREN
];
273 /* These are updated by the main loop */
274 static unsigned int children_spawned
= 0;
275 static unsigned int children_deleted
= 0;
277 static struct child
{
280 struct sockaddr_storage address
;
281 } live_child
[MAX_CHILDREN
];
283 static void add_child(int idx
, pid_t pid
, struct sockaddr
*addr
, int addrlen
)
285 live_child
[idx
].pid
= pid
;
286 live_child
[idx
].addrlen
= addrlen
;
287 memcpy(&live_child
[idx
].address
, addr
, addrlen
);
291 * Walk from "deleted" to "spawned", and remove child "pid".
293 * We move everything up by one, since the new "deleted" will
296 static void remove_child(pid_t pid
, unsigned deleted
, unsigned spawned
)
300 deleted
%= MAX_CHILDREN
;
301 spawned
%= MAX_CHILDREN
;
302 if (live_child
[deleted
].pid
== pid
) {
303 live_child
[deleted
].pid
= -1;
306 n
= live_child
[deleted
];
309 deleted
= (deleted
+ 1) % MAX_CHILDREN
;
310 if (deleted
== spawned
)
311 die("could not find dead child %d\n", pid
);
312 m
= live_child
[deleted
];
313 live_child
[deleted
] = n
;
321 * This gets called if the number of connections grows
322 * past "max_connections".
324 * We _should_ start off by searching for connections
325 * from the same IP, and if there is some address wth
326 * multiple connections, we should kill that first.
328 * As it is, we just "randomly" kill 25% of the connections,
329 * and our pseudo-random generator sucks too. I have no
332 * Really, this is just a place-holder for a _real_ algorithm.
334 static void kill_some_children(int signo
, unsigned start
, unsigned stop
)
336 start
%= MAX_CHILDREN
;
337 stop
%= MAX_CHILDREN
;
338 while (start
!= stop
) {
340 kill(live_child
[start
].pid
, signo
);
341 start
= (start
+ 1) % MAX_CHILDREN
;
345 static void check_max_connections(void)
349 unsigned spawned
, reaped
, deleted
;
351 spawned
= children_spawned
;
352 reaped
= children_reaped
;
353 deleted
= children_deleted
;
355 while (deleted
< reaped
) {
356 pid_t pid
= dead_child
[deleted
% MAX_CHILDREN
];
357 remove_child(pid
, deleted
, spawned
);
360 children_deleted
= deleted
;
362 active
= spawned
- deleted
;
363 if (active
<= max_connections
)
366 /* Kill some unstarted connections with SIGTERM */
367 kill_some_children(SIGTERM
, deleted
, spawned
);
368 if (active
<= max_connections
<< 1)
371 /* If the SIGTERM thing isn't helping use SIGKILL */
372 kill_some_children(SIGKILL
, deleted
, spawned
);
377 static void handle(int incoming
, struct sockaddr
*addr
, int addrlen
)
380 char addrbuf
[256] = "";
390 idx
= children_spawned
% MAX_CHILDREN
;
392 add_child(idx
, pid
, addr
, addrlen
);
394 check_max_connections();
402 if (addr
->sa_family
== AF_INET
) {
403 struct sockaddr_in
*sin_addr
= (void *) addr
;
404 inet_ntop(AF_INET
, &sin_addr
->sin_addr
, addrbuf
, sizeof(addrbuf
));
405 port
= sin_addr
->sin_port
;
408 } else if (addr
->sa_family
== AF_INET6
) {
409 struct sockaddr_in6
*sin6_addr
= (void *) addr
;
412 *buf
++ = '['; *buf
= '\0'; /* stpcpy() is cool */
413 inet_ntop(AF_INET6
, &sin6_addr
->sin6_addr
, buf
, sizeof(addrbuf
) - 1);
416 port
= sin6_addr
->sin6_port
;
419 loginfo("Connection from %s:%d", addrbuf
, port
);
424 static void child_handler(int signo
)
428 pid_t pid
= waitpid(-1, &status
, WNOHANG
);
431 unsigned reaped
= children_reaped
;
432 dead_child
[reaped
% MAX_CHILDREN
] = pid
;
433 children_reaped
= reaped
+ 1;
434 /* XXX: Custom logging, since we don't wanna getpid() */
437 if (!WIFEXITED(status
) || WEXITSTATUS(status
) > 0)
438 dead
= " (with error)";
440 syslog(LOG_INFO
, "[%d] Disconnected%s", pid
, dead
);
442 fprintf(stderr
, "[%d] Disconnected%s\n", pid
, dead
);
452 static int socksetup(int port
, int **socklist_p
)
454 int socknum
= 0, *socklist
= NULL
;
456 char pbuf
[NI_MAXSERV
];
458 struct addrinfo hints
, *ai0
, *ai
;
461 sprintf(pbuf
, "%d", port
);
462 memset(&hints
, 0, sizeof(hints
));
463 hints
.ai_family
= AF_UNSPEC
;
464 hints
.ai_socktype
= SOCK_STREAM
;
465 hints
.ai_protocol
= IPPROTO_TCP
;
466 hints
.ai_flags
= AI_PASSIVE
;
468 gai
= getaddrinfo(NULL
, pbuf
, &hints
, &ai0
);
470 die("getaddrinfo() failed: %s\n", gai_strerror(gai
));
472 for (ai
= ai0
; ai
; ai
= ai
->ai_next
) {
476 sockfd
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
479 if (sockfd
>= FD_SETSIZE
) {
480 error("too large socket descriptor.");
486 if (ai
->ai_family
== AF_INET6
) {
488 setsockopt(sockfd
, IPPROTO_IPV6
, IPV6_V6ONLY
,
490 /* Note: error is not fatal */
494 if (bind(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
496 continue; /* not fatal */
498 if (listen(sockfd
, 5) < 0) {
500 continue; /* not fatal */
503 newlist
= realloc(socklist
, sizeof(int) * (socknum
+ 1));
505 die("memory allocation failed: %s", strerror(errno
));
508 socklist
[socknum
++] = sockfd
;
516 *socklist_p
= socklist
;
522 static int socksetup(int port
, int **socklist_p
)
524 struct sockaddr_in sin
;
527 sockfd
= socket(AF_INET
, SOCK_STREAM
, 0);
531 memset(&sin
, 0, sizeof sin
);
532 sin
.sin_family
= AF_INET
;
533 sin
.sin_addr
.s_addr
= htonl(INADDR_ANY
);
534 sin
.sin_port
= htons(port
);
536 if ( bind(sockfd
, (struct sockaddr
*)&sin
, sizeof sin
) < 0 ) {
541 if (listen(sockfd
, 5) < 0) {
546 *socklist_p
= xmalloc(sizeof(int));
547 **socklist_p
= sockfd
;
553 static int service_loop(int socknum
, int *socklist
)
558 pfd
= xcalloc(socknum
, sizeof(struct pollfd
));
560 for (i
= 0; i
< socknum
; i
++) {
561 pfd
[i
].fd
= socklist
[i
];
562 pfd
[i
].events
= POLLIN
;
565 signal(SIGCHLD
, child_handler
);
570 if (poll(pfd
, socknum
, -1) < 0) {
571 if (errno
!= EINTR
) {
572 error("poll failed, resuming: %s",
579 for (i
= 0; i
< socknum
; i
++) {
580 if (pfd
[i
].revents
& POLLIN
) {
581 struct sockaddr_storage ss
;
582 unsigned int sslen
= sizeof(ss
);
583 int incoming
= accept(pfd
[i
].fd
, (struct sockaddr
*)&ss
, &sslen
);
591 die("accept returned %s", strerror(errno
));
594 handle(incoming
, (struct sockaddr
*)&ss
, sslen
);
600 static int serve(int port
)
602 int socknum
, *socklist
;
604 socknum
= socksetup(port
, &socklist
);
606 die("unable to allocate any listen sockets on port %u", port
);
608 return service_loop(socknum
, socklist
);
611 int main(int argc
, char **argv
)
613 int port
= DEFAULT_GIT_PORT
;
617 for (i
= 1; i
< argc
; i
++) {
620 if (!strncmp(arg
, "--port=", 7)) {
623 n
= strtoul(arg
+7, &end
, 0);
624 if (arg
[7] && !*end
) {
629 if (!strcmp(arg
, "--inetd")) {
634 if (!strcmp(arg
, "--verbose")) {
638 if (!strcmp(arg
, "--syslog")) {
642 if (!strcmp(arg
, "--export-all")) {
643 export_all_trees
= 1;
646 if (!strncmp(arg
, "--timeout=", 10)) {
647 timeout
= atoi(arg
+10);
650 if (!strncmp(arg
, "--init-timeout=", 15)) {
651 init_timeout
= atoi(arg
+15);
654 if (!strcmp(arg
, "--strict-paths")) {
658 if (!strncmp(arg
, "--base-path=", 12)) {
662 if (!strcmp(arg
, "--")) {
663 ok_paths
= &argv
[i
+1];
665 } else if (arg
[0] != '-') {
674 openlog("git-daemon", 0, LOG_DAEMON
);
676 if (strict_paths
&& (!ok_paths
|| !*ok_paths
)) {
678 die("git-daemon: option --strict-paths requires a whitelist");
680 logerror("option --strict-paths requires a whitelist");
685 fclose(stderr
); //FIXME: workaround