blob: 41a60af624ae661e9bd96a935ecdc855625b669e [file] [log] [blame]
Randal L. Schwartz979e32f2005-10-25 16:29:09 -07001#include "cache.h"
Junio C Hamano85023572006-12-19 14:34:12 -08002#include "pkt-line.h"
Michal Ostrowski77cb17e2006-01-10 21:12:17 -05003#include "exec_cmd.h"
Jon Loeliger49ba83f2006-09-19 20:31:51 -05004#include "interpolate.h"
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07005
Junio C Hamano85023572006-12-19 14:34:12 -08006#include <syslog.h>
7
Johannes Schindelin695dffe2006-09-28 12:00:35 +02008#ifndef HOST_NAME_MAX
9#define HOST_NAME_MAX 256
10#endif
11
Patrick Welche415e7b82007-10-18 18:17:39 +010012#ifndef NI_MAXSERV
13#define NI_MAXSERV 32
14#endif
15
Petr Baudis9048fe12005-09-24 16:13:01 +020016static int log_syslog;
Petr Baudisf8ff0c02005-09-22 11:25:28 +020017static int verbose;
Mark Wooding1955fab2006-02-03 20:27:04 +000018static int reuseaddr;
Petr Baudisf8ff0c02005-09-22 11:25:28 +020019
H. Peter Anvin960decc2005-10-19 14:27:01 -070020static const char daemon_usage[] =
Jon Loeligerdd467622006-09-26 09:47:43 -050021"git-daemon [--verbose] [--syslog] [--export-all]\n"
Petr Baudisb21c31c2005-12-23 02:27:40 +010022" [--timeout=n] [--init-timeout=n] [--strict-paths]\n"
Jens Axboe73a7a652007-07-27 14:00:29 -070023" [--base-path=path] [--base-path-relaxed]\n"
24" [--user-path | --user-path=path]\n"
Jon Loeliger49ba83f2006-09-19 20:31:51 -050025" [--interpolated-path=path]\n"
Tilman Sauerbeck678dac62006-08-22 19:37:41 +020026" [--reuseaddr] [--detach] [--pid-file=file]\n"
Junio C Hamanod9edcbd2006-09-07 01:40:04 -070027" [--[enable|disable|allow-override|forbid-override]=service]\n"
Jon Loeligerdd467622006-09-26 09:47:43 -050028" [--inetd | [--listen=host_or_ipaddr] [--port=n]\n"
29" [--user=user [--group=group]]\n"
30" [directory...]";
H. Peter Anvin4ae95682005-09-26 19:10:55 -070031
32/* List of acceptable pathname prefixes */
David Rientjes96f1e582006-08-15 10:23:48 -070033static char **ok_paths;
34static int strict_paths;
H. Peter Anvin4ae95682005-09-26 19:10:55 -070035
36/* If this is set, git-daemon-export-ok is not required */
David Rientjes96f1e582006-08-15 10:23:48 -070037static int export_all_trees;
Petr Baudisf8ff0c02005-09-22 11:25:28 +020038
Petr Baudisb21c31c2005-12-23 02:27:40 +010039/* Take all paths relative to this one if non-NULL */
David Rientjes96f1e582006-08-15 10:23:48 -070040static char *base_path;
Jon Loeliger49ba83f2006-09-19 20:31:51 -050041static char *interpolated_path;
Jens Axboe73a7a652007-07-27 14:00:29 -070042static int base_path_relaxed;
Jon Loeliger49ba83f2006-09-19 20:31:51 -050043
44/* Flag indicating client sent extra args. */
45static int saw_extended_args;
Petr Baudisb21c31c2005-12-23 02:27:40 +010046
Junio C Hamano603968d2006-02-04 22:27:29 -080047/* If defined, ~user notation is allowed and the string is inserted
48 * after ~user/. E.g. a request to git://host/~alice/frotz would
49 * go to /home/alice/pub_git/frotz with --user-path=pub_git.
50 */
David Rientjes96f1e582006-08-15 10:23:48 -070051static const char *user_path;
Junio C Hamano603968d2006-02-04 22:27:29 -080052
H. Peter Anvin960decc2005-10-19 14:27:01 -070053/* Timeout, and initial timeout */
David Rientjes96f1e582006-08-15 10:23:48 -070054static unsigned int timeout;
55static unsigned int init_timeout;
Petr Baudisf8ff0c02005-09-22 11:25:28 +020056
Jon Loeliger49ba83f2006-09-19 20:31:51 -050057/*
58 * Static table for now. Ugh.
59 * Feel free to make dynamic as needed.
60 */
61#define INTERP_SLOT_HOST (0)
Jon Loeligerdd467622006-09-26 09:47:43 -050062#define INTERP_SLOT_CANON_HOST (1)
63#define INTERP_SLOT_IP (2)
64#define INTERP_SLOT_PORT (3)
65#define INTERP_SLOT_DIR (4)
66#define INTERP_SLOT_PERCENT (5)
Jon Loeliger49ba83f2006-09-19 20:31:51 -050067
68static struct interp interp_table[] = {
69 { "%H", 0},
Jon Loeligerdd467622006-09-26 09:47:43 -050070 { "%CH", 0},
71 { "%IP", 0},
72 { "%P", 0},
Jon Loeliger49ba83f2006-09-19 20:31:51 -050073 { "%D", 0},
Jon Loeligereb30aed2006-09-27 11:16:10 -050074 { "%%", 0},
Jon Loeliger49ba83f2006-09-19 20:31:51 -050075};
76
77
Petr Baudis9048fe12005-09-24 16:13:01 +020078static void logreport(int priority, const char *err, va_list params)
Petr Baudisf8ff0c02005-09-22 11:25:28 +020079{
80 /* We should do a single write so that it is atomic and output
81 * of several processes do not get intermingled. */
82 char buf[1024];
83 int buflen;
84 int maxlen, msglen;
85
86 /* sizeof(buf) should be big enough for "[pid] \n" */
Junio C Hamano1bedd4c2005-09-23 23:26:55 -070087 buflen = snprintf(buf, sizeof(buf), "[%ld] ", (long) getpid());
Petr Baudisf8ff0c02005-09-22 11:25:28 +020088
89 maxlen = sizeof(buf) - buflen - 1; /* -1 for our own LF */
90 msglen = vsnprintf(buf + buflen, maxlen, err, params);
91
Petr Baudis9048fe12005-09-24 16:13:01 +020092 if (log_syslog) {
93 syslog(priority, "%s", buf);
94 return;
95 }
96
Petr Baudisf8ff0c02005-09-22 11:25:28 +020097 /* maxlen counted our own LF but also counts space given to
98 * vsnprintf for the terminating NUL. We want to make sure that
99 * we have space for our own LF and NUL after the "meat" of the
100 * message, so truncate it at maxlen - 1.
101 */
102 if (msglen > maxlen - 1)
103 msglen = maxlen - 1;
104 else if (msglen < 0)
105 msglen = 0; /* Protect against weird return values. */
106 buflen += msglen;
107
108 buf[buflen++] = '\n';
109 buf[buflen] = '\0';
110
Andy Whitcroft93822c22007-01-08 15:58:23 +0000111 write_in_full(2, buf, buflen);
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200112}
113
Pavel Roskincdda4742005-09-29 16:53:14 -0400114static void logerror(const char *err, ...)
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200115{
116 va_list params;
117 va_start(params, err);
Petr Baudis9048fe12005-09-24 16:13:01 +0200118 logreport(LOG_ERR, err, params);
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200119 va_end(params);
120}
121
Pavel Roskincdda4742005-09-29 16:53:14 -0400122static void loginfo(const char *err, ...)
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200123{
124 va_list params;
125 if (!verbose)
126 return;
127 va_start(params, err);
Petr Baudis9048fe12005-09-24 16:13:01 +0200128 logreport(LOG_INFO, err, params);
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200129 va_end(params);
130}
131
Matthias Lederhoferad8b4f52006-07-13 12:02:29 +0200132static void NORETURN daemon_die(const char *err, va_list params)
133{
134 logreport(LOG_ERR, err, params);
135 exit(1);
136}
137
Junio C Hamanod79374c2005-12-03 01:45:57 -0800138static int avoid_alias(char *p)
139{
140 int sl, ndot;
141
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700142 /*
Junio C Hamanod79374c2005-12-03 01:45:57 -0800143 * This resurrects the belts and suspenders paranoia check by HPA
144 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
145 * does not do getcwd() based path canonicalizations.
146 *
147 * sl becomes true immediately after seeing '/' and continues to
148 * be true as long as dots continue after that without intervening
149 * non-dot character.
150 */
151 if (!p || (*p != '/' && *p != '~'))
152 return -1;
153 sl = 1; ndot = 0;
154 p++;
155
156 while (1) {
157 char ch = *p++;
158 if (sl) {
159 if (ch == '.')
160 ndot++;
161 else if (ch == '/') {
162 if (ndot < 3)
163 /* reject //, /./ and /../ */
164 return -1;
165 ndot = 0;
166 }
167 else if (ch == 0) {
168 if (0 < ndot && ndot < 3)
169 /* reject /.$ and /..$ */
170 return -1;
171 return 0;
172 }
173 else
174 sl = ndot = 0;
175 }
176 else if (ch == 0)
177 return 0;
178 else if (ch == '/') {
179 sl = 1;
180 ndot = 0;
181 }
182 }
183}
184
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500185static char *path_ok(struct interp *itable)
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700186{
Junio C Hamano603968d2006-02-04 22:27:29 -0800187 static char rpath[PATH_MAX];
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500188 static char interp_path[PATH_MAX];
Jens Axboe73a7a652007-07-27 14:00:29 -0700189 int retried_path = 0;
Junio C Hamanod79374c2005-12-03 01:45:57 -0800190 char *path;
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500191 char *dir;
192
193 dir = itable[INTERP_SLOT_DIR].value;
Junio C Hamanod79374c2005-12-03 01:45:57 -0800194
195 if (avoid_alias(dir)) {
196 logerror("'%s': aliased", dir);
197 return NULL;
198 }
199
Junio C Hamano603968d2006-02-04 22:27:29 -0800200 if (*dir == '~') {
201 if (!user_path) {
202 logerror("'%s': User-path not allowed", dir);
203 return NULL;
204 }
205 if (*user_path) {
206 /* Got either "~alice" or "~alice/foo";
207 * rewrite them to "~alice/%s" or
208 * "~alice/%s/foo".
209 */
210 int namlen, restlen = strlen(dir);
211 char *slash = strchr(dir, '/');
212 if (!slash)
213 slash = dir + restlen;
214 namlen = slash - dir;
215 restlen -= namlen;
216 loginfo("userpath <%s>, request <%s>, namlen %d, restlen %d, slash <%s>", user_path, dir, namlen, restlen, slash);
217 snprintf(rpath, PATH_MAX, "%.*s/%s%.*s",
218 namlen, dir, user_path, restlen, slash);
219 dir = rpath;
220 }
221 }
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500222 else if (interpolated_path && saw_extended_args) {
223 if (*dir != '/') {
224 /* Allow only absolute */
225 logerror("'%s': Non-absolute path denied (interpolated-path active)", dir);
226 return NULL;
227 }
228
229 interpolate(interp_path, PATH_MAX, interpolated_path,
230 interp_table, ARRAY_SIZE(interp_table));
231 loginfo("Interpolated dir '%s'", interp_path);
232
233 dir = interp_path;
234 }
Junio C Hamano603968d2006-02-04 22:27:29 -0800235 else if (base_path) {
236 if (*dir != '/') {
237 /* Allow only absolute */
Mark Wooding1fda3d52006-02-03 20:27:02 +0000238 logerror("'%s': Non-absolute path denied (base-path active)", dir);
Petr Baudisb21c31c2005-12-23 02:27:40 +0100239 return NULL;
240 }
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500241 snprintf(rpath, PATH_MAX, "%s%s", base_path, dir);
242 dir = rpath;
Petr Baudisb21c31c2005-12-23 02:27:40 +0100243 }
244
Jens Axboe73a7a652007-07-27 14:00:29 -0700245 do {
246 path = enter_repo(dir, strict_paths);
247 if (path)
248 break;
249
250 /*
251 * if we fail and base_path_relaxed is enabled, try without
252 * prefixing the base path
253 */
254 if (base_path && base_path_relaxed && !retried_path) {
255 dir = itable[INTERP_SLOT_DIR].value;
256 retried_path = 1;
257 continue;
258 }
259 break;
260 } while (1);
H. Peter Anvin3e04c622005-10-18 18:26:52 -0700261
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100262 if (!path) {
263 logerror("'%s': unable to chdir or not a git archive", dir);
264 return NULL;
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700265 }
266
267 if ( ok_paths && *ok_paths ) {
Junio C Hamanoce335fe2005-11-21 01:21:18 -0800268 char **pp;
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100269 int pathlen = strlen(path);
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700270
Junio C Hamanoce335fe2005-11-21 01:21:18 -0800271 /* The validation is done on the paths after enter_repo
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700272 * appends optional {.git,.git/.git} and friends, but
Junio C Hamanod79374c2005-12-03 01:45:57 -0800273 * it does not use getcwd(). So if your /pub is
274 * a symlink to /mnt/pub, you can whitelist /pub and
275 * do not have to say /mnt/pub.
276 * Do not say /pub/.
Junio C Hamanoce335fe2005-11-21 01:21:18 -0800277 */
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700278 for ( pp = ok_paths ; *pp ; pp++ ) {
279 int len = strlen(*pp);
Junio C Hamanoce335fe2005-11-21 01:21:18 -0800280 if (len <= pathlen &&
281 !memcmp(*pp, path, len) &&
282 (path[len] == '\0' ||
283 (!strict_paths && path[len] == '/')))
284 return path;
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700285 }
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100286 }
287 else {
288 /* be backwards compatible */
289 if (!strict_paths)
290 return path;
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700291 }
292
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100293 logerror("'%s': not in whitelist", path);
294 return NULL; /* Fallthrough. Deny by default */
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700295}
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700296
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700297typedef int (*daemon_service_fn)(void);
298struct daemon_service {
299 const char *name;
300 const char *config_name;
301 daemon_service_fn fn;
302 int enabled;
303 int overridable;
304};
H. Peter Anvin4ae95682005-09-26 19:10:55 -0700305
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700306static struct daemon_service *service_looking_at;
307static int service_enabled;
308
309static int git_daemon_config(const char *var, const char *value)
310{
Junio C Hamanocc44c762007-02-20 01:53:29 -0800311 if (!prefixcmp(var, "daemon.") &&
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700312 !strcmp(var + 7, service_looking_at->config_name)) {
313 service_enabled = git_config_bool(var, value);
314 return 0;
315 }
316
317 /* we are not interested in parsing any other configuration here */
318 return 0;
319}
320
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500321static int run_service(struct interp *itable, struct daemon_service *service)
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700322{
323 const char *path;
324 int enabled = service->enabled;
325
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500326 loginfo("Request %s for '%s'",
327 service->name,
328 itable[INTERP_SLOT_DIR].value);
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700329
330 if (!enabled && !service->overridable) {
331 logerror("'%s': service not enabled.", service->name);
332 errno = EACCES;
333 return -1;
334 }
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100335
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500336 if (!(path = path_ok(itable)))
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700337 return -1;
H. Peter Anvin47888f02005-09-27 08:49:40 -0700338
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700339 /*
340 * Security on the cheap.
341 *
Junio C Hamanoa935c392005-10-20 23:19:36 -0700342 * We want a readable HEAD, usable "objects" directory, and
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700343 * a "git-daemon-export-ok" flag that says that the other side
344 * is ok with us doing this.
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100345 *
346 * path_ok() uses enter_repo() and does whitelist checking.
347 * We only need to make sure the repository is exported.
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700348 */
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100349
H. Peter Anvin3e04c622005-10-18 18:26:52 -0700350 if (!export_all_trees && access("git-daemon-export-ok", F_OK)) {
Andreas Ericsson4dbd1352005-11-17 20:37:14 +0100351 logerror("'%s': repository not exported.", path);
H. Peter Anvin3e04c622005-10-18 18:26:52 -0700352 errno = EACCES;
353 return -1;
354 }
355
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700356 if (service->overridable) {
357 service_looking_at = service;
358 service_enabled = -1;
359 git_config(git_daemon_config);
360 if (0 <= service_enabled)
361 enabled = service_enabled;
362 }
363 if (!enabled) {
364 logerror("'%s': service not enabled for '%s'",
365 service->name, path);
366 errno = EACCES;
367 return -1;
368 }
369
Linus Torvalds02d57da2005-07-15 22:53:31 -0700370 /*
371 * We'll ignore SIGTERM from now on, we have a
372 * good client.
373 */
374 signal(SIGTERM, SIG_IGN);
375
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700376 return service->fn();
377}
378
379static int upload_pack(void)
380{
381 /* Timeout as string */
382 char timeout_buf[64];
383
H. Peter Anvin960decc2005-10-19 14:27:01 -0700384 snprintf(timeout_buf, sizeof timeout_buf, "--timeout=%u", timeout);
385
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700386 /* git-upload-pack only ever reads stuff, so this is safe */
Michal Ostrowski77cb17e2006-01-10 21:12:17 -0500387 execl_git_cmd("upload-pack", "--strict", timeout_buf, ".", NULL);
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700388 return -1;
389}
390
Franck Bui-Huu39345a22006-09-07 15:12:05 +0200391static int upload_archive(void)
392{
393 execl_git_cmd("upload-archive", ".", NULL);
394 return -1;
395}
396
Linus Torvalds4b3b1e12007-01-21 11:04:13 -0800397static int receive_pack(void)
398{
399 execl_git_cmd("receive-pack", ".", NULL);
400 return -1;
401}
402
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700403static struct daemon_service daemon_service[] = {
Franck Bui-Huu39345a22006-09-07 15:12:05 +0200404 { "upload-archive", "uploadarch", upload_archive, 0, 1 },
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700405 { "upload-pack", "uploadpack", upload_pack, 1, 1 },
Linus Torvalds4b3b1e12007-01-21 11:04:13 -0800406 { "receive-pack", "receivepack", receive_pack, 0, 1 },
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700407};
408
Junio C Hamanof3fa1832007-11-08 15:35:32 -0800409static void enable_service(const char *name, int ena)
410{
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700411 int i;
412 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
413 if (!strcmp(daemon_service[i].name, name)) {
414 daemon_service[i].enabled = ena;
415 return;
416 }
417 }
418 die("No such service %s", name);
419}
420
Junio C Hamanof3fa1832007-11-08 15:35:32 -0800421static void make_service_overridable(const char *name, int ena)
422{
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700423 int i;
424 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
425 if (!strcmp(daemon_service[i].name, name)) {
426 daemon_service[i].overridable = ena;
427 return;
428 }
429 }
430 die("No such service %s", name);
431}
432
Jon Loeligereb30aed2006-09-27 11:16:10 -0500433/*
434 * Separate the "extra args" information as supplied by the client connection.
Pavel Roskin3dff5372007-02-03 23:49:16 -0500435 * Any resulting data is squirreled away in the given interpolation table.
Jon Loeligereb30aed2006-09-27 11:16:10 -0500436 */
437static void parse_extra_args(struct interp *table, char *extra_args, int buflen)
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500438{
439 char *val;
440 int vallen;
441 char *end = extra_args + buflen;
442
443 while (extra_args < end && *extra_args) {
444 saw_extended_args = 1;
445 if (strncasecmp("host=", extra_args, 5) == 0) {
446 val = extra_args + 5;
447 vallen = strlen(val) + 1;
448 if (*val) {
Jon Loeligereb30aed2006-09-27 11:16:10 -0500449 /* Split <host>:<port> at colon. */
450 char *host = val;
451 char *port = strrchr(host, ':');
Jon Loeligerdd467622006-09-26 09:47:43 -0500452 if (port) {
453 *port = 0;
454 port++;
Jon Loeligereb30aed2006-09-27 11:16:10 -0500455 interp_set_entry(table, INTERP_SLOT_PORT, port);
Jon Loeligerdd467622006-09-26 09:47:43 -0500456 }
Jon Loeligereb30aed2006-09-27 11:16:10 -0500457 interp_set_entry(table, INTERP_SLOT_HOST, host);
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500458 }
Jon Loeligereb30aed2006-09-27 11:16:10 -0500459
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500460 /* On to the next one */
461 extra_args = val + vallen;
462 }
463 }
464}
465
Pierre Habouzit52fae7d2007-06-07 22:45:00 +0200466static void fill_in_extra_table_entries(struct interp *itable)
Jon Loeligerdd467622006-09-26 09:47:43 -0500467{
468 char *hp;
Jon Loeligerdd467622006-09-26 09:47:43 -0500469
470 /*
471 * Replace literal host with lowercase-ized hostname.
472 */
473 hp = interp_table[INTERP_SLOT_HOST].value;
Junio C Hamano83543a22006-10-23 18:26:05 -0700474 if (!hp)
475 return;
Jon Loeligerdd467622006-09-26 09:47:43 -0500476 for ( ; *hp; hp++)
477 *hp = tolower(*hp);
478
479 /*
480 * Locate canonical hostname and its IP address.
481 */
482#ifndef NO_IPV6
483 {
484 struct addrinfo hints;
485 struct addrinfo *ai, *ai0;
486 int gai;
487 static char addrbuf[HOST_NAME_MAX + 1];
488
489 memset(&hints, 0, sizeof(hints));
490 hints.ai_flags = AI_CANONNAME;
491
492 gai = getaddrinfo(interp_table[INTERP_SLOT_HOST].value, 0, &hints, &ai0);
493 if (!gai) {
494 for (ai = ai0; ai; ai = ai->ai_next) {
495 struct sockaddr_in *sin_addr = (void *)ai->ai_addr;
496
Jon Loeligerdd467622006-09-26 09:47:43 -0500497 inet_ntop(AF_INET, &sin_addr->sin_addr,
498 addrbuf, sizeof(addrbuf));
Jon Loeligereb30aed2006-09-27 11:16:10 -0500499 interp_set_entry(interp_table,
500 INTERP_SLOT_CANON_HOST, ai->ai_canonname);
501 interp_set_entry(interp_table,
502 INTERP_SLOT_IP, addrbuf);
Jon Loeligerdd467622006-09-26 09:47:43 -0500503 break;
504 }
505 freeaddrinfo(ai0);
506 }
507 }
508#else
509 {
510 struct hostent *hent;
511 struct sockaddr_in sa;
512 char **ap;
513 static char addrbuf[HOST_NAME_MAX + 1];
514
515 hent = gethostbyname(interp_table[INTERP_SLOT_HOST].value);
Jon Loeligerdd467622006-09-26 09:47:43 -0500516
517 ap = hent->h_addr_list;
518 memset(&sa, 0, sizeof sa);
519 sa.sin_family = hent->h_addrtype;
520 sa.sin_port = htons(0);
521 memcpy(&sa.sin_addr, *ap, hent->h_length);
522
523 inet_ntop(hent->h_addrtype, &sa.sin_addr,
524 addrbuf, sizeof(addrbuf));
Jon Loeligereb30aed2006-09-27 11:16:10 -0500525
526 interp_set_entry(interp_table, INTERP_SLOT_CANON_HOST, hent->h_name);
527 interp_set_entry(interp_table, INTERP_SLOT_IP, addrbuf);
Jon Loeligerdd467622006-09-26 09:47:43 -0500528 }
529#endif
Jon Loeligerdd467622006-09-26 09:47:43 -0500530}
531
532
David Woodhouse5b276ee2006-06-20 15:38:13 +0100533static int execute(struct sockaddr *addr)
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700534{
Linus Torvalds7d806942005-07-15 09:27:05 -0700535 static char line[1000];
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700536 int pktlen, len, i;
Linus Torvalds7d806942005-07-15 09:27:05 -0700537
David Woodhouse5b276ee2006-06-20 15:38:13 +0100538 if (addr) {
539 char addrbuf[256] = "";
540 int port = -1;
541
542 if (addr->sa_family == AF_INET) {
543 struct sockaddr_in *sin_addr = (void *) addr;
544 inet_ntop(addr->sa_family, &sin_addr->sin_addr, addrbuf, sizeof(addrbuf));
Gerrit Papec67359b2007-11-05 09:16:22 +0000545 port = ntohs(sin_addr->sin_port);
David Woodhouse5b276ee2006-06-20 15:38:13 +0100546#ifndef NO_IPV6
547 } else if (addr && addr->sa_family == AF_INET6) {
548 struct sockaddr_in6 *sin6_addr = (void *) addr;
549
550 char *buf = addrbuf;
551 *buf++ = '['; *buf = '\0'; /* stpcpy() is cool */
552 inet_ntop(AF_INET6, &sin6_addr->sin6_addr, buf, sizeof(addrbuf) - 1);
553 strcat(buf, "]");
554
Gerrit Papec67359b2007-11-05 09:16:22 +0000555 port = ntohs(sin6_addr->sin6_port);
David Woodhouse5b276ee2006-06-20 15:38:13 +0100556#endif
557 }
558 loginfo("Connection from %s:%d", addrbuf, port);
559 }
560
H. Peter Anvin960decc2005-10-19 14:27:01 -0700561 alarm(init_timeout ? init_timeout : timeout);
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500562 pktlen = packet_read_line(0, line, sizeof(line));
H. Peter Anvin960decc2005-10-19 14:27:01 -0700563 alarm(0);
Linus Torvalds7d806942005-07-15 09:27:05 -0700564
Jon Loeliger5ad312b2006-06-06 22:58:41 -0500565 len = strlen(line);
566 if (pktlen != len)
567 loginfo("Extended attributes (%d bytes) exist <%.*s>",
568 (int) pktlen - len,
569 (int) pktlen - len, line + len + 1);
Junio C Hamano83543a22006-10-23 18:26:05 -0700570 if (len && line[len-1] == '\n') {
Linus Torvalds7d806942005-07-15 09:27:05 -0700571 line[--len] = 0;
Junio C Hamano83543a22006-10-23 18:26:05 -0700572 pktlen--;
573 }
Linus Torvalds7d806942005-07-15 09:27:05 -0700574
Jon Loeligereb30aed2006-09-27 11:16:10 -0500575 /*
576 * Initialize the path interpolation table for this connection.
577 */
578 interp_clear_table(interp_table, ARRAY_SIZE(interp_table));
579 interp_set_entry(interp_table, INTERP_SLOT_PERCENT, "%");
580
Jon Loeligerdd467622006-09-26 09:47:43 -0500581 if (len != pktlen) {
Jon Loeligereb30aed2006-09-27 11:16:10 -0500582 parse_extra_args(interp_table, line + len + 1, pktlen - len - 1);
Jon Loeligerdd467622006-09-26 09:47:43 -0500583 fill_in_extra_table_entries(interp_table);
584 }
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500585
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700586 for (i = 0; i < ARRAY_SIZE(daemon_service); i++) {
587 struct daemon_service *s = &(daemon_service[i]);
588 int namelen = strlen(s->name);
Junio C Hamano599065a2007-02-20 01:54:00 -0800589 if (!prefixcmp(line, "git-") &&
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700590 !strncmp(s->name, line + 4, namelen) &&
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500591 line[namelen + 4] == ' ') {
Jon Loeligereb30aed2006-09-27 11:16:10 -0500592 /*
593 * Note: The directory here is probably context sensitive,
594 * and might depend on the actual service being performed.
595 */
596 interp_set_entry(interp_table,
597 INTERP_SLOT_DIR, line + namelen + 5);
Jon Loeliger49ba83f2006-09-19 20:31:51 -0500598 return run_service(interp_table, s);
599 }
Junio C Hamanod819e4e2006-08-20 19:03:13 -0700600 }
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700601
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200602 logerror("Protocol error: '%s'", line);
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700603 return -1;
604}
605
Linus Torvalds66e631d2005-07-15 21:51:57 -0700606
607/*
608 * We count spawned/reaped separately, just to avoid any
609 * races when updating them from signals. The SIGCHLD handler
610 * will only update children_reaped, and the fork logic will
611 * only update children_spawned.
612 *
613 * MAX_CHILDREN should be a power-of-two to make the modulus
614 * operation cheap. It should also be at least twice
615 * the maximum number of connections we will ever allow.
616 */
617#define MAX_CHILDREN 128
618
619static int max_connections = 25;
620
621/* These are updated by the signal handler */
David Rientjes96f1e582006-08-15 10:23:48 -0700622static volatile unsigned int children_reaped;
Linus Torvalds4d8fa912005-08-01 12:11:53 -0700623static pid_t dead_child[MAX_CHILDREN];
Linus Torvalds66e631d2005-07-15 21:51:57 -0700624
625/* These are updated by the main loop */
David Rientjes96f1e582006-08-15 10:23:48 -0700626static unsigned int children_spawned;
627static unsigned int children_deleted;
Linus Torvalds66e631d2005-07-15 21:51:57 -0700628
Linus Torvalds4d8fa912005-08-01 12:11:53 -0700629static struct child {
Linus Torvalds66e631d2005-07-15 21:51:57 -0700630 pid_t pid;
Junio C Hamano7fa09082005-09-11 13:58:41 -0700631 int addrlen;
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400632 struct sockaddr_storage address;
Linus Torvalds66e631d2005-07-15 21:51:57 -0700633} live_child[MAX_CHILDREN];
634
Junio C Hamano7fa09082005-09-11 13:58:41 -0700635static void add_child(int idx, pid_t pid, struct sockaddr *addr, int addrlen)
Linus Torvalds66e631d2005-07-15 21:51:57 -0700636{
637 live_child[idx].pid = pid;
638 live_child[idx].addrlen = addrlen;
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400639 memcpy(&live_child[idx].address, addr, addrlen);
Linus Torvalds66e631d2005-07-15 21:51:57 -0700640}
641
642/*
643 * Walk from "deleted" to "spawned", and remove child "pid".
644 *
645 * We move everything up by one, since the new "deleted" will
646 * be one higher.
647 */
648static void remove_child(pid_t pid, unsigned deleted, unsigned spawned)
649{
650 struct child n;
651
652 deleted %= MAX_CHILDREN;
653 spawned %= MAX_CHILDREN;
654 if (live_child[deleted].pid == pid) {
655 live_child[deleted].pid = -1;
656 return;
657 }
658 n = live_child[deleted];
659 for (;;) {
660 struct child m;
661 deleted = (deleted + 1) % MAX_CHILDREN;
662 if (deleted == spawned)
663 die("could not find dead child %d\n", pid);
664 m = live_child[deleted];
665 live_child[deleted] = n;
666 if (m.pid == pid)
667 return;
668 n = m;
669 }
670}
671
672/*
673 * This gets called if the number of connections grows
674 * past "max_connections".
675 *
676 * We _should_ start off by searching for connections
677 * from the same IP, and if there is some address wth
678 * multiple connections, we should kill that first.
679 *
680 * As it is, we just "randomly" kill 25% of the connections,
681 * and our pseudo-random generator sucks too. I have no
682 * shame.
683 *
684 * Really, this is just a place-holder for a _real_ algorithm.
685 */
Linus Torvalds02d57da2005-07-15 22:53:31 -0700686static void kill_some_children(int signo, unsigned start, unsigned stop)
Linus Torvalds66e631d2005-07-15 21:51:57 -0700687{
688 start %= MAX_CHILDREN;
689 stop %= MAX_CHILDREN;
690 while (start != stop) {
691 if (!(start & 3))
Linus Torvalds02d57da2005-07-15 22:53:31 -0700692 kill(live_child[start].pid, signo);
Linus Torvalds66e631d2005-07-15 21:51:57 -0700693 start = (start + 1) % MAX_CHILDREN;
694 }
695}
696
Linus Torvalds02d57da2005-07-15 22:53:31 -0700697static void check_max_connections(void)
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700698{
Linus Torvalds02d57da2005-07-15 22:53:31 -0700699 for (;;) {
Linus Torvaldseaa94912005-07-15 20:42:28 -0700700 int active;
Linus Torvalds66e631d2005-07-15 21:51:57 -0700701 unsigned spawned, reaped, deleted;
Linus Torvaldseaa94912005-07-15 20:42:28 -0700702
Linus Torvalds66e631d2005-07-15 21:51:57 -0700703 spawned = children_spawned;
Linus Torvalds66e631d2005-07-15 21:51:57 -0700704 reaped = children_reaped;
705 deleted = children_deleted;
706
707 while (deleted < reaped) {
708 pid_t pid = dead_child[deleted % MAX_CHILDREN];
709 remove_child(pid, deleted, spawned);
710 deleted++;
Linus Torvaldseaa94912005-07-15 20:42:28 -0700711 }
Linus Torvalds66e631d2005-07-15 21:51:57 -0700712 children_deleted = deleted;
713
714 active = spawned - deleted;
Linus Torvalds02d57da2005-07-15 22:53:31 -0700715 if (active <= max_connections)
716 break;
Linus Torvalds66e631d2005-07-15 21:51:57 -0700717
Linus Torvalds02d57da2005-07-15 22:53:31 -0700718 /* Kill some unstarted connections with SIGTERM */
719 kill_some_children(SIGTERM, deleted, spawned);
720 if (active <= max_connections << 1)
721 break;
Linus Torvalds66e631d2005-07-15 21:51:57 -0700722
Linus Torvalds02d57da2005-07-15 22:53:31 -0700723 /* If the SIGTERM thing isn't helping use SIGKILL */
724 kill_some_children(SIGKILL, deleted, spawned);
725 sleep(1);
726 }
727}
728
Junio C Hamano7fa09082005-09-11 13:58:41 -0700729static void handle(int incoming, struct sockaddr *addr, int addrlen)
Linus Torvalds02d57da2005-07-15 22:53:31 -0700730{
731 pid_t pid = fork();
732
733 if (pid) {
734 unsigned idx;
735
736 close(incoming);
737 if (pid < 0)
738 return;
739
740 idx = children_spawned % MAX_CHILDREN;
741 children_spawned++;
742 add_child(idx, pid, addr, addrlen);
743
744 check_max_connections();
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700745 return;
746 }
747
748 dup2(incoming, 0);
749 dup2(incoming, 1);
750 close(incoming);
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200751
David Woodhouse5b276ee2006-06-20 15:38:13 +0100752 exit(execute(addr));
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700753}
754
Linus Torvaldseaa94912005-07-15 20:42:28 -0700755static void child_handler(int signo)
756{
757 for (;;) {
Petr Baudis9048fe12005-09-24 16:13:01 +0200758 int status;
759 pid_t pid = waitpid(-1, &status, WNOHANG);
Linus Torvalds66e631d2005-07-15 21:51:57 -0700760
761 if (pid > 0) {
762 unsigned reaped = children_reaped;
763 dead_child[reaped % MAX_CHILDREN] = pid;
764 children_reaped = reaped + 1;
Petr Baudisf8ff0c02005-09-22 11:25:28 +0200765 /* XXX: Custom logging, since we don't wanna getpid() */
Petr Baudis9048fe12005-09-24 16:13:01 +0200766 if (verbose) {
Timo Hirvonen554fe202006-06-28 12:04:39 +0300767 const char *dead = "";
Petr Baudis9048fe12005-09-24 16:13:01 +0200768 if (!WIFEXITED(status) || WEXITSTATUS(status) > 0)
769 dead = " (with error)";
770 if (log_syslog)
771 syslog(LOG_INFO, "[%d] Disconnected%s", pid, dead);
772 else
773 fprintf(stderr, "[%d] Disconnected%s\n", pid, dead);
774 }
Linus Torvaldseaa94912005-07-15 20:42:28 -0700775 continue;
776 }
777 break;
778 }
779}
780
Mark Wooding1955fab2006-02-03 20:27:04 +0000781static 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
Peter Anvin6573faf2005-09-28 17:26:44 -0700791#ifndef NO_IPV6
792
Jon Loeligerdd467622006-09-26 09:47:43 -0500793static int socksetup(char *listen_addr, int listen_port, int **socklist_p)
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700794{
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400795 int socknum = 0, *socklist = NULL;
796 int maxfd = -1;
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400797 char pbuf[NI_MAXSERV];
Peter Anvin6573faf2005-09-28 17:26:44 -0700798 struct addrinfo hints, *ai0, *ai;
799 int gai;
Alexandre Julliard20276882007-02-14 18:10:26 +0100800 long flags;
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400801
Jon Loeligerdd467622006-09-26 09:47:43 -0500802 sprintf(pbuf, "%d", listen_port);
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400803 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
Jon Loeligerdd467622006-09-26 09:47:43 -0500809 gai = getaddrinfo(listen_addr, pbuf, &hints, &ai0);
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400810 if (gai)
811 die("getaddrinfo() failed: %s\n", gai_strerror(gai));
812
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400813 for (ai = ai0; ai; ai = ai->ai_next) {
814 int sockfd;
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400815
816 sockfd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
817 if (sockfd < 0)
818 continue;
819 if (sockfd >= FD_SETSIZE) {
820 error("too large socket descriptor.");
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
Mark Wooding1955fab2006-02-03 20:27:04 +0000834 if (set_reuse_addr(sockfd)) {
835 close(sockfd);
Serge E. Hallyn0032d542006-04-18 08:11:06 -0500836 continue;
Mark Wooding1955fab2006-02-03 20:27:04 +0000837 }
838
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400839 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
Alexandre Julliard20276882007-02-14 18:10:26 +0100848 flags = fcntl(sockfd, F_GETFD, 0);
849 if (flags >= 0)
850 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
851
Jonas Fonseca83572c12006-08-26 16:16:18 +0200852 socklist = xrealloc(socklist, sizeof(int) * (socknum + 1));
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400853 socklist[socknum++] = sockfd;
854
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400855 if (maxfd < sockfd)
856 maxfd = sockfd;
857 }
858
859 freeaddrinfo(ai0);
860
Peter Anvin6573faf2005-09-28 17:26:44 -0700861 *socklist_p = socklist;
862 return socknum;
863}
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700864
Peter Anvin6573faf2005-09-28 17:26:44 -0700865#else /* NO_IPV6 */
866
Alex Riesen100690b2006-09-28 20:48:14 +0200867static int socksetup(char *listen_addr, int listen_port, int **socklist_p)
Peter Anvin6573faf2005-09-28 17:26:44 -0700868{
869 struct sockaddr_in sin;
870 int sockfd;
Alexandre Julliard20276882007-02-14 18:10:26 +0100871 long flags;
Peter Anvin6573faf2005-09-28 17:26:44 -0700872
Jon Loeligerdd467622006-09-26 09:47:43 -0500873 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
Peter Anvin6573faf2005-09-28 17:26:44 -0700885 sockfd = socket(AF_INET, SOCK_STREAM, 0);
886 if (sockfd < 0)
887 return 0;
888
Mark Wooding1955fab2006-02-03 20:27:04 +0000889 if (set_reuse_addr(sockfd)) {
890 close(sockfd);
891 return 0;
892 }
893
Peter Anvin6573faf2005-09-28 17:26:44 -0700894 if ( bind(sockfd, (struct sockaddr *)&sin, sizeof sin) < 0 ) {
895 close(sockfd);
896 return 0;
897 }
898
Paul Sericef35230f2005-11-21 11:07:23 -0600899 if (listen(sockfd, 5) < 0) {
900 close(sockfd);
901 return 0;
902 }
903
Alexandre Julliard20276882007-02-14 18:10:26 +0100904 flags = fcntl(sockfd, F_GETFD, 0);
905 if (flags >= 0)
906 fcntl(sockfd, F_SETFD, flags | FD_CLOEXEC);
907
H. Peter Anvin1b4713f2005-09-30 10:47:50 -0700908 *socklist_p = xmalloc(sizeof(int));
Peter Anvin6573faf2005-09-28 17:26:44 -0700909 **socklist_p = sockfd;
Paul Sericef35230f2005-11-21 11:07:23 -0600910 return 1;
Peter Anvin6573faf2005-09-28 17:26:44 -0700911}
912
913#endif
914
915static int service_loop(int socknum, int *socklist)
916{
917 struct pollfd *pfd;
918 int i;
919
H. Peter Anvin1b4713f2005-09-30 10:47:50 -0700920 pfd = xcalloc(socknum, sizeof(struct pollfd));
Peter Anvin6573faf2005-09-28 17:26:44 -0700921
922 for (i = 0; i < socknum; i++) {
923 pfd[i].fd = socklist[i];
924 pfd[i].events = POLLIN;
925 }
H. Peter Anvin92202822005-09-30 11:01:57 -0700926
927 signal(SIGCHLD, child_handler);
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700928
929 for (;;) {
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400930 int i;
Peter Anvin6573faf2005-09-28 17:26:44 -0700931
Jens Axboe7872e052005-10-20 00:52:32 -0700932 if (poll(pfd, socknum, -1) < 0) {
Junio C Hamano1eef0b32005-07-26 13:26:52 -0700933 if (errno != EINTR) {
Peter Anvin6573faf2005-09-28 17:26:44 -0700934 error("poll failed, resuming: %s",
Junio C Hamano1eef0b32005-07-26 13:26:52 -0700935 strerror(errno));
936 sleep(1);
937 }
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400938 continue;
939 }
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700940
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400941 for (i = 0; i < socknum; i++) {
Peter Anvin6573faf2005-09-28 17:26:44 -0700942 if (pfd[i].revents & POLLIN) {
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400943 struct sockaddr_storage ss;
H. Peter Anvin7626e492005-09-30 10:48:21 -0700944 unsigned int sslen = sizeof(ss);
Peter Anvin6573faf2005-09-28 17:26:44 -0700945 int incoming = accept(pfd[i].fd, (struct sockaddr *)&ss, &sslen);
YOSHIFUJI Hideakidf076bd2005-07-23 04:24:59 -0400946 if (incoming < 0) {
947 switch (errno) {
948 case EAGAIN:
949 case EINTR:
950 case ECONNABORTED:
951 continue;
952 default:
953 die("accept returned %s", strerror(errno));
954 }
955 }
956 handle(incoming, (struct sockaddr *)&ss, sslen);
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700957 }
958 }
Linus Torvaldsa87e8be2005-07-13 19:45:26 -0700959 }
960}
961
Matthias Lederhofer258e93a2006-07-13 18:32:11 +0200962/* if any standard file descriptor is missing open it to /dev/null */
963static void sanitize_stdfds(void)
964{
965 int fd = open("/dev/null", O_RDWR, 0);
966 while (fd != -1 && fd < 2)
967 fd = dup(fd);
968 if (fd == -1)
969 die("open /dev/null or dup failed: %s", strerror(errno));
970 if (fd > 2)
971 close(fd);
972}
973
Matthias Lederhofera5262762006-07-13 18:47:13 +0200974static void daemonize(void)
975{
976 switch (fork()) {
977 case 0:
978 break;
979 case -1:
980 die("fork failed: %s", strerror(errno));
981 default:
982 exit(0);
983 }
984 if (setsid() == -1)
985 die("setsid failed: %s", strerror(errno));
986 close(0);
987 close(1);
988 close(2);
989 sanitize_stdfds();
990}
991
Matthias Lederhofer45ed5d72006-07-13 12:18:08 +0200992static void store_pid(const char *path)
993{
994 FILE *f = fopen(path, "w");
995 if (!f)
996 die("cannot open pid file %s: %s", path, strerror(errno));
Jim Meyeringbc4e7d02007-05-21 09:58:01 +0200997 if (fprintf(f, "%d\n", getpid()) < 0 || fclose(f) != 0)
998 die("failed to write pid file %s: %s", path, strerror(errno));
Matthias Lederhofer45ed5d72006-07-13 12:18:08 +0200999}
1000
Jon Loeligerdd467622006-09-26 09:47:43 -05001001static int serve(char *listen_addr, int listen_port, struct passwd *pass, gid_t gid)
Peter Anvin6573faf2005-09-28 17:26:44 -07001002{
1003 int socknum, *socklist;
Junio C Hamano4ae22d92005-10-20 23:21:50 -07001004
Jon Loeligerdd467622006-09-26 09:47:43 -05001005 socknum = socksetup(listen_addr, listen_port, &socklist);
Peter Anvin6573faf2005-09-28 17:26:44 -07001006 if (socknum == 0)
Jon Loeligerdd467622006-09-26 09:47:43 -05001007 die("unable to allocate any listen sockets on host %s port %u",
1008 listen_addr, listen_port);
Junio C Hamano4ae22d92005-10-20 23:21:50 -07001009
Tilman Sauerbeck678dac62006-08-22 19:37:41 +02001010 if (pass && gid &&
1011 (initgroups(pass->pw_name, gid) || setgid (gid) ||
1012 setuid(pass->pw_uid)))
1013 die("cannot drop privileges");
1014
Peter Anvin6573faf2005-09-28 17:26:44 -07001015 return service_loop(socknum, socklist);
Junio C Hamano4ae22d92005-10-20 23:21:50 -07001016}
Peter Anvin6573faf2005-09-28 17:26:44 -07001017
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07001018int main(int argc, char **argv)
1019{
Jon Loeligerdd467622006-09-26 09:47:43 -05001020 int listen_port = 0;
1021 char *listen_addr = NULL;
Linus Torvaldse64e1b72005-07-15 09:32:16 -07001022 int inetd_mode = 0;
Tilman Sauerbeck678dac62006-08-22 19:37:41 +02001023 const char *pid_file = NULL, *user_name = NULL, *group_name = NULL;
Matthias Lederhofera5262762006-07-13 18:47:13 +02001024 int detach = 0;
Tilman Sauerbeck678dac62006-08-22 19:37:41 +02001025 struct passwd *pass = NULL;
1026 struct group *group;
1027 gid_t gid = 0;
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07001028 int i;
1029
Junio C Hamanof0b73672006-06-19 18:25:21 -07001030 /* Without this we cannot rely on waitpid() to tell
1031 * what happened to our children.
1032 */
1033 signal(SIGCHLD, SIG_DFL);
1034
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07001035 for (i = 1; i < argc; i++) {
1036 char *arg = argv[i];
1037
Junio C Hamanocc44c762007-02-20 01:53:29 -08001038 if (!prefixcmp(arg, "--listen=")) {
Jon Loeligerdd467622006-09-26 09:47:43 -05001039 char *p = arg + 9;
1040 char *ph = listen_addr = xmalloc(strlen(arg + 9) + 1);
1041 while (*p)
1042 *ph++ = tolower(*p++);
1043 *ph = 0;
1044 continue;
1045 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001046 if (!prefixcmp(arg, "--port=")) {
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07001047 char *end;
1048 unsigned long n;
1049 n = strtoul(arg+7, &end, 0);
1050 if (arg[7] && !*end) {
Jon Loeligerdd467622006-09-26 09:47:43 -05001051 listen_port = n;
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07001052 continue;
1053 }
1054 }
Linus Torvaldse64e1b72005-07-15 09:32:16 -07001055 if (!strcmp(arg, "--inetd")) {
1056 inetd_mode = 1;
Andreas Ericssona8883282005-11-17 00:38:29 +01001057 log_syslog = 1;
Linus Torvaldse64e1b72005-07-15 09:32:16 -07001058 continue;
1059 }
Petr Baudisf8ff0c02005-09-22 11:25:28 +02001060 if (!strcmp(arg, "--verbose")) {
1061 verbose = 1;
1062 continue;
1063 }
Petr Baudis9048fe12005-09-24 16:13:01 +02001064 if (!strcmp(arg, "--syslog")) {
1065 log_syslog = 1;
Petr Baudis9048fe12005-09-24 16:13:01 +02001066 continue;
1067 }
H. Peter Anvin4ae95682005-09-26 19:10:55 -07001068 if (!strcmp(arg, "--export-all")) {
1069 export_all_trees = 1;
1070 continue;
1071 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001072 if (!prefixcmp(arg, "--timeout=")) {
H. Peter Anvin960decc2005-10-19 14:27:01 -07001073 timeout = atoi(arg+10);
Andreas Ericssona8883282005-11-17 00:38:29 +01001074 continue;
H. Peter Anvin960decc2005-10-19 14:27:01 -07001075 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001076 if (!prefixcmp(arg, "--init-timeout=")) {
H. Peter Anvin960decc2005-10-19 14:27:01 -07001077 init_timeout = atoi(arg+15);
Andreas Ericssona8883282005-11-17 00:38:29 +01001078 continue;
H. Peter Anvin960decc2005-10-19 14:27:01 -07001079 }
Andreas Ericsson4dbd1352005-11-17 20:37:14 +01001080 if (!strcmp(arg, "--strict-paths")) {
1081 strict_paths = 1;
1082 continue;
1083 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001084 if (!prefixcmp(arg, "--base-path=")) {
Petr Baudisb21c31c2005-12-23 02:27:40 +01001085 base_path = arg+12;
1086 continue;
1087 }
Jens Axboe73a7a652007-07-27 14:00:29 -07001088 if (!strcmp(arg, "--base-path-relaxed")) {
1089 base_path_relaxed = 1;
1090 continue;
1091 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001092 if (!prefixcmp(arg, "--interpolated-path=")) {
Jon Loeliger49ba83f2006-09-19 20:31:51 -05001093 interpolated_path = arg+20;
1094 continue;
1095 }
Mark Wooding1955fab2006-02-03 20:27:04 +00001096 if (!strcmp(arg, "--reuseaddr")) {
1097 reuseaddr = 1;
1098 continue;
1099 }
Junio C Hamano603968d2006-02-04 22:27:29 -08001100 if (!strcmp(arg, "--user-path")) {
1101 user_path = "";
1102 continue;
1103 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001104 if (!prefixcmp(arg, "--user-path=")) {
Junio C Hamano603968d2006-02-04 22:27:29 -08001105 user_path = arg + 12;
1106 continue;
1107 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001108 if (!prefixcmp(arg, "--pid-file=")) {
Matthias Lederhofer45ed5d72006-07-13 12:18:08 +02001109 pid_file = arg + 11;
1110 continue;
1111 }
Matthias Lederhofera5262762006-07-13 18:47:13 +02001112 if (!strcmp(arg, "--detach")) {
1113 detach = 1;
1114 log_syslog = 1;
1115 continue;
1116 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001117 if (!prefixcmp(arg, "--user=")) {
Tilman Sauerbeck678dac62006-08-22 19:37:41 +02001118 user_name = arg + 7;
1119 continue;
1120 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001121 if (!prefixcmp(arg, "--group=")) {
Tilman Sauerbeck678dac62006-08-22 19:37:41 +02001122 group_name = arg + 8;
1123 continue;
1124 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001125 if (!prefixcmp(arg, "--enable=")) {
Junio C Hamanod819e4e2006-08-20 19:03:13 -07001126 enable_service(arg + 9, 1);
1127 continue;
1128 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001129 if (!prefixcmp(arg, "--disable=")) {
Junio C Hamanod819e4e2006-08-20 19:03:13 -07001130 enable_service(arg + 10, 0);
1131 continue;
1132 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001133 if (!prefixcmp(arg, "--allow-override=")) {
Junio C Hamano74c0cc22006-08-20 19:03:50 -07001134 make_service_overridable(arg + 17, 1);
Junio C Hamanod819e4e2006-08-20 19:03:13 -07001135 continue;
1136 }
Junio C Hamanocc44c762007-02-20 01:53:29 -08001137 if (!prefixcmp(arg, "--forbid-override=")) {
Junio C Hamano74c0cc22006-08-20 19:03:50 -07001138 make_service_overridable(arg + 18, 0);
Junio C Hamanod819e4e2006-08-20 19:03:13 -07001139 continue;
1140 }
H. Peter Anvin4ae95682005-09-26 19:10:55 -07001141 if (!strcmp(arg, "--")) {
1142 ok_paths = &argv[i+1];
1143 break;
1144 } else if (arg[0] != '-') {
1145 ok_paths = &argv[i];
1146 break;
1147 }
Linus Torvaldse64e1b72005-07-15 09:32:16 -07001148
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07001149 usage(daemon_usage);
1150 }
1151
Tilman Sauerbeck678dac62006-08-22 19:37:41 +02001152 if (inetd_mode && (group_name || user_name))
1153 die("--user and --group are incompatible with --inetd");
1154
Jon Loeligerdd467622006-09-26 09:47:43 -05001155 if (inetd_mode && (listen_port || listen_addr))
1156 die("--listen= and --port= are incompatible with --inetd");
1157 else if (listen_port == 0)
1158 listen_port = DEFAULT_GIT_PORT;
1159
Tilman Sauerbeck678dac62006-08-22 19:37:41 +02001160 if (group_name && !user_name)
1161 die("--group supplied without --user");
1162
1163 if (user_name) {
1164 pass = getpwnam(user_name);
1165 if (!pass)
1166 die("user not found - %s", user_name);
1167
1168 if (!group_name)
1169 gid = pass->pw_gid;
1170 else {
1171 group = getgrnam(group_name);
1172 if (!group)
1173 die("group not found - %s", group_name);
1174
1175 gid = group->gr_gid;
1176 }
1177 }
1178
Matthias Lederhoferad8b4f52006-07-13 12:02:29 +02001179 if (log_syslog) {
Andreas Ericssona8883282005-11-17 00:38:29 +01001180 openlog("git-daemon", 0, LOG_DAEMON);
Matthias Lederhoferad8b4f52006-07-13 12:02:29 +02001181 set_die_routine(daemon_die);
Andreas Ericsson4dbd1352005-11-17 20:37:14 +01001182 }
1183
Matthias Lederhoferad8b4f52006-07-13 12:02:29 +02001184 if (strict_paths && (!ok_paths || !*ok_paths))
1185 die("option --strict-paths requires a whitelist");
1186
lars.doelle@on-line.de7c3693f2005-09-08 03:50:01 +02001187 if (inetd_mode) {
David Woodhouse5b276ee2006-06-20 15:38:13 +01001188 struct sockaddr_storage ss;
1189 struct sockaddr *peer = (struct sockaddr *)&ss;
1190 socklen_t slen = sizeof(ss);
1191
Junio C Hamanoba0012c2006-06-21 16:37:48 -07001192 freopen("/dev/null", "w", stderr);
David Woodhouse5b276ee2006-06-20 15:38:13 +01001193
1194 if (getpeername(0, peer, &slen))
1195 peer = NULL;
1196
1197 return execute(peer);
lars.doelle@on-line.de7c3693f2005-09-08 03:50:01 +02001198 }
Andreas Ericssonbce82302005-11-14 17:41:01 +01001199
Matthias Lederhofera5262762006-07-13 18:47:13 +02001200 if (detach)
1201 daemonize();
1202 else
1203 sanitize_stdfds();
Matthias Lederhofer258e93a2006-07-13 18:32:11 +02001204
Matthias Lederhofer45ed5d72006-07-13 12:18:08 +02001205 if (pid_file)
1206 store_pid(pid_file);
1207
Jon Loeligerdd467622006-09-26 09:47:43 -05001208 return serve(listen_addr, listen_port, pass, gid);
Linus Torvaldsa87e8be2005-07-13 19:45:26 -07001209}