5 #include <sys/socket.h>
8 #include <netinet/in.h>
12 static int log_syslog
;
15 static const char daemon_usage
[] = "git-daemon [--verbose] [--syslog] [--inetd | --port=n] [--export-all] [directory...]";
17 /* List of acceptable pathname prefixes */
18 static char **ok_paths
= NULL
;
20 /* If this is set, git-daemon-export-ok is not required */
21 static int export_all_trees
= 0;
24 static void logreport(int priority
, const char *err
, va_list params
)
26 /* We should do a single write so that it is atomic and output
27 * of several processes do not get intermingled. */
32 /* sizeof(buf) should be big enough for "[pid] \n" */
33 buflen
= snprintf(buf
, sizeof(buf
), "[%ld] ", (long) getpid());
35 maxlen
= sizeof(buf
) - buflen
- 1; /* -1 for our own LF */
36 msglen
= vsnprintf(buf
+ buflen
, maxlen
, err
, params
);
39 syslog(priority
, "%s", buf
);
43 /* maxlen counted our own LF but also counts space given to
44 * vsnprintf for the terminating NUL. We want to make sure that
45 * we have space for our own LF and NUL after the "meat" of the
46 * message, so truncate it at maxlen - 1.
48 if (msglen
> maxlen
- 1)
51 msglen
= 0; /* Protect against weird return values. */
57 write(2, buf
, buflen
);
60 static void logerror(const char *err
, ...)
63 va_start(params
, err
);
64 logreport(LOG_ERR
, err
, params
);
68 static void loginfo(const char *err
, ...)
73 va_start(params
, err
);
74 logreport(LOG_INFO
, err
, params
);
78 static int path_ok(const char *dir
)
87 } else if ( *p
== '/' || *p
== '\0' ) {
88 if ( sl
&& ndot
> 0 && ndot
< 3 )
89 return 0; /* . or .. in path */
92 break; /* End of string and all is good */
99 if ( ok_paths
&& *ok_paths
) {
101 int dirlen
= strlen(dir
); /* read_packet_line can return embedded \0 */
103 for ( pp
= ok_paths
; *pp
; pp
++ ) {
104 int len
= strlen(*pp
);
105 if ( len
<= dirlen
&&
106 !strncmp(*pp
, dir
, len
) &&
107 (dir
[len
] == '/' || dir
[len
] == '\0') ) {
114 return 0; /* Path not in whitelist */
117 return 1; /* Path acceptable */
120 static int upload(char *dir
, int dirlen
)
122 loginfo("Request for '%s'", dir
);
125 logerror("Forbidden directory: %s\n", dir
);
129 if (chdir(dir
) < 0) {
130 logerror("Cannot chdir('%s'): %s", dir
, strerror(errno
));
137 * Security on the cheap.
139 * We want a readable HEAD, usable "objects" directory, and
140 * a "git-daemon-export-ok" flag that says that the other side
141 * is ok with us doing this.
143 if ((!export_all_trees
&& access("git-daemon-export-ok", F_OK
)) ||
144 access("objects/00", X_OK
) ||
145 access("HEAD", R_OK
)) {
146 logerror("Not a valid git-daemon-enabled repository: '%s'", dir
);
151 * We'll ignore SIGTERM from now on, we have a
154 signal(SIGTERM
, SIG_IGN
);
156 /* git-upload-pack only ever reads stuff, so this is safe */
157 execlp("git-upload-pack", "git-upload-pack", ".", NULL
);
161 static int execute(void)
163 static char line
[1000];
166 len
= packet_read_line(0, line
, sizeof(line
));
168 if (len
&& line
[len
-1] == '\n')
171 if (!strncmp("git-upload-pack /", line
, 17))
172 return upload(line
+ 16, len
- 16);
174 logerror("Protocol error: '%s'", line
);
180 * We count spawned/reaped separately, just to avoid any
181 * races when updating them from signals. The SIGCHLD handler
182 * will only update children_reaped, and the fork logic will
183 * only update children_spawned.
185 * MAX_CHILDREN should be a power-of-two to make the modulus
186 * operation cheap. It should also be at least twice
187 * the maximum number of connections we will ever allow.
189 #define MAX_CHILDREN 128
191 static int max_connections
= 25;
193 /* These are updated by the signal handler */
194 static volatile unsigned int children_reaped
= 0;
195 static pid_t dead_child
[MAX_CHILDREN
];
197 /* These are updated by the main loop */
198 static unsigned int children_spawned
= 0;
199 static unsigned int children_deleted
= 0;
201 static struct child
{
204 struct sockaddr_storage address
;
205 } live_child
[MAX_CHILDREN
];
207 static void add_child(int idx
, pid_t pid
, struct sockaddr
*addr
, int addrlen
)
209 live_child
[idx
].pid
= pid
;
210 live_child
[idx
].addrlen
= addrlen
;
211 memcpy(&live_child
[idx
].address
, addr
, addrlen
);
215 * Walk from "deleted" to "spawned", and remove child "pid".
217 * We move everything up by one, since the new "deleted" will
220 static void remove_child(pid_t pid
, unsigned deleted
, unsigned spawned
)
224 deleted
%= MAX_CHILDREN
;
225 spawned
%= MAX_CHILDREN
;
226 if (live_child
[deleted
].pid
== pid
) {
227 live_child
[deleted
].pid
= -1;
230 n
= live_child
[deleted
];
233 deleted
= (deleted
+ 1) % MAX_CHILDREN
;
234 if (deleted
== spawned
)
235 die("could not find dead child %d\n", pid
);
236 m
= live_child
[deleted
];
237 live_child
[deleted
] = n
;
245 * This gets called if the number of connections grows
246 * past "max_connections".
248 * We _should_ start off by searching for connections
249 * from the same IP, and if there is some address wth
250 * multiple connections, we should kill that first.
252 * As it is, we just "randomly" kill 25% of the connections,
253 * and our pseudo-random generator sucks too. I have no
256 * Really, this is just a place-holder for a _real_ algorithm.
258 static void kill_some_children(int signo
, unsigned start
, unsigned stop
)
260 start
%= MAX_CHILDREN
;
261 stop
%= MAX_CHILDREN
;
262 while (start
!= stop
) {
264 kill(live_child
[start
].pid
, signo
);
265 start
= (start
+ 1) % MAX_CHILDREN
;
269 static void check_max_connections(void)
273 unsigned spawned
, reaped
, deleted
;
275 spawned
= children_spawned
;
276 reaped
= children_reaped
;
277 deleted
= children_deleted
;
279 while (deleted
< reaped
) {
280 pid_t pid
= dead_child
[deleted
% MAX_CHILDREN
];
281 remove_child(pid
, deleted
, spawned
);
284 children_deleted
= deleted
;
286 active
= spawned
- deleted
;
287 if (active
<= max_connections
)
290 /* Kill some unstarted connections with SIGTERM */
291 kill_some_children(SIGTERM
, deleted
, spawned
);
292 if (active
<= max_connections
<< 1)
295 /* If the SIGTERM thing isn't helping use SIGKILL */
296 kill_some_children(SIGKILL
, deleted
, spawned
);
301 static void handle(int incoming
, struct sockaddr
*addr
, int addrlen
)
304 char addrbuf
[256] = "";
314 idx
= children_spawned
% MAX_CHILDREN
;
316 add_child(idx
, pid
, addr
, addrlen
);
318 check_max_connections();
326 if (addr
->sa_family
== AF_INET
) {
327 struct sockaddr_in
*sin_addr
= (void *) addr
;
328 inet_ntop(AF_INET
, &sin_addr
->sin_addr
, addrbuf
, sizeof(addrbuf
));
329 port
= sin_addr
->sin_port
;
331 } else if (addr
->sa_family
== AF_INET6
) {
332 struct sockaddr_in6
*sin6_addr
= (void *) addr
;
335 *buf
++ = '['; *buf
= '\0'; /* stpcpy() is cool */
336 inet_ntop(AF_INET6
, &sin6_addr
->sin6_addr
, buf
, sizeof(addrbuf
) - 1);
339 port
= sin6_addr
->sin6_port
;
341 loginfo("Connection from %s:%d", addrbuf
, port
);
346 static void child_handler(int signo
)
350 pid_t pid
= waitpid(-1, &status
, WNOHANG
);
353 unsigned reaped
= children_reaped
;
354 dead_child
[reaped
% MAX_CHILDREN
] = pid
;
355 children_reaped
= reaped
+ 1;
356 /* XXX: Custom logging, since we don't wanna getpid() */
359 if (!WIFEXITED(status
) || WEXITSTATUS(status
) > 0)
360 dead
= " (with error)";
362 syslog(LOG_INFO
, "[%d] Disconnected%s", pid
, dead
);
364 fprintf(stderr
, "[%d] Disconnected%s\n", pid
, dead
);
372 static int serve(int port
)
374 struct addrinfo hints
, *ai0
, *ai
;
376 int socknum
= 0, *socklist
= NULL
;
378 fd_set fds_init
, fds
;
379 char pbuf
[NI_MAXSERV
];
381 signal(SIGCHLD
, child_handler
);
383 sprintf(pbuf
, "%d", port
);
384 memset(&hints
, 0, sizeof(hints
));
385 hints
.ai_family
= AF_UNSPEC
;
386 hints
.ai_socktype
= SOCK_STREAM
;
387 hints
.ai_protocol
= IPPROTO_TCP
;
388 hints
.ai_flags
= AI_PASSIVE
;
390 gai
= getaddrinfo(NULL
, pbuf
, &hints
, &ai0
);
392 die("getaddrinfo() failed: %s\n", gai_strerror(gai
));
396 for (ai
= ai0
; ai
; ai
= ai
->ai_next
) {
400 sockfd
= socket(ai
->ai_family
, ai
->ai_socktype
, ai
->ai_protocol
);
403 if (sockfd
>= FD_SETSIZE
) {
404 error("too large socket descriptor.");
410 if (ai
->ai_family
== AF_INET6
) {
412 setsockopt(sockfd
, IPPROTO_IPV6
, IPV6_V6ONLY
,
414 /* Note: error is not fatal */
418 if (bind(sockfd
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
420 continue; /* not fatal */
422 if (listen(sockfd
, 5) < 0) {
424 continue; /* not fatal */
427 newlist
= realloc(socklist
, sizeof(int) * (socknum
+ 1));
429 die("memory allocation failed: %s", strerror(errno
));
432 socklist
[socknum
++] = sockfd
;
434 FD_SET(sockfd
, &fds_init
);
442 die("unable to allocate any listen sockets on port %u", port
);
448 if (select(maxfd
+ 1, &fds
, NULL
, NULL
, NULL
) < 0) {
449 if (errno
!= EINTR
) {
450 error("select failed, resuming: %s",
457 for (i
= 0; i
< socknum
; i
++) {
458 int sockfd
= socklist
[i
];
460 if (FD_ISSET(sockfd
, &fds
)) {
461 struct sockaddr_storage ss
;
462 int sslen
= sizeof(ss
);
463 int incoming
= accept(sockfd
, (struct sockaddr
*)&ss
, &sslen
);
471 die("accept returned %s", strerror(errno
));
474 handle(incoming
, (struct sockaddr
*)&ss
, sslen
);
480 int main(int argc
, char **argv
)
482 int port
= DEFAULT_GIT_PORT
;
486 for (i
= 1; i
< argc
; i
++) {
489 if (!strncmp(arg
, "--port=", 7)) {
492 n
= strtoul(arg
+7, &end
, 0);
493 if (arg
[7] && !*end
) {
498 if (!strcmp(arg
, "--inetd")) {
502 if (!strcmp(arg
, "--verbose")) {
506 if (!strcmp(arg
, "--syslog")) {
508 openlog("git-daemon", 0, LOG_DAEMON
);
511 if (!strcmp(arg
, "--export-all")) {
512 export_all_trees
= 1;
515 if (!strcmp(arg
, "--")) {
516 ok_paths
= &argv
[i
+1];
518 } else if (arg
[0] != '-') {
527 fclose(stderr
); //FIXME: workaround