]> git.ipfire.org Git - thirdparty/git.git/blame - daemon.c
git-daemon: use LOG_PID, simplify logging code
[thirdparty/git.git] / daemon.c
CommitLineData
979e32fa 1#include "cache.h"
85023577 2#include "pkt-line.h"
77cb17e9 3#include "exec_cmd.h"
49ba83fb 4#include "interpolate.h"
f8ff0c06 5
85023577
JH
6#include <syslog.h>
7
695dffe2
JS
8#ifndef HOST_NAME_MAX
9#define HOST_NAME_MAX 256
10#endif
11
415e7b87
PW
12#ifndef NI_MAXSERV
13#define NI_MAXSERV 32
14#endif
15
9048fe1c 16static int log_syslog;
f8ff0c06 17static int verbose;
1955fabf 18static int reuseaddr;
f9bbefc7 19static int child_handler_pipe[2];
f8ff0c06 20
960deccb 21static const char daemon_usage[] =
1b1dd23f 22"git daemon [--verbose] [--syslog] [--export-all]\n"
b21c31c9 23" [--timeout=n] [--init-timeout=n] [--strict-paths]\n"
73a7a656
JA
24" [--base-path=path] [--base-path-relaxed]\n"
25" [--user-path | --user-path=path]\n"
49ba83fb 26" [--interpolated-path=path]\n"
678dac6b 27" [--reuseaddr] [--detach] [--pid-file=file]\n"
d9edcbd6 28" [--[enable|disable|allow-override|forbid-override]=service]\n"
dd467629
JL
29" [--inetd | [--listen=host_or_ipaddr] [--port=n]\n"
30" [--user=user [--group=group]]\n"
31" [directory...]";
4ae95682
PA
32
33/* List of acceptable pathname prefixes */
96f1e58f
DR
34static char **ok_paths;
35static int strict_paths;
4ae95682
PA
36
37/* If this is set, git-daemon-export-ok is not required */
96f1e58f 38static int export_all_trees;
f8ff0c06 39
b21c31c9 40/* Take all paths relative to this one if non-NULL */
96f1e58f 41static char *base_path;
49ba83fb 42static char *interpolated_path;
73a7a656 43static int base_path_relaxed;
49ba83fb
JL
44
45/* Flag indicating client sent extra args. */
46static int saw_extended_args;
b21c31c9 47
603968d2
JH
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.
51 */
96f1e58f 52static const char *user_path;
603968d2 53
960deccb 54/* Timeout, and initial timeout */
96f1e58f
DR
55static unsigned int timeout;
56static unsigned int init_timeout;
f8ff0c06 57
49ba83fb
JL
58/*
59 * Static table for now. Ugh.
60 * Feel free to make dynamic as needed.
61 */
62#define INTERP_SLOT_HOST (0)
dd467629
JL
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)
49ba83fb
JL
68
69static struct interp interp_table[] = {
70 { "%H", 0},
dd467629
JL
71 { "%CH", 0},
72 { "%IP", 0},
73 { "%P", 0},
49ba83fb 74 { "%D", 0},
eb30aed7 75 { "%%", 0},
49ba83fb
JL
76};
77
78
9048fe1c 79static void logreport(int priority, const char *err, va_list params)
f8ff0c06 80{
9048fe1c 81 if (log_syslog) {
6a992e9e
SB
82 char buf[1024];
83 vsnprintf(buf, sizeof(buf), err, params);
9048fe1c 84 syslog(priority, "%s", buf);
9048fe1c 85 }
6a992e9e
SB
86 else {
87 /* Since stderr is set to linebuffered mode, the
88 * logging of different processes will not overlap
89 */
90 fprintf(stderr, "[%d] ", (int)getpid());
91 vfprintf(stderr, err, params);
92 fputc('\n', stderr);
93 }
f8ff0c06
PB
94}
95
cdda4745 96static void logerror(const char *err, ...)
f8ff0c06
PB
97{
98 va_list params;
99 va_start(params, err);
9048fe1c 100 logreport(LOG_ERR, err, params);
f8ff0c06
PB
101 va_end(params);
102}
103
cdda4745 104static void loginfo(const char *err, ...)
f8ff0c06
PB
105{
106 va_list params;
107 if (!verbose)
108 return;
109 va_start(params, err);
9048fe1c 110 logreport(LOG_INFO, err, params);
f8ff0c06
PB
111 va_end(params);
112}
a87e8be2 113
ad8b4f56
ML
114static void NORETURN daemon_die(const char *err, va_list params)
115{
116 logreport(LOG_ERR, err, params);
117 exit(1);
118}
119
d79374c7
JH
120static int avoid_alias(char *p)
121{
122 int sl, ndot;
123
a6080a0a 124 /*
d79374c7
JH
125 * This resurrects the belts and suspenders paranoia check by HPA
126 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
127 * does not do getcwd() based path canonicalizations.
128 *
129 * sl becomes true immediately after seeing '/' and continues to
130 * be true as long as dots continue after that without intervening
131 * non-dot character.
132 */
133 if (!p || (*p != '/' && *p != '~'))
134 return -1;
135 sl = 1; ndot = 0;
136 p++;
137
138 while (1) {
139 char ch = *p++;
140 if (sl) {
141 if (ch == '.')
142 ndot++;
143 else if (ch == '/') {
144 if (ndot < 3)
145 /* reject //, /./ and /../ */
146 return -1;
147 ndot = 0;
148 }
149 else if (ch == 0) {
150 if (0 < ndot && ndot < 3)
151 /* reject /.$ and /..$ */
152 return -1;
153 return 0;
154 }
155 else
156 sl = ndot = 0;
157 }
158 else if (ch == 0)
159 return 0;
160 else if (ch == '/') {
161 sl = 1;
162 ndot = 0;
163 }
164 }
165}
166
49ba83fb 167static char *path_ok(struct interp *itable)
4ae95682 168{
603968d2 169 static char rpath[PATH_MAX];
49ba83fb 170 static char interp_path[PATH_MAX];
73a7a656 171 int retried_path = 0;
d79374c7 172 char *path;
49ba83fb
JL
173 char *dir;
174
175 dir = itable[INTERP_SLOT_DIR].value;
d79374c7
JH
176
177 if (avoid_alias(dir)) {
178 logerror("'%s': aliased", dir);
179 return NULL;
180 }
181
603968d2
JH
182 if (*dir == '~') {
183 if (!user_path) {
184 logerror("'%s': User-path not allowed", dir);
185 return NULL;
186 }
187 if (*user_path) {
188 /* Got either "~alice" or "~alice/foo";
189 * rewrite them to "~alice/%s" or
190 * "~alice/%s/foo".
191 */
192 int namlen, restlen = strlen(dir);
193 char *slash = strchr(dir, '/');
194 if (!slash)
195 slash = dir + restlen;
196 namlen = slash - dir;
197 restlen -= namlen;
198 loginfo("userpath <%s>, request <%s>, namlen %d, restlen %d, slash <%s>", user_path, dir, namlen, restlen, slash);
199 snprintf(rpath, PATH_MAX, "%.*s/%s%.*s",
200 namlen, dir, user_path, restlen, slash);
201 dir = rpath;
202 }
203 }
49ba83fb
JL
204 else if (interpolated_path && saw_extended_args) {
205 if (*dir != '/') {
206 /* Allow only absolute */
207 logerror("'%s': Non-absolute path denied (interpolated-path active)", dir);
208 return NULL;
209 }
210
211 interpolate(interp_path, PATH_MAX, interpolated_path,
212 interp_table, ARRAY_SIZE(interp_table));
213 loginfo("Interpolated dir '%s'", interp_path);
214
215 dir = interp_path;
216 }
603968d2
JH
217 else if (base_path) {
218 if (*dir != '/') {
219 /* Allow only absolute */
1fda3d55 220 logerror("'%s': Non-absolute path denied (base-path active)", dir);
b21c31c9
PB
221 return NULL;
222 }
49ba83fb
JL
223 snprintf(rpath, PATH_MAX, "%s%s", base_path, dir);
224 dir = rpath;
b21c31c9
PB
225 }
226
73a7a656
JA
227 do {
228 path = enter_repo(dir, strict_paths);
229 if (path)
230 break;
231
232 /*
233 * if we fail and base_path_relaxed is enabled, try without
234 * prefixing the base path
235 */
236 if (base_path && base_path_relaxed && !retried_path) {
237 dir = itable[INTERP_SLOT_DIR].value;
238 retried_path = 1;
239 continue;
240 }
241 break;
242 } while (1);
3e04c62d 243
4dbd1352
AE
244 if (!path) {
245 logerror("'%s': unable to chdir or not a git archive", dir);
246 return NULL;
4ae95682
PA
247 }
248
249 if ( ok_paths && *ok_paths ) {
ce335fe0 250 char **pp;
4dbd1352 251 int pathlen = strlen(path);
4ae95682 252
ce335fe0 253 /* The validation is done on the paths after enter_repo
a6080a0a 254 * appends optional {.git,.git/.git} and friends, but
d79374c7
JH
255 * it does not use getcwd(). So if your /pub is
256 * a symlink to /mnt/pub, you can whitelist /pub and
257 * do not have to say /mnt/pub.
258 * Do not say /pub/.
ce335fe0 259 */
4ae95682
PA
260 for ( pp = ok_paths ; *pp ; pp++ ) {
261 int len = strlen(*pp);
ce335fe0
JH
262 if (len <= pathlen &&
263 !memcmp(*pp, path, len) &&
264 (path[len] == '\0' ||
265 (!strict_paths && path[len] == '/')))
266 return path;
4ae95682 267 }
4dbd1352
AE
268 }
269 else {
270 /* be backwards compatible */
271 if (!strict_paths)
272 return path;
4ae95682
PA
273 }
274
4dbd1352
AE
275 logerror("'%s': not in whitelist", path);
276 return NULL; /* Fallthrough. Deny by default */
4ae95682 277}
a87e8be2 278
d819e4e6
JH
279typedef int (*daemon_service_fn)(void);
280struct daemon_service {
281 const char *name;
282 const char *config_name;
283 daemon_service_fn fn;
284 int enabled;
285 int overridable;
286};
287
288static struct daemon_service *service_looking_at;
289static int service_enabled;
290
ef90d6d4 291static int git_daemon_config(const char *var, const char *value, void *cb)
d819e4e6 292{
cc44c765 293 if (!prefixcmp(var, "daemon.") &&
d819e4e6
JH
294 !strcmp(var + 7, service_looking_at->config_name)) {
295 service_enabled = git_config_bool(var, value);
296 return 0;
297 }
298
299 /* we are not interested in parsing any other configuration here */
300 return 0;
301}
302
49ba83fb 303static int run_service(struct interp *itable, struct daemon_service *service)
a87e8be2 304{
4dbd1352 305 const char *path;
d819e4e6
JH
306 int enabled = service->enabled;
307
49ba83fb
JL
308 loginfo("Request %s for '%s'",
309 service->name,
310 itable[INTERP_SLOT_DIR].value);
4dbd1352 311
d819e4e6
JH
312 if (!enabled && !service->overridable) {
313 logerror("'%s': service not enabled.", service->name);
314 errno = EACCES;
315 return -1;
316 }
4ae95682 317
49ba83fb 318 if (!(path = path_ok(itable)))
a87e8be2 319 return -1;
47888f0f 320
a87e8be2
LT
321 /*
322 * Security on the cheap.
323 *
a935c397 324 * We want a readable HEAD, usable "objects" directory, and
a87e8be2
LT
325 * a "git-daemon-export-ok" flag that says that the other side
326 * is ok with us doing this.
4dbd1352
AE
327 *
328 * path_ok() uses enter_repo() and does whitelist checking.
329 * We only need to make sure the repository is exported.
a87e8be2 330 */
4dbd1352 331
3e04c62d 332 if (!export_all_trees && access("git-daemon-export-ok", F_OK)) {
4dbd1352 333 logerror("'%s': repository not exported.", path);
3e04c62d
PA
334 errno = EACCES;
335 return -1;
336 }
337
d819e4e6
JH
338 if (service->overridable) {
339 service_looking_at = service;
340 service_enabled = -1;
ef90d6d4 341 git_config(git_daemon_config, NULL);
d819e4e6
JH
342 if (0 <= service_enabled)
343 enabled = service_enabled;
344 }
345 if (!enabled) {
346 logerror("'%s': service not enabled for '%s'",
347 service->name, path);
348 errno = EACCES;
349 return -1;
350 }
351
02d57da4
LT
352 /*
353 * We'll ignore SIGTERM from now on, we have a
354 * good client.
355 */
356 signal(SIGTERM, SIG_IGN);
357
d819e4e6
JH
358 return service->fn();
359}
360
361static int upload_pack(void)
362{
363 /* Timeout as string */
364 char timeout_buf[64];
365
960deccb
PA
366 snprintf(timeout_buf, sizeof timeout_buf, "--timeout=%u", timeout);
367
a87e8be2 368 /* git-upload-pack only ever reads stuff, so this is safe */
77cb17e9 369 execl_git_cmd("upload-pack", "--strict", timeout_buf, ".", NULL);
a87e8be2
LT
370 return -1;
371}
372
39345a21
FBH
373static int upload_archive(void)
374{
375 execl_git_cmd("upload-archive", ".", NULL);
376 return -1;
377}
378
4b3b1e1e
LT
379static int receive_pack(void)
380{
381 execl_git_cmd("receive-pack", ".", NULL);
382 return -1;
383}
384
d819e4e6 385static struct daemon_service daemon_service[] = {
39345a21 386 { "upload-archive", "uploadarch", upload_archive, 0, 1 },
d819e4e6 387 { "upload-pack", "uploadpack", upload_pack, 1, 1 },
4b3b1e1e 388 { "receive-pack", "receivepack", receive_pack, 0, 1 },
d819e4e6
JH
389};
390
f3fa1838
JH
391static void enable_service(const char *name, int ena)
392{
d819e4e6
JH
393 int i;
394 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
395 if (!strcmp(daemon_service[i].name, name)) {
396 daemon_service[i].enabled = ena;
397 return;
398 }
399 }
400 die("No such service %s", name);
401}
402
f3fa1838
JH
403static void make_service_overridable(const char *name, int ena)
404{
d819e4e6
JH
405 int i;
406 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
407 if (!strcmp(daemon_service[i].name, name)) {
408 daemon_service[i].overridable = ena;
409 return;
410 }
411 }
412 die("No such service %s", name);
413}
414
eb30aed7
JL
415/*
416 * Separate the "extra args" information as supplied by the client connection.
3dff5379 417 * Any resulting data is squirreled away in the given interpolation table.
eb30aed7
JL
418 */
419static void parse_extra_args(struct interp *table, char *extra_args, int buflen)
49ba83fb
JL
420{
421 char *val;
422 int vallen;
423 char *end = extra_args + buflen;
424
425 while (extra_args < end && *extra_args) {
426 saw_extended_args = 1;
427 if (strncasecmp("host=", extra_args, 5) == 0) {
428 val = extra_args + 5;
429 vallen = strlen(val) + 1;
430 if (*val) {
eb30aed7
JL
431 /* Split <host>:<port> at colon. */
432 char *host = val;
433 char *port = strrchr(host, ':');
dd467629
JL
434 if (port) {
435 *port = 0;
436 port++;
eb30aed7 437 interp_set_entry(table, INTERP_SLOT_PORT, port);
dd467629 438 }
eb30aed7 439 interp_set_entry(table, INTERP_SLOT_HOST, host);
49ba83fb 440 }
eb30aed7 441
49ba83fb
JL
442 /* On to the next one */
443 extra_args = val + vallen;
444 }
445 }
446}
447
52fae7de 448static void fill_in_extra_table_entries(struct interp *itable)
dd467629
JL
449{
450 char *hp;
dd467629
JL
451
452 /*
453 * Replace literal host with lowercase-ized hostname.
454 */
455 hp = interp_table[INTERP_SLOT_HOST].value;
83543a24
JH
456 if (!hp)
457 return;
dd467629
JL
458 for ( ; *hp; hp++)
459 *hp = tolower(*hp);
460
461 /*
462 * Locate canonical hostname and its IP address.
463 */
464#ifndef NO_IPV6
465 {
466 struct addrinfo hints;
467 struct addrinfo *ai, *ai0;
468 int gai;
469 static char addrbuf[HOST_NAME_MAX + 1];
470
471 memset(&hints, 0, sizeof(hints));
472 hints.ai_flags = AI_CANONNAME;
473
474 gai = getaddrinfo(interp_table[INTERP_SLOT_HOST].value, 0, &hints, &ai0);
475 if (!gai) {
476 for (ai = ai0; ai; ai = ai->ai_next) {
477 struct sockaddr_in *sin_addr = (void *)ai->ai_addr;
478
dd467629
JL
479 inet_ntop(AF_INET, &sin_addr->sin_addr,
480 addrbuf, sizeof(addrbuf));
eb30aed7
JL
481 interp_set_entry(interp_table,
482 INTERP_SLOT_CANON_HOST, ai->ai_canonname);
483 interp_set_entry(interp_table,
484 INTERP_SLOT_IP, addrbuf);
dd467629
JL
485 break;
486 }
487 freeaddrinfo(ai0);
488 }
489 }
490#else
491 {
492 struct hostent *hent;
493 struct sockaddr_in sa;
494 char **ap;
495 static char addrbuf[HOST_NAME_MAX + 1];
496
497 hent = gethostbyname(interp_table[INTERP_SLOT_HOST].value);
dd467629
JL
498
499 ap = hent->h_addr_list;
500 memset(&sa, 0, sizeof sa);
501 sa.sin_family = hent->h_addrtype;
502 sa.sin_port = htons(0);
503 memcpy(&sa.sin_addr, *ap, hent->h_length);
504
505 inet_ntop(hent->h_addrtype, &sa.sin_addr,
506 addrbuf, sizeof(addrbuf));
eb30aed7
JL
507
508 interp_set_entry(interp_table, INTERP_SLOT_CANON_HOST, hent->h_name);
509 interp_set_entry(interp_table, INTERP_SLOT_IP, addrbuf);
dd467629
JL
510 }
511#endif
dd467629
JL
512}
513
514
5b276ee4 515static int execute(struct sockaddr *addr)
a87e8be2 516{
7d80694a 517 static char line[1000];
d819e4e6 518 int pktlen, len, i;
7d80694a 519
5b276ee4
DW
520 if (addr) {
521 char addrbuf[256] = "";
522 int port = -1;
523
524 if (addr->sa_family == AF_INET) {
525 struct sockaddr_in *sin_addr = (void *) addr;
526 inet_ntop(addr->sa_family, &sin_addr->sin_addr, addrbuf, sizeof(addrbuf));
c67359be 527 port = ntohs(sin_addr->sin_port);
5b276ee4
DW
528#ifndef NO_IPV6
529 } else if (addr && addr->sa_family == AF_INET6) {
530 struct sockaddr_in6 *sin6_addr = (void *) addr;
531
532 char *buf = addrbuf;
533 *buf++ = '['; *buf = '\0'; /* stpcpy() is cool */
534 inet_ntop(AF_INET6, &sin6_addr->sin6_addr, buf, sizeof(addrbuf) - 1);
535 strcat(buf, "]");
536
c67359be 537 port = ntohs(sin6_addr->sin6_port);
5b276ee4
DW
538#endif
539 }
540 loginfo("Connection from %s:%d", addrbuf, port);
541 }
542
960deccb 543 alarm(init_timeout ? init_timeout : timeout);
5ad312be 544 pktlen = packet_read_line(0, line, sizeof(line));
960deccb 545 alarm(0);
7d80694a 546
5ad312be
JL
547 len = strlen(line);
548 if (pktlen != len)
549 loginfo("Extended attributes (%d bytes) exist <%.*s>",
550 (int) pktlen - len,
551 (int) pktlen - len, line + len + 1);
83543a24 552 if (len && line[len-1] == '\n') {
7d80694a 553 line[--len] = 0;
83543a24
JH
554 pktlen--;
555 }
7d80694a 556
eb30aed7
JL
557 /*
558 * Initialize the path interpolation table for this connection.
559 */
560 interp_clear_table(interp_table, ARRAY_SIZE(interp_table));
561 interp_set_entry(interp_table, INTERP_SLOT_PERCENT, "%");
562
dd467629 563 if (len != pktlen) {
eb30aed7 564 parse_extra_args(interp_table, line + len + 1, pktlen - len - 1);
dd467629
JL
565 fill_in_extra_table_entries(interp_table);
566 }
49ba83fb 567
d819e4e6
JH
568 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
569 struct daemon_service *s = &(daemon_service[i]);
570 int namelen = strlen(s->name);
599065a3 571 if (!prefixcmp(line, "git-") &&
d819e4e6 572 !strncmp(s->name, line + 4, namelen) &&
49ba83fb 573 line[namelen + 4] == ' ') {
eb30aed7
JL
574 /*
575 * Note: The directory here is probably context sensitive,
576 * and might depend on the actual service being performed.
577 */
578 interp_set_entry(interp_table,
579 INTERP_SLOT_DIR, line + namelen + 5);
49ba83fb
JL
580 return run_service(interp_table, s);
581 }
d819e4e6 582 }
a87e8be2 583
f8ff0c06 584 logerror("Protocol error: '%s'", line);
a87e8be2
LT
585 return -1;
586}
587
66e631de
LT
588
589/*
590 * We count spawned/reaped separately, just to avoid any
591 * races when updating them from signals. The SIGCHLD handler
592 * will only update children_reaped, and the fork logic will
593 * only update children_spawned.
594 *
595 * MAX_CHILDREN should be a power-of-two to make the modulus
596 * operation cheap. It should also be at least twice
597 * the maximum number of connections we will ever allow.
598 */
599#define MAX_CHILDREN 128
600
601static int max_connections = 25;
602
603/* These are updated by the signal handler */
96f1e58f 604static volatile unsigned int children_reaped;
4d8fa916 605static pid_t dead_child[MAX_CHILDREN];
66e631de
LT
606
607/* These are updated by the main loop */
96f1e58f
DR
608static unsigned int children_spawned;
609static unsigned int children_deleted;
66e631de 610
4d8fa916 611static struct child {
66e631de 612 pid_t pid;
7fa09084 613 int addrlen;
df076bdb 614 struct sockaddr_storage address;
66e631de
LT
615} live_child[MAX_CHILDREN];
616
7fa09084 617static void add_child(int idx, pid_t pid, struct sockaddr *addr, int addrlen)
66e631de
LT
618{
619 live_child[idx].pid = pid;
620 live_child[idx].addrlen = addrlen;
df076bdb 621 memcpy(&live_child[idx].address, addr, addrlen);
66e631de
LT
622}
623
624/*
625 * Walk from "deleted" to "spawned", and remove child "pid".
626 *
627 * We move everything up by one, since the new "deleted" will
628 * be one higher.
629 */
630static void remove_child(pid_t pid, unsigned deleted, unsigned spawned)
631{
632 struct child n;
633
634 deleted %= MAX_CHILDREN;
635 spawned %= MAX_CHILDREN;
636 if (live_child[deleted].pid == pid) {
637 live_child[deleted].pid = -1;
638 return;
639 }
640 n = live_child[deleted];
641 for (;;) {
642 struct child m;
643 deleted = (deleted + 1) % MAX_CHILDREN;
644 if (deleted == spawned)
645 die("could not find dead child %d\n", pid);
646 m = live_child[deleted];
647 live_child[deleted] = n;
648 if (m.pid == pid)
649 return;
650 n = m;
651 }
652}
653
654/*
655 * This gets called if the number of connections grows
656 * past "max_connections".
657 *
658 * We _should_ start off by searching for connections
659 * from the same IP, and if there is some address wth
660 * multiple connections, we should kill that first.
661 *
662 * As it is, we just "randomly" kill 25% of the connections,
663 * and our pseudo-random generator sucks too. I have no
664 * shame.
665 *
666 * Really, this is just a place-holder for a _real_ algorithm.
667 */
02d57da4 668static void kill_some_children(int signo, unsigned start, unsigned stop)
66e631de
LT
669{
670 start %= MAX_CHILDREN;
671 stop %= MAX_CHILDREN;
672 while (start != stop) {
673 if (!(start & 3))
02d57da4 674 kill(live_child[start].pid, signo);
66e631de
LT
675 start = (start + 1) % MAX_CHILDREN;
676 }
677}
678
a5a9126b
JS
679static void check_dead_children(void)
680{
681 unsigned spawned, reaped, deleted;
682
683 spawned = children_spawned;
684 reaped = children_reaped;
685 deleted = children_deleted;
686
687 while (deleted < reaped) {
688 pid_t pid = dead_child[deleted % MAX_CHILDREN];
689 const char *dead = pid < 0 ? " (with error)" : "";
690
691 if (pid < 0)
692 pid = -pid;
693
694 /* XXX: Custom logging, since we don't wanna getpid() */
695 if (verbose) {
696 if (log_syslog)
697 syslog(LOG_INFO, "[%d] Disconnected%s",
698 pid, dead);
699 else
700 fprintf(stderr, "[%d] Disconnected%s\n",
701 pid, dead);
702 }
703 remove_child(pid, deleted, spawned);
704 deleted++;
705 }
706 children_deleted = deleted;
707}
708
02d57da4 709static void check_max_connections(void)
a87e8be2 710{
02d57da4 711 for (;;) {
eaa94919 712 int active;
a5a9126b
JS
713 unsigned spawned, deleted;
714
715 check_dead_children();
eaa94919 716
66e631de 717 spawned = children_spawned;
66e631de
LT
718 deleted = children_deleted;
719
66e631de 720 active = spawned - deleted;
02d57da4
LT
721 if (active <= max_connections)
722 break;
66e631de 723
02d57da4
LT
724 /* Kill some unstarted connections with SIGTERM */
725 kill_some_children(SIGTERM, deleted, spawned);
726 if (active <= max_connections << 1)
727 break;
728
729 /* If the SIGTERM thing isn't helping use SIGKILL */
730 kill_some_children(SIGKILL, deleted, spawned);
731 sleep(1);
732 }
733}
734
7fa09084 735static void handle(int incoming, struct sockaddr *addr, int addrlen)
02d57da4
LT
736{
737 pid_t pid = fork();
738
739 if (pid) {
740 unsigned idx;
741
742 close(incoming);
743 if (pid < 0)
744 return;
745
746 idx = children_spawned % MAX_CHILDREN;
747 children_spawned++;
748 add_child(idx, pid, addr, addrlen);
66e631de 749
02d57da4 750 check_max_connections();
a87e8be2
LT
751 return;
752 }
753
754 dup2(incoming, 0);
755 dup2(incoming, 1);
756 close(incoming);
f8ff0c06 757
5b276ee4 758 exit(execute(addr));
a87e8be2
LT
759}
760
eaa94919
LT
761static void child_handler(int signo)
762{
763 for (;;) {
9048fe1c
PB
764 int status;
765 pid_t pid = waitpid(-1, &status, WNOHANG);
66e631de
LT
766
767 if (pid > 0) {
768 unsigned reaped = children_reaped;
a5a9126b
JS
769 if (!WIFEXITED(status) || WEXITSTATUS(status) > 0)
770 pid = -pid;
66e631de
LT
771 dead_child[reaped % MAX_CHILDREN] = pid;
772 children_reaped = reaped + 1;
f9bbefc7 773 write(child_handler_pipe[1], &status, 1);
eaa94919
LT
774 continue;
775 }
776 break;
777 }
bd7b371e 778 signal(SIGCHLD, child_handler);
eaa94919
LT
779}
780
1955fabf
MW
781static int set_reuse_addr(int sockfd)
782{
783 int on = 1;
784
785 if (!reuseaddr)
786 return 0;
787 return setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
788 &on, sizeof(on));
789}
790
6573faff
PA
791#ifndef NO_IPV6
792
dd467629 793static int socksetup(char *listen_addr, int listen_port, int **socklist_p)
a87e8be2 794{
df076bdb
YH
795 int socknum = 0, *socklist = NULL;
796 int maxfd = -1;
df076bdb 797 char pbuf[NI_MAXSERV];
6573faff
PA
798 struct addrinfo hints, *ai0, *ai;
799 int gai;
20276889 800 long flags;
df076bdb 801
dd467629 802 sprintf(pbuf, "%d", listen_port);
df076bdb
YH
803 memset(&hints, 0, sizeof(hints));
804 hints.ai_family = AF_UNSPEC;
805 hints.ai_socktype = SOCK_STREAM;
806 hints.ai_protocol = IPPROTO_TCP;
807 hints.ai_flags = AI_PASSIVE;
808
dd467629 809 gai = getaddrinfo(listen_addr, pbuf, &hints, &ai0);
df076bdb
YH
810 if (gai)
811 die("getaddrinfo() failed: %s\n", gai_strerror(gai));
812
df076bdb
YH
813 for (ai = ai0; ai; ai = ai->ai_next) {
814 int sockfd;
df076bdb
YH
815
816 sockfd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
817 if (sockfd < 0)
818 continue;
819 if (sockfd >= FD_SETSIZE) {
df0daf8a 820 logerror("Socket descriptor too large");
df076bdb
YH
821 close(sockfd);
822 continue;
823 }
824
825#ifdef IPV6_V6ONLY
826 if (ai->ai_family == AF_INET6) {
827 int on = 1;
828 setsockopt(sockfd, IPPROTO_IPV6, IPV6_V6ONLY,
829 &on, sizeof(on));
830 /* Note: error is not fatal */
831 }
832#endif
833
1955fabf
MW
834 if (set_reuse_addr(sockfd)) {
835 close(sockfd);
0032d548 836 continue;
1955fabf
MW
837 }
838
df076bdb
YH
839 if (bind(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) {
840 close(sockfd);
841 continue; /* not fatal */
842 }
843 if (listen(sockfd, 5) < 0) {
844 close(sockfd);
845 continue; /* not fatal */
846 }
847
20276889
AJ
848 flags = fcntl(sockfd, F_GETFD, 0);
849 if (flags >= 0)
850 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
851
83572c1a 852 socklist = xrealloc(socklist, sizeof(int) * (socknum + 1));
df076bdb
YH
853 socklist[socknum++] = sockfd;
854
df076bdb
YH
855 if (maxfd < sockfd)
856 maxfd = sockfd;
857 }
858
859 freeaddrinfo(ai0);
860
6573faff
PA
861 *socklist_p = socklist;
862 return socknum;
863}
864
865#else /* NO_IPV6 */
866
100690b6 867static int socksetup(char *listen_addr, int listen_port, int **socklist_p)
6573faff
PA
868{
869 struct sockaddr_in sin;
870 int sockfd;
20276889 871 long flags;
6573faff 872
dd467629
JL
873 memset(&sin, 0, sizeof sin);
874 sin.sin_family = AF_INET;
875 sin.sin_port = htons(listen_port);
876
877 if (listen_addr) {
878 /* Well, host better be an IP address here. */
879 if (inet_pton(AF_INET, listen_addr, &sin.sin_addr.s_addr) <= 0)
880 return 0;
881 } else {
882 sin.sin_addr.s_addr = htonl(INADDR_ANY);
883 }
884
6573faff
PA
885 sockfd = socket(AF_INET, SOCK_STREAM, 0);
886 if (sockfd < 0)
887 return 0;
888
1955fabf
MW
889 if (set_reuse_addr(sockfd)) {
890 close(sockfd);
891 return 0;
892 }
893
6573faff
PA
894 if ( bind(sockfd, (struct sockaddr *)&sin, sizeof sin) < 0 ) {
895 close(sockfd);
896 return 0;
897 }
a87e8be2 898
f35230fb
PS
899 if (listen(sockfd, 5) < 0) {
900 close(sockfd);
901 return 0;
902 }
903
20276889
AJ
904 flags = fcntl(sockfd, F_GETFD, 0);
905 if (flags >= 0)
906 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
907
1b4713fb 908 *socklist_p = xmalloc(sizeof(int));
6573faff 909 **socklist_p = sockfd;
f35230fb 910 return 1;
6573faff
PA
911}
912
913#endif
914
915static int service_loop(int socknum, int *socklist)
916{
917 struct pollfd *pfd;
918 int i;
919
f9bbefc7
JS
920 if (pipe(child_handler_pipe) < 0)
921 die ("Could not set up pipe for child handler");
922
923 pfd = xcalloc(socknum + 1, sizeof(struct pollfd));
6573faff
PA
924
925 for (i = 0; i < socknum; i++) {
926 pfd[i].fd = socklist[i];
927 pfd[i].events = POLLIN;
928 }
f9bbefc7
JS
929 pfd[socknum].fd = child_handler_pipe[0];
930 pfd[socknum].events = POLLIN;
9220282a
PA
931
932 signal(SIGCHLD, child_handler);
a87e8be2
LT
933
934 for (;;) {
df076bdb 935 int i;
6573faff 936
f9bbefc7 937 if (poll(pfd, socknum + 1, -1) < 0) {
1eef0b33 938 if (errno != EINTR) {
df0daf8a 939 logerror("Poll failed, resuming: %s",
1eef0b33
JH
940 strerror(errno));
941 sleep(1);
942 }
df076bdb
YH
943 continue;
944 }
f9bbefc7
JS
945 if (pfd[socknum].revents & POLLIN) {
946 read(child_handler_pipe[0], &i, 1);
a5a9126b 947 check_dead_children();
a5a9126b 948 }
df076bdb
YH
949
950 for (i = 0; i < socknum; i++) {
6573faff 951 if (pfd[i].revents & POLLIN) {
df076bdb 952 struct sockaddr_storage ss;
7626e49e 953 unsigned int sslen = sizeof(ss);
6573faff 954 int incoming = accept(pfd[i].fd, (struct sockaddr *)&ss, &sslen);
df076bdb
YH
955 if (incoming < 0) {
956 switch (errno) {
957 case EAGAIN:
958 case EINTR:
959 case ECONNABORTED:
960 continue;
961 default:
962 die("accept returned %s", strerror(errno));
963 }
964 }
965 handle(incoming, (struct sockaddr *)&ss, sslen);
a87e8be2
LT
966 }
967 }
a87e8be2
LT
968 }
969}
970
258e93a1
ML
971/* if any standard file descriptor is missing open it to /dev/null */
972static void sanitize_stdfds(void)
973{
974 int fd = open("/dev/null", O_RDWR, 0);
975 while (fd != -1 && fd < 2)
976 fd = dup(fd);
977 if (fd == -1)
978 die("open /dev/null or dup failed: %s", strerror(errno));
979 if (fd > 2)
980 close(fd);
981}
982
a5262768
ML
983static void daemonize(void)
984{
985 switch (fork()) {
986 case 0:
987 break;
988 case -1:
989 die("fork failed: %s", strerror(errno));
990 default:
991 exit(0);
992 }
993 if (setsid() == -1)
994 die("setsid failed: %s", strerror(errno));
995 close(0);
996 close(1);
997 close(2);
998 sanitize_stdfds();
999}
1000
45ed5d7f
ML
1001static void store_pid(const char *path)
1002{
1003 FILE *f = fopen(path, "w");
1004 if (!f)
1005 die("cannot open pid file %s: %s", path, strerror(errno));
bc4e7d03
JM
1006 if (fprintf(f, "%d\n", getpid()) < 0 || fclose(f) != 0)
1007 die("failed to write pid file %s: %s", path, strerror(errno));
45ed5d7f
ML
1008}
1009
dd467629 1010static int serve(char *listen_addr, int listen_port, struct passwd *pass, gid_t gid)
6573faff
PA
1011{
1012 int socknum, *socklist;
4ae22d96 1013
dd467629 1014 socknum = socksetup(listen_addr, listen_port, &socklist);
6573faff 1015 if (socknum == 0)
dd467629
JL
1016 die("unable to allocate any listen sockets on host %s port %u",
1017 listen_addr, listen_port);
4ae22d96 1018
678dac6b
TS
1019 if (pass && gid &&
1020 (initgroups(pass->pw_name, gid) || setgid (gid) ||
1021 setuid(pass->pw_uid)))
1022 die("cannot drop privileges");
1023
6573faff 1024 return service_loop(socknum, socklist);
4ae22d96 1025}
6573faff 1026
a87e8be2
LT
1027int main(int argc, char **argv)
1028{
dd467629
JL
1029 int listen_port = 0;
1030 char *listen_addr = NULL;
e64e1b79 1031 int inetd_mode = 0;
678dac6b 1032 const char *pid_file = NULL, *user_name = NULL, *group_name = NULL;
a5262768 1033 int detach = 0;
678dac6b
TS
1034 struct passwd *pass = NULL;
1035 struct group *group;
1036 gid_t gid = 0;
a87e8be2
LT
1037 int i;
1038
f0b7367c
JH
1039 /* Without this we cannot rely on waitpid() to tell
1040 * what happened to our children.
1041 */
1042 signal(SIGCHLD, SIG_DFL);
1043
a87e8be2
LT
1044 for (i = 1; i < argc; i++) {
1045 char *arg = argv[i];
1046
cc44c765 1047 if (!prefixcmp(arg, "--listen=")) {
dd467629
JL
1048 char *p = arg + 9;
1049 char *ph = listen_addr = xmalloc(strlen(arg + 9) + 1);
1050 while (*p)
1051 *ph++ = tolower(*p++);
1052 *ph = 0;
1053 continue;
1054 }
cc44c765 1055 if (!prefixcmp(arg, "--port=")) {
a87e8be2
LT
1056 char *end;
1057 unsigned long n;
1058 n = strtoul(arg+7, &end, 0);
1059 if (arg[7] && !*end) {
dd467629 1060 listen_port = n;
a87e8be2
LT
1061 continue;
1062 }
1063 }
e64e1b79
LT
1064 if (!strcmp(arg, "--inetd")) {
1065 inetd_mode = 1;
a8883288 1066 log_syslog = 1;
e64e1b79
LT
1067 continue;
1068 }
f8ff0c06
PB
1069 if (!strcmp(arg, "--verbose")) {
1070 verbose = 1;
1071 continue;
1072 }
9048fe1c
PB
1073 if (!strcmp(arg, "--syslog")) {
1074 log_syslog = 1;
9048fe1c
PB
1075 continue;
1076 }
4ae95682
PA
1077 if (!strcmp(arg, "--export-all")) {
1078 export_all_trees = 1;
1079 continue;
1080 }
cc44c765 1081 if (!prefixcmp(arg, "--timeout=")) {
960deccb 1082 timeout = atoi(arg+10);
a8883288 1083 continue;
960deccb 1084 }
cc44c765 1085 if (!prefixcmp(arg, "--init-timeout=")) {
960deccb 1086 init_timeout = atoi(arg+15);
a8883288 1087 continue;
960deccb 1088 }
4dbd1352
AE
1089 if (!strcmp(arg, "--strict-paths")) {
1090 strict_paths = 1;
1091 continue;
1092 }
cc44c765 1093 if (!prefixcmp(arg, "--base-path=")) {
b21c31c9
PB
1094 base_path = arg+12;
1095 continue;
1096 }
73a7a656
JA
1097 if (!strcmp(arg, "--base-path-relaxed")) {
1098 base_path_relaxed = 1;
1099 continue;
1100 }
cc44c765 1101 if (!prefixcmp(arg, "--interpolated-path=")) {
49ba83fb
JL
1102 interpolated_path = arg+20;
1103 continue;
1104 }
1955fabf
MW
1105 if (!strcmp(arg, "--reuseaddr")) {
1106 reuseaddr = 1;
1107 continue;
1108 }
603968d2
JH
1109 if (!strcmp(arg, "--user-path")) {
1110 user_path = "";
1111 continue;
1112 }
cc44c765 1113 if (!prefixcmp(arg, "--user-path=")) {
603968d2
JH
1114 user_path = arg + 12;
1115 continue;
1116 }
cc44c765 1117 if (!prefixcmp(arg, "--pid-file=")) {
45ed5d7f
ML
1118 pid_file = arg + 11;
1119 continue;
1120 }
a5262768
ML
1121 if (!strcmp(arg, "--detach")) {
1122 detach = 1;
1123 log_syslog = 1;
1124 continue;
1125 }
cc44c765 1126 if (!prefixcmp(arg, "--user=")) {
678dac6b
TS
1127 user_name = arg + 7;
1128 continue;
1129 }
cc44c765 1130 if (!prefixcmp(arg, "--group=")) {
678dac6b
TS
1131 group_name = arg + 8;
1132 continue;
1133 }
cc44c765 1134 if (!prefixcmp(arg, "--enable=")) {
d819e4e6
JH
1135 enable_service(arg + 9, 1);
1136 continue;
1137 }
cc44c765 1138 if (!prefixcmp(arg, "--disable=")) {
d819e4e6
JH
1139 enable_service(arg + 10, 0);
1140 continue;
1141 }
cc44c765 1142 if (!prefixcmp(arg, "--allow-override=")) {
74c0cc21 1143 make_service_overridable(arg + 17, 1);
d819e4e6
JH
1144 continue;
1145 }
cc44c765 1146 if (!prefixcmp(arg, "--forbid-override=")) {
74c0cc21 1147 make_service_overridable(arg + 18, 0);
d819e4e6
JH
1148 continue;
1149 }
4ae95682
PA
1150 if (!strcmp(arg, "--")) {
1151 ok_paths = &argv[i+1];
1152 break;
1153 } else if (arg[0] != '-') {
1154 ok_paths = &argv[i];
1155 break;
1156 }
e64e1b79 1157
a87e8be2
LT
1158 usage(daemon_usage);
1159 }
1160
22665bba 1161 if (log_syslog) {
6a992e9e 1162 openlog("git-daemon", LOG_PID, LOG_DAEMON);
22665bba
JS
1163 set_die_routine(daemon_die);
1164 }
6a992e9e
SB
1165 else
1166 setlinebuf(stderr); /* avoid splitting a message in the middle */
22665bba 1167
678dac6b
TS
1168 if (inetd_mode && (group_name || user_name))
1169 die("--user and --group are incompatible with --inetd");
1170
dd467629
JL
1171 if (inetd_mode && (listen_port || listen_addr))
1172 die("--listen= and --port= are incompatible with --inetd");
1173 else if (listen_port == 0)
1174 listen_port = DEFAULT_GIT_PORT;
1175
678dac6b
TS
1176 if (group_name && !user_name)
1177 die("--group supplied without --user");
1178
1179 if (user_name) {
1180 pass = getpwnam(user_name);
1181 if (!pass)
1182 die("user not found - %s", user_name);
1183
1184 if (!group_name)
1185 gid = pass->pw_gid;
1186 else {
1187 group = getgrnam(group_name);
1188 if (!group)
1189 die("group not found - %s", group_name);
1190
1191 gid = group->gr_gid;
1192 }
1193 }
1194
ad8b4f56
ML
1195 if (strict_paths && (!ok_paths || !*ok_paths))
1196 die("option --strict-paths requires a whitelist");
1197
20632071
JS
1198 if (base_path) {
1199 struct stat st;
1200
1201 if (stat(base_path, &st) || !S_ISDIR(st.st_mode))
1202 die("base-path '%s' does not exist or "
1203 "is not a directory", base_path);
1204 }
1205
7c3693f1 1206 if (inetd_mode) {
5b276ee4
DW
1207 struct sockaddr_storage ss;
1208 struct sockaddr *peer = (struct sockaddr *)&ss;
1209 socklen_t slen = sizeof(ss);
1210
ba0012c3 1211 freopen("/dev/null", "w", stderr);
5b276ee4
DW
1212
1213 if (getpeername(0, peer, &slen))
1214 peer = NULL;
1215
1216 return execute(peer);
7c3693f1 1217 }
bce8230d 1218
6a992e9e 1219 if (detach) {
a5262768 1220 daemonize();
6a992e9e
SB
1221 loginfo("Ready to rumble");
1222 }
a5262768
ML
1223 else
1224 sanitize_stdfds();
258e93a1 1225
45ed5d7f
ML
1226 if (pid_file)
1227 store_pid(pid_file);
1228
dd467629 1229 return serve(listen_addr, listen_port, pass, gid);
a87e8be2 1230}