Linus Torvalds | eaa9491 | 2005-07-15 20:42:28 -0700 | [diff] [blame] | 1 | #include <signal.h> |
| 2 | #include <sys/wait.h> |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 3 | #include <sys/socket.h> |
Jason Riedy | 3cd6ecd | 2005-08-23 13:34:44 -0700 | [diff] [blame] | 4 | #include <sys/time.h> |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 5 | #include <sys/poll.h> |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 6 | #include <netdb.h> |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 7 | #include <netinet/in.h> |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 8 | #include <arpa/inet.h> |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 9 | #include <syslog.h> |
Randal L. Schwartz | 979e32f | 2005-10-25 16:29:09 -0700 | [diff] [blame] | 10 | #include "pkt-line.h" |
| 11 | #include "cache.h" |
Michal Ostrowski | 77cb17e | 2006-01-10 21:12:17 -0500 | [diff] [blame] | 12 | #include "exec_cmd.h" |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 13 | |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 14 | static int log_syslog; |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 15 | static int verbose; |
Mark Wooding | 1955fab | 2006-02-03 20:27:04 +0000 | [diff] [blame] | 16 | static int reuseaddr; |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 17 | |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 18 | static const char daemon_usage[] = |
| 19 | "git-daemon [--verbose] [--syslog] [--inetd | --port=n] [--export-all]\n" |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 20 | " [--timeout=n] [--init-timeout=n] [--strict-paths]\n" |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 21 | " [--base-path=path] [--user-path | --user-path=path]\n" |
| 22 | " [--reuseaddr] [directory...]"; |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 23 | |
| 24 | /* List of acceptable pathname prefixes */ |
| 25 | static char **ok_paths = NULL; |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 26 | static int strict_paths = 0; |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 27 | |
| 28 | /* If this is set, git-daemon-export-ok is not required */ |
| 29 | static int export_all_trees = 0; |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 30 | |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 31 | /* Take all paths relative to this one if non-NULL */ |
| 32 | static char *base_path = NULL; |
| 33 | |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 34 | /* If defined, ~user notation is allowed and the string is inserted |
| 35 | * after ~user/. E.g. a request to git://host/~alice/frotz would |
| 36 | * go to /home/alice/pub_git/frotz with --user-path=pub_git. |
| 37 | */ |
Timo Hirvonen | 554fe20 | 2006-06-28 12:04:39 +0300 | [diff] [blame^] | 38 | static const char *user_path = NULL; |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 39 | |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 40 | /* Timeout, and initial timeout */ |
| 41 | static unsigned int timeout = 0; |
| 42 | static unsigned int init_timeout = 0; |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 43 | |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 44 | static void logreport(int priority, const char *err, va_list params) |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 45 | { |
| 46 | /* We should do a single write so that it is atomic and output |
| 47 | * of several processes do not get intermingled. */ |
| 48 | char buf[1024]; |
| 49 | int buflen; |
| 50 | int maxlen, msglen; |
| 51 | |
| 52 | /* sizeof(buf) should be big enough for "[pid] \n" */ |
Junio C Hamano | 1bedd4c | 2005-09-23 23:26:55 -0700 | [diff] [blame] | 53 | buflen = snprintf(buf, sizeof(buf), "[%ld] ", (long) getpid()); |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 54 | |
| 55 | maxlen = sizeof(buf) - buflen - 1; /* -1 for our own LF */ |
| 56 | msglen = vsnprintf(buf + buflen, maxlen, err, params); |
| 57 | |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 58 | if (log_syslog) { |
| 59 | syslog(priority, "%s", buf); |
| 60 | return; |
| 61 | } |
| 62 | |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 63 | /* maxlen counted our own LF but also counts space given to |
| 64 | * vsnprintf for the terminating NUL. We want to make sure that |
| 65 | * we have space for our own LF and NUL after the "meat" of the |
| 66 | * message, so truncate it at maxlen - 1. |
| 67 | */ |
| 68 | if (msglen > maxlen - 1) |
| 69 | msglen = maxlen - 1; |
| 70 | else if (msglen < 0) |
| 71 | msglen = 0; /* Protect against weird return values. */ |
| 72 | buflen += msglen; |
| 73 | |
| 74 | buf[buflen++] = '\n'; |
| 75 | buf[buflen] = '\0'; |
| 76 | |
| 77 | write(2, buf, buflen); |
| 78 | } |
| 79 | |
Pavel Roskin | cdda474 | 2005-09-29 16:53:14 -0400 | [diff] [blame] | 80 | static void logerror(const char *err, ...) |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 81 | { |
| 82 | va_list params; |
| 83 | va_start(params, err); |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 84 | logreport(LOG_ERR, err, params); |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 85 | va_end(params); |
| 86 | } |
| 87 | |
Pavel Roskin | cdda474 | 2005-09-29 16:53:14 -0400 | [diff] [blame] | 88 | static void loginfo(const char *err, ...) |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 89 | { |
| 90 | va_list params; |
| 91 | if (!verbose) |
| 92 | return; |
| 93 | va_start(params, err); |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 94 | logreport(LOG_INFO, err, params); |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 95 | va_end(params); |
| 96 | } |
| 97 | |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 98 | static int avoid_alias(char *p) |
| 99 | { |
| 100 | int sl, ndot; |
| 101 | |
| 102 | /* |
| 103 | * This resurrects the belts and suspenders paranoia check by HPA |
| 104 | * done in <435560F7.4080006@zytor.com> thread, now enter_repo() |
| 105 | * does not do getcwd() based path canonicalizations. |
| 106 | * |
| 107 | * sl becomes true immediately after seeing '/' and continues to |
| 108 | * be true as long as dots continue after that without intervening |
| 109 | * non-dot character. |
| 110 | */ |
| 111 | if (!p || (*p != '/' && *p != '~')) |
| 112 | return -1; |
| 113 | sl = 1; ndot = 0; |
| 114 | p++; |
| 115 | |
| 116 | while (1) { |
| 117 | char ch = *p++; |
| 118 | if (sl) { |
| 119 | if (ch == '.') |
| 120 | ndot++; |
| 121 | else if (ch == '/') { |
| 122 | if (ndot < 3) |
| 123 | /* reject //, /./ and /../ */ |
| 124 | return -1; |
| 125 | ndot = 0; |
| 126 | } |
| 127 | else if (ch == 0) { |
| 128 | if (0 < ndot && ndot < 3) |
| 129 | /* reject /.$ and /..$ */ |
| 130 | return -1; |
| 131 | return 0; |
| 132 | } |
| 133 | else |
| 134 | sl = ndot = 0; |
| 135 | } |
| 136 | else if (ch == 0) |
| 137 | return 0; |
| 138 | else if (ch == '/') { |
| 139 | sl = 1; |
| 140 | ndot = 0; |
| 141 | } |
| 142 | } |
| 143 | } |
| 144 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 145 | static char *path_ok(char *dir) |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 146 | { |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 147 | static char rpath[PATH_MAX]; |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 148 | char *path; |
| 149 | |
| 150 | if (avoid_alias(dir)) { |
| 151 | logerror("'%s': aliased", dir); |
| 152 | return NULL; |
| 153 | } |
| 154 | |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 155 | if (*dir == '~') { |
| 156 | if (!user_path) { |
| 157 | logerror("'%s': User-path not allowed", dir); |
| 158 | return NULL; |
| 159 | } |
| 160 | if (*user_path) { |
| 161 | /* Got either "~alice" or "~alice/foo"; |
| 162 | * rewrite them to "~alice/%s" or |
| 163 | * "~alice/%s/foo". |
| 164 | */ |
| 165 | int namlen, restlen = strlen(dir); |
| 166 | char *slash = strchr(dir, '/'); |
| 167 | if (!slash) |
| 168 | slash = dir + restlen; |
| 169 | namlen = slash - dir; |
| 170 | restlen -= namlen; |
| 171 | loginfo("userpath <%s>, request <%s>, namlen %d, restlen %d, slash <%s>", user_path, dir, namlen, restlen, slash); |
| 172 | snprintf(rpath, PATH_MAX, "%.*s/%s%.*s", |
| 173 | namlen, dir, user_path, restlen, slash); |
| 174 | dir = rpath; |
| 175 | } |
| 176 | } |
| 177 | else if (base_path) { |
| 178 | if (*dir != '/') { |
| 179 | /* Allow only absolute */ |
Mark Wooding | 1fda3d5 | 2006-02-03 20:27:02 +0000 | [diff] [blame] | 180 | logerror("'%s': Non-absolute path denied (base-path active)", dir); |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 181 | return NULL; |
| 182 | } |
Junio C Hamano | 363f24c | 2006-02-03 23:50:55 -0800 | [diff] [blame] | 183 | else { |
| 184 | snprintf(rpath, PATH_MAX, "%s%s", base_path, dir); |
| 185 | dir = rpath; |
| 186 | } |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 187 | } |
| 188 | |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 189 | path = enter_repo(dir, strict_paths); |
H. Peter Anvin | 3e04c62 | 2005-10-18 18:26:52 -0700 | [diff] [blame] | 190 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 191 | if (!path) { |
| 192 | logerror("'%s': unable to chdir or not a git archive", dir); |
| 193 | return NULL; |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | if ( ok_paths && *ok_paths ) { |
Junio C Hamano | ce335fe | 2005-11-21 01:21:18 -0800 | [diff] [blame] | 197 | char **pp; |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 198 | int pathlen = strlen(path); |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 199 | |
Junio C Hamano | ce335fe | 2005-11-21 01:21:18 -0800 | [diff] [blame] | 200 | /* The validation is done on the paths after enter_repo |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 201 | * appends optional {.git,.git/.git} and friends, but |
| 202 | * it does not use getcwd(). So if your /pub is |
| 203 | * a symlink to /mnt/pub, you can whitelist /pub and |
| 204 | * do not have to say /mnt/pub. |
| 205 | * Do not say /pub/. |
Junio C Hamano | ce335fe | 2005-11-21 01:21:18 -0800 | [diff] [blame] | 206 | */ |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 207 | for ( pp = ok_paths ; *pp ; pp++ ) { |
| 208 | int len = strlen(*pp); |
Junio C Hamano | ce335fe | 2005-11-21 01:21:18 -0800 | [diff] [blame] | 209 | if (len <= pathlen && |
| 210 | !memcmp(*pp, path, len) && |
| 211 | (path[len] == '\0' || |
| 212 | (!strict_paths && path[len] == '/'))) |
| 213 | return path; |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 214 | } |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 215 | } |
| 216 | else { |
| 217 | /* be backwards compatible */ |
| 218 | if (!strict_paths) |
| 219 | return path; |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 222 | logerror("'%s': not in whitelist", path); |
| 223 | return NULL; /* Fallthrough. Deny by default */ |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 224 | } |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 225 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 226 | static int upload(char *dir) |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 227 | { |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 228 | /* Timeout as string */ |
| 229 | char timeout_buf[64]; |
| 230 | const char *path; |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 231 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 232 | loginfo("Request for '%s'", dir); |
| 233 | |
| 234 | if (!(path = path_ok(dir))) |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 235 | return -1; |
H. Peter Anvin | 47888f0 | 2005-09-27 08:49:40 -0700 | [diff] [blame] | 236 | |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 237 | /* |
| 238 | * Security on the cheap. |
| 239 | * |
Junio C Hamano | a935c39 | 2005-10-20 23:19:36 -0700 | [diff] [blame] | 240 | * We want a readable HEAD, usable "objects" directory, and |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 241 | * a "git-daemon-export-ok" flag that says that the other side |
| 242 | * is ok with us doing this. |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 243 | * |
| 244 | * path_ok() uses enter_repo() and does whitelist checking. |
| 245 | * We only need to make sure the repository is exported. |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 246 | */ |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 247 | |
H. Peter Anvin | 3e04c62 | 2005-10-18 18:26:52 -0700 | [diff] [blame] | 248 | if (!export_all_trees && access("git-daemon-export-ok", F_OK)) { |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 249 | logerror("'%s': repository not exported.", path); |
H. Peter Anvin | 3e04c62 | 2005-10-18 18:26:52 -0700 | [diff] [blame] | 250 | errno = EACCES; |
| 251 | return -1; |
| 252 | } |
| 253 | |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 254 | /* |
| 255 | * We'll ignore SIGTERM from now on, we have a |
| 256 | * good client. |
| 257 | */ |
| 258 | signal(SIGTERM, SIG_IGN); |
| 259 | |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 260 | snprintf(timeout_buf, sizeof timeout_buf, "--timeout=%u", timeout); |
| 261 | |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 262 | /* git-upload-pack only ever reads stuff, so this is safe */ |
Michal Ostrowski | 77cb17e | 2006-01-10 21:12:17 -0500 | [diff] [blame] | 263 | execl_git_cmd("upload-pack", "--strict", timeout_buf, ".", NULL); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 264 | return -1; |
| 265 | } |
| 266 | |
David Woodhouse | 5b276ee | 2006-06-20 15:38:13 +0100 | [diff] [blame] | 267 | static int execute(struct sockaddr *addr) |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 268 | { |
Linus Torvalds | 7d80694 | 2005-07-15 09:27:05 -0700 | [diff] [blame] | 269 | static char line[1000]; |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 270 | int pktlen, len; |
Linus Torvalds | 7d80694 | 2005-07-15 09:27:05 -0700 | [diff] [blame] | 271 | |
David Woodhouse | 5b276ee | 2006-06-20 15:38:13 +0100 | [diff] [blame] | 272 | if (addr) { |
| 273 | char addrbuf[256] = ""; |
| 274 | int port = -1; |
| 275 | |
| 276 | if (addr->sa_family == AF_INET) { |
| 277 | struct sockaddr_in *sin_addr = (void *) addr; |
| 278 | inet_ntop(addr->sa_family, &sin_addr->sin_addr, addrbuf, sizeof(addrbuf)); |
| 279 | port = sin_addr->sin_port; |
| 280 | #ifndef NO_IPV6 |
| 281 | } else if (addr && addr->sa_family == AF_INET6) { |
| 282 | struct sockaddr_in6 *sin6_addr = (void *) addr; |
| 283 | |
| 284 | char *buf = addrbuf; |
| 285 | *buf++ = '['; *buf = '\0'; /* stpcpy() is cool */ |
| 286 | inet_ntop(AF_INET6, &sin6_addr->sin6_addr, buf, sizeof(addrbuf) - 1); |
| 287 | strcat(buf, "]"); |
| 288 | |
| 289 | port = sin6_addr->sin6_port; |
| 290 | #endif |
| 291 | } |
| 292 | loginfo("Connection from %s:%d", addrbuf, port); |
| 293 | } |
| 294 | |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 295 | alarm(init_timeout ? init_timeout : timeout); |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 296 | pktlen = packet_read_line(0, line, sizeof(line)); |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 297 | alarm(0); |
Linus Torvalds | 7d80694 | 2005-07-15 09:27:05 -0700 | [diff] [blame] | 298 | |
Jon Loeliger | 5ad312b | 2006-06-06 22:58:41 -0500 | [diff] [blame] | 299 | len = strlen(line); |
| 300 | if (pktlen != len) |
| 301 | loginfo("Extended attributes (%d bytes) exist <%.*s>", |
| 302 | (int) pktlen - len, |
| 303 | (int) pktlen - len, line + len + 1); |
Linus Torvalds | 7d80694 | 2005-07-15 09:27:05 -0700 | [diff] [blame] | 304 | if (len && line[len-1] == '\n') |
| 305 | line[--len] = 0; |
| 306 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 307 | if (!strncmp("git-upload-pack ", line, 16)) |
H. Peter Anvin | 3e04c62 | 2005-10-18 18:26:52 -0700 | [diff] [blame] | 308 | return upload(line+16); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 309 | |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 310 | logerror("Protocol error: '%s'", line); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 311 | return -1; |
| 312 | } |
| 313 | |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 314 | |
| 315 | /* |
| 316 | * We count spawned/reaped separately, just to avoid any |
| 317 | * races when updating them from signals. The SIGCHLD handler |
| 318 | * will only update children_reaped, and the fork logic will |
| 319 | * only update children_spawned. |
| 320 | * |
| 321 | * MAX_CHILDREN should be a power-of-two to make the modulus |
| 322 | * operation cheap. It should also be at least twice |
| 323 | * the maximum number of connections we will ever allow. |
| 324 | */ |
| 325 | #define MAX_CHILDREN 128 |
| 326 | |
| 327 | static int max_connections = 25; |
| 328 | |
| 329 | /* These are updated by the signal handler */ |
| 330 | static volatile unsigned int children_reaped = 0; |
Linus Torvalds | 4d8fa91 | 2005-08-01 12:11:53 -0700 | [diff] [blame] | 331 | static pid_t dead_child[MAX_CHILDREN]; |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 332 | |
| 333 | /* These are updated by the main loop */ |
| 334 | static unsigned int children_spawned = 0; |
| 335 | static unsigned int children_deleted = 0; |
| 336 | |
Linus Torvalds | 4d8fa91 | 2005-08-01 12:11:53 -0700 | [diff] [blame] | 337 | static struct child { |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 338 | pid_t pid; |
Junio C Hamano | 7fa0908 | 2005-09-11 13:58:41 -0700 | [diff] [blame] | 339 | int addrlen; |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 340 | struct sockaddr_storage address; |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 341 | } live_child[MAX_CHILDREN]; |
| 342 | |
Junio C Hamano | 7fa0908 | 2005-09-11 13:58:41 -0700 | [diff] [blame] | 343 | static void add_child(int idx, pid_t pid, struct sockaddr *addr, int addrlen) |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 344 | { |
| 345 | live_child[idx].pid = pid; |
| 346 | live_child[idx].addrlen = addrlen; |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 347 | memcpy(&live_child[idx].address, addr, addrlen); |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | /* |
| 351 | * Walk from "deleted" to "spawned", and remove child "pid". |
| 352 | * |
| 353 | * We move everything up by one, since the new "deleted" will |
| 354 | * be one higher. |
| 355 | */ |
| 356 | static void remove_child(pid_t pid, unsigned deleted, unsigned spawned) |
| 357 | { |
| 358 | struct child n; |
| 359 | |
| 360 | deleted %= MAX_CHILDREN; |
| 361 | spawned %= MAX_CHILDREN; |
| 362 | if (live_child[deleted].pid == pid) { |
| 363 | live_child[deleted].pid = -1; |
| 364 | return; |
| 365 | } |
| 366 | n = live_child[deleted]; |
| 367 | for (;;) { |
| 368 | struct child m; |
| 369 | deleted = (deleted + 1) % MAX_CHILDREN; |
| 370 | if (deleted == spawned) |
| 371 | die("could not find dead child %d\n", pid); |
| 372 | m = live_child[deleted]; |
| 373 | live_child[deleted] = n; |
| 374 | if (m.pid == pid) |
| 375 | return; |
| 376 | n = m; |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | /* |
| 381 | * This gets called if the number of connections grows |
| 382 | * past "max_connections". |
| 383 | * |
| 384 | * We _should_ start off by searching for connections |
| 385 | * from the same IP, and if there is some address wth |
| 386 | * multiple connections, we should kill that first. |
| 387 | * |
| 388 | * As it is, we just "randomly" kill 25% of the connections, |
| 389 | * and our pseudo-random generator sucks too. I have no |
| 390 | * shame. |
| 391 | * |
| 392 | * Really, this is just a place-holder for a _real_ algorithm. |
| 393 | */ |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 394 | static void kill_some_children(int signo, unsigned start, unsigned stop) |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 395 | { |
| 396 | start %= MAX_CHILDREN; |
| 397 | stop %= MAX_CHILDREN; |
| 398 | while (start != stop) { |
| 399 | if (!(start & 3)) |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 400 | kill(live_child[start].pid, signo); |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 401 | start = (start + 1) % MAX_CHILDREN; |
| 402 | } |
| 403 | } |
| 404 | |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 405 | static void check_max_connections(void) |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 406 | { |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 407 | for (;;) { |
Linus Torvalds | eaa9491 | 2005-07-15 20:42:28 -0700 | [diff] [blame] | 408 | int active; |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 409 | unsigned spawned, reaped, deleted; |
Linus Torvalds | eaa9491 | 2005-07-15 20:42:28 -0700 | [diff] [blame] | 410 | |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 411 | spawned = children_spawned; |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 412 | reaped = children_reaped; |
| 413 | deleted = children_deleted; |
| 414 | |
| 415 | while (deleted < reaped) { |
| 416 | pid_t pid = dead_child[deleted % MAX_CHILDREN]; |
| 417 | remove_child(pid, deleted, spawned); |
| 418 | deleted++; |
Linus Torvalds | eaa9491 | 2005-07-15 20:42:28 -0700 | [diff] [blame] | 419 | } |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 420 | children_deleted = deleted; |
| 421 | |
| 422 | active = spawned - deleted; |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 423 | if (active <= max_connections) |
| 424 | break; |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 425 | |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 426 | /* Kill some unstarted connections with SIGTERM */ |
| 427 | kill_some_children(SIGTERM, deleted, spawned); |
| 428 | if (active <= max_connections << 1) |
| 429 | break; |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 430 | |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 431 | /* If the SIGTERM thing isn't helping use SIGKILL */ |
| 432 | kill_some_children(SIGKILL, deleted, spawned); |
| 433 | sleep(1); |
| 434 | } |
| 435 | } |
| 436 | |
Junio C Hamano | 7fa0908 | 2005-09-11 13:58:41 -0700 | [diff] [blame] | 437 | static void handle(int incoming, struct sockaddr *addr, int addrlen) |
Linus Torvalds | 02d57da | 2005-07-15 22:53:31 -0700 | [diff] [blame] | 438 | { |
| 439 | pid_t pid = fork(); |
| 440 | |
| 441 | if (pid) { |
| 442 | unsigned idx; |
| 443 | |
| 444 | close(incoming); |
| 445 | if (pid < 0) |
| 446 | return; |
| 447 | |
| 448 | idx = children_spawned % MAX_CHILDREN; |
| 449 | children_spawned++; |
| 450 | add_child(idx, pid, addr, addrlen); |
| 451 | |
| 452 | check_max_connections(); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 453 | return; |
| 454 | } |
| 455 | |
| 456 | dup2(incoming, 0); |
| 457 | dup2(incoming, 1); |
| 458 | close(incoming); |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 459 | |
David Woodhouse | 5b276ee | 2006-06-20 15:38:13 +0100 | [diff] [blame] | 460 | exit(execute(addr)); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Linus Torvalds | eaa9491 | 2005-07-15 20:42:28 -0700 | [diff] [blame] | 463 | static void child_handler(int signo) |
| 464 | { |
| 465 | for (;;) { |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 466 | int status; |
| 467 | pid_t pid = waitpid(-1, &status, WNOHANG); |
Linus Torvalds | 66e631d | 2005-07-15 21:51:57 -0700 | [diff] [blame] | 468 | |
| 469 | if (pid > 0) { |
| 470 | unsigned reaped = children_reaped; |
| 471 | dead_child[reaped % MAX_CHILDREN] = pid; |
| 472 | children_reaped = reaped + 1; |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 473 | /* XXX: Custom logging, since we don't wanna getpid() */ |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 474 | if (verbose) { |
Timo Hirvonen | 554fe20 | 2006-06-28 12:04:39 +0300 | [diff] [blame^] | 475 | const char *dead = ""; |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 476 | if (!WIFEXITED(status) || WEXITSTATUS(status) > 0) |
| 477 | dead = " (with error)"; |
| 478 | if (log_syslog) |
| 479 | syslog(LOG_INFO, "[%d] Disconnected%s", pid, dead); |
| 480 | else |
| 481 | fprintf(stderr, "[%d] Disconnected%s\n", pid, dead); |
| 482 | } |
Linus Torvalds | eaa9491 | 2005-07-15 20:42:28 -0700 | [diff] [blame] | 483 | continue; |
| 484 | } |
| 485 | break; |
| 486 | } |
| 487 | } |
| 488 | |
Mark Wooding | 1955fab | 2006-02-03 20:27:04 +0000 | [diff] [blame] | 489 | static int set_reuse_addr(int sockfd) |
| 490 | { |
| 491 | int on = 1; |
| 492 | |
| 493 | if (!reuseaddr) |
| 494 | return 0; |
| 495 | return setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, |
| 496 | &on, sizeof(on)); |
| 497 | } |
| 498 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 499 | #ifndef NO_IPV6 |
| 500 | |
| 501 | static int socksetup(int port, int **socklist_p) |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 502 | { |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 503 | int socknum = 0, *socklist = NULL; |
| 504 | int maxfd = -1; |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 505 | char pbuf[NI_MAXSERV]; |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 506 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 507 | struct addrinfo hints, *ai0, *ai; |
| 508 | int gai; |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 509 | |
| 510 | sprintf(pbuf, "%d", port); |
| 511 | memset(&hints, 0, sizeof(hints)); |
| 512 | hints.ai_family = AF_UNSPEC; |
| 513 | hints.ai_socktype = SOCK_STREAM; |
| 514 | hints.ai_protocol = IPPROTO_TCP; |
| 515 | hints.ai_flags = AI_PASSIVE; |
| 516 | |
| 517 | gai = getaddrinfo(NULL, pbuf, &hints, &ai0); |
| 518 | if (gai) |
| 519 | die("getaddrinfo() failed: %s\n", gai_strerror(gai)); |
| 520 | |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 521 | for (ai = ai0; ai; ai = ai->ai_next) { |
| 522 | int sockfd; |
| 523 | int *newlist; |
| 524 | |
| 525 | sockfd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); |
| 526 | if (sockfd < 0) |
| 527 | continue; |
| 528 | if (sockfd >= FD_SETSIZE) { |
| 529 | error("too large socket descriptor."); |
| 530 | close(sockfd); |
| 531 | continue; |
| 532 | } |
| 533 | |
| 534 | #ifdef IPV6_V6ONLY |
| 535 | if (ai->ai_family == AF_INET6) { |
| 536 | int on = 1; |
| 537 | setsockopt(sockfd, IPPROTO_IPV6, IPV6_V6ONLY, |
| 538 | &on, sizeof(on)); |
| 539 | /* Note: error is not fatal */ |
| 540 | } |
| 541 | #endif |
| 542 | |
Mark Wooding | 1955fab | 2006-02-03 20:27:04 +0000 | [diff] [blame] | 543 | if (set_reuse_addr(sockfd)) { |
| 544 | close(sockfd); |
Serge E. Hallyn | 0032d54 | 2006-04-18 08:11:06 -0500 | [diff] [blame] | 545 | continue; |
Mark Wooding | 1955fab | 2006-02-03 20:27:04 +0000 | [diff] [blame] | 546 | } |
| 547 | |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 548 | if (bind(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) { |
| 549 | close(sockfd); |
| 550 | continue; /* not fatal */ |
| 551 | } |
| 552 | if (listen(sockfd, 5) < 0) { |
| 553 | close(sockfd); |
| 554 | continue; /* not fatal */ |
| 555 | } |
| 556 | |
| 557 | newlist = realloc(socklist, sizeof(int) * (socknum + 1)); |
| 558 | if (!newlist) |
| 559 | die("memory allocation failed: %s", strerror(errno)); |
| 560 | |
| 561 | socklist = newlist; |
| 562 | socklist[socknum++] = sockfd; |
| 563 | |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 564 | if (maxfd < sockfd) |
| 565 | maxfd = sockfd; |
| 566 | } |
| 567 | |
| 568 | freeaddrinfo(ai0); |
| 569 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 570 | *socklist_p = socklist; |
| 571 | return socknum; |
| 572 | } |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 573 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 574 | #else /* NO_IPV6 */ |
| 575 | |
| 576 | static int socksetup(int port, int **socklist_p) |
| 577 | { |
| 578 | struct sockaddr_in sin; |
| 579 | int sockfd; |
| 580 | |
| 581 | sockfd = socket(AF_INET, SOCK_STREAM, 0); |
| 582 | if (sockfd < 0) |
| 583 | return 0; |
| 584 | |
| 585 | memset(&sin, 0, sizeof sin); |
| 586 | sin.sin_family = AF_INET; |
| 587 | sin.sin_addr.s_addr = htonl(INADDR_ANY); |
| 588 | sin.sin_port = htons(port); |
| 589 | |
Mark Wooding | 1955fab | 2006-02-03 20:27:04 +0000 | [diff] [blame] | 590 | if (set_reuse_addr(sockfd)) { |
| 591 | close(sockfd); |
| 592 | return 0; |
| 593 | } |
| 594 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 595 | if ( bind(sockfd, (struct sockaddr *)&sin, sizeof sin) < 0 ) { |
| 596 | close(sockfd); |
| 597 | return 0; |
| 598 | } |
| 599 | |
Paul Serice | f35230f | 2005-11-21 11:07:23 -0600 | [diff] [blame] | 600 | if (listen(sockfd, 5) < 0) { |
| 601 | close(sockfd); |
| 602 | return 0; |
| 603 | } |
| 604 | |
H. Peter Anvin | 1b4713f | 2005-09-30 10:47:50 -0700 | [diff] [blame] | 605 | *socklist_p = xmalloc(sizeof(int)); |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 606 | **socklist_p = sockfd; |
Paul Serice | f35230f | 2005-11-21 11:07:23 -0600 | [diff] [blame] | 607 | return 1; |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | #endif |
| 611 | |
| 612 | static int service_loop(int socknum, int *socklist) |
| 613 | { |
| 614 | struct pollfd *pfd; |
| 615 | int i; |
| 616 | |
H. Peter Anvin | 1b4713f | 2005-09-30 10:47:50 -0700 | [diff] [blame] | 617 | pfd = xcalloc(socknum, sizeof(struct pollfd)); |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 618 | |
| 619 | for (i = 0; i < socknum; i++) { |
| 620 | pfd[i].fd = socklist[i]; |
| 621 | pfd[i].events = POLLIN; |
| 622 | } |
H. Peter Anvin | 9220282 | 2005-09-30 11:01:57 -0700 | [diff] [blame] | 623 | |
| 624 | signal(SIGCHLD, child_handler); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 625 | |
| 626 | for (;;) { |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 627 | int i; |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 628 | |
Jens Axboe | 7872e05 | 2005-10-20 00:52:32 -0700 | [diff] [blame] | 629 | if (poll(pfd, socknum, -1) < 0) { |
Junio C Hamano | 1eef0b3 | 2005-07-26 13:26:52 -0700 | [diff] [blame] | 630 | if (errno != EINTR) { |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 631 | error("poll failed, resuming: %s", |
Junio C Hamano | 1eef0b3 | 2005-07-26 13:26:52 -0700 | [diff] [blame] | 632 | strerror(errno)); |
| 633 | sleep(1); |
| 634 | } |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 635 | continue; |
| 636 | } |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 637 | |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 638 | for (i = 0; i < socknum; i++) { |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 639 | if (pfd[i].revents & POLLIN) { |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 640 | struct sockaddr_storage ss; |
H. Peter Anvin | 7626e49 | 2005-09-30 10:48:21 -0700 | [diff] [blame] | 641 | unsigned int sslen = sizeof(ss); |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 642 | int incoming = accept(pfd[i].fd, (struct sockaddr *)&ss, &sslen); |
YOSHIFUJI Hideaki | df076bd | 2005-07-23 04:24:59 -0400 | [diff] [blame] | 643 | if (incoming < 0) { |
| 644 | switch (errno) { |
| 645 | case EAGAIN: |
| 646 | case EINTR: |
| 647 | case ECONNABORTED: |
| 648 | continue; |
| 649 | default: |
| 650 | die("accept returned %s", strerror(errno)); |
| 651 | } |
| 652 | } |
| 653 | handle(incoming, (struct sockaddr *)&ss, sslen); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 654 | } |
| 655 | } |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 656 | } |
| 657 | } |
| 658 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 659 | static int serve(int port) |
| 660 | { |
| 661 | int socknum, *socklist; |
Junio C Hamano | 4ae22d9 | 2005-10-20 23:21:50 -0700 | [diff] [blame] | 662 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 663 | socknum = socksetup(port, &socklist); |
| 664 | if (socknum == 0) |
| 665 | die("unable to allocate any listen sockets on port %u", port); |
Junio C Hamano | 4ae22d9 | 2005-10-20 23:21:50 -0700 | [diff] [blame] | 666 | |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 667 | return service_loop(socknum, socklist); |
Junio C Hamano | 4ae22d9 | 2005-10-20 23:21:50 -0700 | [diff] [blame] | 668 | } |
Peter Anvin | 6573faf | 2005-09-28 17:26:44 -0700 | [diff] [blame] | 669 | |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 670 | int main(int argc, char **argv) |
| 671 | { |
| 672 | int port = DEFAULT_GIT_PORT; |
Linus Torvalds | e64e1b7 | 2005-07-15 09:32:16 -0700 | [diff] [blame] | 673 | int inetd_mode = 0; |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 674 | int i; |
| 675 | |
Junio C Hamano | f0b7367 | 2006-06-19 18:25:21 -0700 | [diff] [blame] | 676 | /* Without this we cannot rely on waitpid() to tell |
| 677 | * what happened to our children. |
| 678 | */ |
| 679 | signal(SIGCHLD, SIG_DFL); |
| 680 | |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 681 | for (i = 1; i < argc; i++) { |
| 682 | char *arg = argv[i]; |
| 683 | |
| 684 | if (!strncmp(arg, "--port=", 7)) { |
| 685 | char *end; |
| 686 | unsigned long n; |
| 687 | n = strtoul(arg+7, &end, 0); |
| 688 | if (arg[7] && !*end) { |
| 689 | port = n; |
| 690 | continue; |
| 691 | } |
| 692 | } |
Linus Torvalds | e64e1b7 | 2005-07-15 09:32:16 -0700 | [diff] [blame] | 693 | if (!strcmp(arg, "--inetd")) { |
| 694 | inetd_mode = 1; |
Andreas Ericsson | a888328 | 2005-11-17 00:38:29 +0100 | [diff] [blame] | 695 | log_syslog = 1; |
Linus Torvalds | e64e1b7 | 2005-07-15 09:32:16 -0700 | [diff] [blame] | 696 | continue; |
| 697 | } |
Petr Baudis | f8ff0c0 | 2005-09-22 11:25:28 +0200 | [diff] [blame] | 698 | if (!strcmp(arg, "--verbose")) { |
| 699 | verbose = 1; |
| 700 | continue; |
| 701 | } |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 702 | if (!strcmp(arg, "--syslog")) { |
| 703 | log_syslog = 1; |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 704 | continue; |
| 705 | } |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 706 | if (!strcmp(arg, "--export-all")) { |
| 707 | export_all_trees = 1; |
| 708 | continue; |
| 709 | } |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 710 | if (!strncmp(arg, "--timeout=", 10)) { |
| 711 | timeout = atoi(arg+10); |
Andreas Ericsson | a888328 | 2005-11-17 00:38:29 +0100 | [diff] [blame] | 712 | continue; |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 713 | } |
H. Peter Anvin | 54e31a2 | 2005-10-20 18:34:58 -0700 | [diff] [blame] | 714 | if (!strncmp(arg, "--init-timeout=", 15)) { |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 715 | init_timeout = atoi(arg+15); |
Andreas Ericsson | a888328 | 2005-11-17 00:38:29 +0100 | [diff] [blame] | 716 | continue; |
H. Peter Anvin | 960decc | 2005-10-19 14:27:01 -0700 | [diff] [blame] | 717 | } |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 718 | if (!strcmp(arg, "--strict-paths")) { |
| 719 | strict_paths = 1; |
| 720 | continue; |
| 721 | } |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 722 | if (!strncmp(arg, "--base-path=", 12)) { |
| 723 | base_path = arg+12; |
| 724 | continue; |
| 725 | } |
Mark Wooding | 1955fab | 2006-02-03 20:27:04 +0000 | [diff] [blame] | 726 | if (!strcmp(arg, "--reuseaddr")) { |
| 727 | reuseaddr = 1; |
| 728 | continue; |
| 729 | } |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 730 | if (!strcmp(arg, "--user-path")) { |
| 731 | user_path = ""; |
| 732 | continue; |
| 733 | } |
| 734 | if (!strncmp(arg, "--user-path=", 12)) { |
| 735 | user_path = arg + 12; |
| 736 | continue; |
| 737 | } |
H. Peter Anvin | 4ae9568 | 2005-09-26 19:10:55 -0700 | [diff] [blame] | 738 | if (!strcmp(arg, "--")) { |
| 739 | ok_paths = &argv[i+1]; |
| 740 | break; |
| 741 | } else if (arg[0] != '-') { |
| 742 | ok_paths = &argv[i]; |
| 743 | break; |
| 744 | } |
Linus Torvalds | e64e1b7 | 2005-07-15 09:32:16 -0700 | [diff] [blame] | 745 | |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 746 | usage(daemon_usage); |
| 747 | } |
| 748 | |
Andreas Ericsson | a888328 | 2005-11-17 00:38:29 +0100 | [diff] [blame] | 749 | if (log_syslog) |
| 750 | openlog("git-daemon", 0, LOG_DAEMON); |
| 751 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 752 | if (strict_paths && (!ok_paths || !*ok_paths)) { |
| 753 | if (!inetd_mode) |
| 754 | die("git-daemon: option --strict-paths requires a whitelist"); |
| 755 | |
| 756 | logerror("option --strict-paths requires a whitelist"); |
| 757 | exit (1); |
| 758 | } |
| 759 | |
lars.doelle@on-line.de | 7c3693f | 2005-09-08 03:50:01 +0200 | [diff] [blame] | 760 | if (inetd_mode) { |
David Woodhouse | 5b276ee | 2006-06-20 15:38:13 +0100 | [diff] [blame] | 761 | struct sockaddr_storage ss; |
| 762 | struct sockaddr *peer = (struct sockaddr *)&ss; |
| 763 | socklen_t slen = sizeof(ss); |
| 764 | |
Junio C Hamano | ba0012c | 2006-06-21 16:37:48 -0700 | [diff] [blame] | 765 | freopen("/dev/null", "w", stderr); |
David Woodhouse | 5b276ee | 2006-06-20 15:38:13 +0100 | [diff] [blame] | 766 | |
| 767 | if (getpeername(0, peer, &slen)) |
| 768 | peer = NULL; |
| 769 | |
| 770 | return execute(peer); |
lars.doelle@on-line.de | 7c3693f | 2005-09-08 03:50:01 +0200 | [diff] [blame] | 771 | } |
Andreas Ericsson | bce8230 | 2005-11-14 17:41:01 +0100 | [diff] [blame] | 772 | |
| 773 | return serve(port); |
Linus Torvalds | a87e8be | 2005-07-13 19:45:26 -0700 | [diff] [blame] | 774 | } |