Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HA-Proxy : High Availability-enabled HTTP/TCP proxy |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 3 | * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation; either version |
| 8 | * 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * Please refer to RFC2068 or RFC2616 for informations about HTTP protocol, and |
| 11 | * RFC2965 for informations about cookies usage. More generally, the IETF HTTP |
| 12 | * Working Group's web site should be consulted for protocol related changes : |
| 13 | * |
| 14 | * http://ftp.ics.uci.edu/pub/ietf/http/ |
| 15 | * |
| 16 | * Pending bugs (may be not fixed because never reproduced) : |
| 17 | * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes |
| 18 | * the proxy to terminate (no core) if the client breaks the connection during |
| 19 | * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to |
| 20 | * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be |
| 21 | * related to missing setsid() (fixed in 1.1.15) |
| 22 | * - a proxy with an invalid config will prevent the startup even if disabled. |
| 23 | * |
| 24 | * ChangeLog has moved to the CHANGELOG file. |
| 25 | * |
| 26 | * TODO: |
| 27 | * - handle properly intermediate incomplete server headers. Done ? |
| 28 | * - handle hot-reconfiguration |
| 29 | * - fix client/server state transition when server is in connect or headers state |
| 30 | * and client suddenly disconnects. The server *should* switch to SHUT_WR, but |
| 31 | * still handle HTTP headers. |
| 32 | * - remove MAX_NEWHDR |
| 33 | * - cut this huge file into several ones |
| 34 | * |
| 35 | */ |
| 36 | |
| 37 | #include <stdio.h> |
| 38 | #include <stdlib.h> |
| 39 | #include <unistd.h> |
| 40 | #include <string.h> |
| 41 | #include <ctype.h> |
| 42 | #include <sys/time.h> |
| 43 | #include <sys/types.h> |
| 44 | #include <sys/socket.h> |
| 45 | #include <netinet/tcp.h> |
| 46 | #include <netinet/in.h> |
| 47 | #include <arpa/inet.h> |
| 48 | #include <netdb.h> |
| 49 | #include <fcntl.h> |
| 50 | #include <errno.h> |
| 51 | #include <signal.h> |
| 52 | #include <stdarg.h> |
| 53 | #include <sys/resource.h> |
| 54 | #include <time.h> |
| 55 | #include <syslog.h> |
| 56 | |
| 57 | #ifdef DEBUG_FULL |
| 58 | #include <assert.h> |
| 59 | #endif |
| 60 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 61 | #include <common/appsession.h> |
| 62 | #include <common/base64.h> |
| 63 | #include <common/cfgparse.h> |
| 64 | #include <common/compat.h> |
| 65 | #include <common/config.h> |
| 66 | #include <common/defaults.h> |
Willy Tarreau | d740bab | 2007-10-28 11:14:07 +0100 | [diff] [blame] | 67 | #include <common/errors.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 68 | #include <common/memory.h> |
| 69 | #include <common/mini-clist.h> |
| 70 | #include <common/regex.h> |
| 71 | #include <common/standard.h> |
| 72 | #include <common/time.h> |
| 73 | #include <common/uri_auth.h> |
| 74 | #include <common/version.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 75 | |
| 76 | #include <types/capture.h> |
| 77 | #include <types/global.h> |
| 78 | #include <types/httperr.h> |
Willy Tarreau | 69801b8 | 2007-04-09 15:28:51 +0200 | [diff] [blame] | 79 | #include <types/polling.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 80 | #include <types/proto_http.h> |
| 81 | |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 82 | #include <proto/acl.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 83 | #include <proto/backend.h> |
| 84 | #include <proto/buffers.h> |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 85 | #include <proto/checks.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 86 | #include <proto/client.h> |
| 87 | #include <proto/fd.h> |
| 88 | #include <proto/log.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 89 | #include <proto/protocols.h> |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 90 | #include <proto/proto_http.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 91 | #include <proto/proxy.h> |
| 92 | #include <proto/queue.h> |
| 93 | #include <proto/server.h> |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 94 | #include <proto/session.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 95 | #include <proto/stream_sock.h> |
| 96 | #include <proto/task.h> |
| 97 | |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 98 | #ifdef CONFIG_HAP_TCPSPLICE |
| 99 | #include <libtcpsplice.h> |
| 100 | #endif |
| 101 | |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 102 | #ifdef CONFIG_HAP_CTTPROXY |
| 103 | #include <proto/cttproxy.h> |
| 104 | #endif |
| 105 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 106 | /*********************************************************************/ |
| 107 | |
| 108 | /*********************************************************************/ |
| 109 | |
| 110 | char *cfg_cfgfile = NULL; /* configuration file */ |
| 111 | char *progname = NULL; /* program name */ |
| 112 | int pid; /* current process id */ |
Willy Tarreau | 2815664 | 2007-11-26 16:13:36 +0100 | [diff] [blame] | 113 | int relative_pid = 1; /* process id starting at 1 */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 114 | |
| 115 | /* global options */ |
| 116 | struct global global = { |
| 117 | logfac1 : -1, |
| 118 | logfac2 : -1, |
| 119 | loglev1 : 7, /* max syslog level : debug */ |
| 120 | loglev2 : 7, |
Willy Tarreau | fbee713 | 2007-10-18 13:53:22 +0200 | [diff] [blame] | 121 | .stats_timeout = { .tv_sec = 10, .tv_usec = 0 }, /* stats timeout = 10 seconds */ |
Willy Tarreau | 03f6d67 | 2007-10-18 15:15:57 +0200 | [diff] [blame] | 122 | .stats_sock = { |
| 123 | .timeout = &global.stats_timeout, |
| 124 | .maxconn = 10, /* 10 concurrent stats connections */ |
| 125 | .perm = { |
| 126 | .ux = { |
| 127 | .uid = -1, |
| 128 | .gid = -1, |
| 129 | .mode = 0, |
| 130 | } |
| 131 | } |
| 132 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 133 | /* others NULL OK */ |
| 134 | }; |
| 135 | |
| 136 | /*********************************************************************/ |
| 137 | |
| 138 | int stopping; /* non zero means stopping in progress */ |
| 139 | |
| 140 | /* Here we store informations about the pids of the processes we may pause |
| 141 | * or kill. We will send them a signal every 10 ms until we can bind to all |
| 142 | * our ports. With 200 retries, that's about 2 seconds. |
| 143 | */ |
| 144 | #define MAX_START_RETRIES 200 |
| 145 | static int nb_oldpids = 0; |
| 146 | static int *oldpids = NULL; |
| 147 | static int oldpids_sig; /* use USR1 or TERM */ |
| 148 | |
| 149 | /* this is used to drain data, and as a temporary buffer for sprintf()... */ |
| 150 | char trash[BUFSIZE]; |
| 151 | |
| 152 | const int zero = 0; |
| 153 | const int one = 1; |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 154 | const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 }; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 155 | |
| 156 | /* |
| 157 | * Syslog facilities and levels. Conforming to RFC3164. |
| 158 | */ |
| 159 | |
| 160 | #define MAX_HOSTNAME_LEN 32 |
| 161 | static char hostname[MAX_HOSTNAME_LEN] = ""; |
| 162 | |
| 163 | |
| 164 | /*********************************************************************/ |
| 165 | /* general purpose functions ***************************************/ |
| 166 | /*********************************************************************/ |
| 167 | |
| 168 | void display_version() |
| 169 | { |
| 170 | printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n"); |
Willy Tarreau | 7b4c5ae | 2008-04-19 21:06:14 +0200 | [diff] [blame] | 171 | printf("Copyright 2000-2008 Willy Tarreau <w@1wt.eu>\n\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 174 | void display_build_opts() |
| 175 | { |
| 176 | printf("Build options :" |
| 177 | #ifdef BUILD_TARGET |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 178 | "\n TARGET = " BUILD_TARGET |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 179 | #endif |
| 180 | #ifdef BUILD_CPU |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 181 | "\n CPU = " BUILD_CPU |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 182 | #endif |
| 183 | #ifdef BUILD_CC |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 184 | "\n CC = " BUILD_CC |
| 185 | #endif |
| 186 | #ifdef BUILD_CFLAGS |
| 187 | "\n CFLAGS = " BUILD_CFLAGS |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 188 | #endif |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 189 | #ifdef BUILD_OPTIONS |
| 190 | "\n OPTIONS = " BUILD_OPTIONS |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 191 | #endif |
| 192 | "\n\n"); |
| 193 | } |
| 194 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 195 | /* |
| 196 | * This function prints the command line usage and exits |
| 197 | */ |
| 198 | void usage(char *name) |
| 199 | { |
| 200 | display_version(); |
| 201 | fprintf(stderr, |
| 202 | "Usage : %s -f <cfgfile> [ -vdV" |
| 203 | "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n" |
| 204 | " [ -p <pidfile> ] [ -m <max megs> ]\n" |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 205 | " -v displays version ; -vv shows known build options.\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 206 | " -d enters debug mode ; -db only disables background mode.\n" |
| 207 | " -V enters verbose mode (disables quiet mode)\n" |
| 208 | " -D goes daemon ; implies -q\n" |
| 209 | " -q quiet mode : don't display messages\n" |
| 210 | " -c check mode : only check config file and exit\n" |
| 211 | " -n sets the maximum total # of connections (%d)\n" |
| 212 | " -m limits the usable amount of memory (in MB)\n" |
| 213 | " -N sets the default, per-proxy maximum # of connections (%d)\n" |
| 214 | " -p writes pids of all children to this file\n" |
| 215 | #if defined(ENABLE_EPOLL) |
| 216 | " -de disables epoll() usage even when available\n" |
| 217 | #endif |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 218 | #if defined(ENABLE_SEPOLL) |
| 219 | " -ds disables speculative epoll() usage even when available\n" |
| 220 | #endif |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 221 | #if defined(ENABLE_KQUEUE) |
| 222 | " -dk disables kqueue() usage even when available\n" |
| 223 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 224 | #if defined(ENABLE_POLL) |
| 225 | " -dp disables poll() usage even when available\n" |
| 226 | #endif |
| 227 | " -sf/-st [pid ]* finishes/terminates old pids. Must be last arguments.\n" |
| 228 | "\n", |
| 229 | name, DEFAULT_MAXCONN, cfg_maxpconn); |
| 230 | exit(1); |
| 231 | } |
| 232 | |
| 233 | |
| 234 | |
| 235 | /*********************************************************************/ |
| 236 | /* more specific functions ***************************************/ |
| 237 | /*********************************************************************/ |
| 238 | |
| 239 | /* |
| 240 | * upon SIGUSR1, let's have a soft stop. |
| 241 | */ |
| 242 | void sig_soft_stop(int sig) |
| 243 | { |
| 244 | soft_stop(); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 245 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 246 | signal(sig, SIG_IGN); |
| 247 | } |
| 248 | |
| 249 | /* |
| 250 | * upon SIGTTOU, we pause everything |
| 251 | */ |
| 252 | void sig_pause(int sig) |
| 253 | { |
| 254 | pause_proxies(); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 255 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 256 | signal(sig, sig_pause); |
| 257 | } |
| 258 | |
| 259 | /* |
| 260 | * upon SIGTTIN, let's have a soft stop. |
| 261 | */ |
| 262 | void sig_listen(int sig) |
| 263 | { |
| 264 | listen_proxies(); |
| 265 | signal(sig, sig_listen); |
| 266 | } |
| 267 | |
| 268 | /* |
| 269 | * this function dumps every server's state when the process receives SIGHUP. |
| 270 | */ |
| 271 | void sig_dump_state(int sig) |
| 272 | { |
| 273 | struct proxy *p = proxy; |
| 274 | |
| 275 | Warning("SIGHUP received, dumping servers states.\n"); |
| 276 | while (p) { |
| 277 | struct server *s = p->srv; |
| 278 | |
| 279 | send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id); |
| 280 | while (s) { |
| 281 | snprintf(trash, sizeof(trash), |
| 282 | "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %d tot.", |
| 283 | p->id, s->id, |
| 284 | (s->state & SRV_RUNNING) ? "UP" : "DOWN", |
| 285 | s->cur_sess, s->nbpend, s->cum_sess); |
| 286 | Warning("%s\n", trash); |
| 287 | send_log(p, LOG_NOTICE, "%s\n", trash); |
| 288 | s = s->next; |
| 289 | } |
| 290 | |
Willy Tarreau | 5fcc8f1 | 2007-09-17 11:27:09 +0200 | [diff] [blame] | 291 | /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */ |
| 292 | if (!p->srv) { |
| 293 | snprintf(trash, sizeof(trash), |
| 294 | "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %d+%d.", |
| 295 | p->id, |
| 296 | p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn); |
| 297 | } else if (p->srv_act == 0) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 298 | snprintf(trash, sizeof(trash), |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 299 | "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %d+%d.", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 300 | p->id, |
| 301 | (p->srv_bck) ? "is running on backup servers" : "has no server available", |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 302 | p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 303 | } else { |
| 304 | snprintf(trash, sizeof(trash), |
| 305 | "SIGHUP: Proxy %s has %d active servers and %d backup servers available." |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 306 | " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %d+%d.", |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 307 | p->id, p->srv_act, p->srv_bck, |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 308 | p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 309 | } |
| 310 | Warning("%s\n", trash); |
| 311 | send_log(p, LOG_NOTICE, "%s\n", trash); |
| 312 | |
| 313 | p = p->next; |
| 314 | } |
| 315 | signal(sig, sig_dump_state); |
| 316 | } |
| 317 | |
| 318 | void dump(int sig) |
| 319 | { |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 320 | #if 0 |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 321 | struct task *t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 322 | struct session *s; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 323 | struct rb_node *node; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 324 | |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 325 | for(node = rb_first(&wait_queue[0]); |
| 326 | node != NULL; node = rb_next(node)) { |
| 327 | t = rb_entry(node, struct task, rb_node); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 328 | s = t->context; |
| 329 | qfprintf(stderr,"[dump] wq: task %p, still %ld ms, " |
| 330 | "cli=%d, srv=%d, cr=%d, cw=%d, sr=%d, sw=%d, " |
| 331 | "req=%d, rep=%d, clifd=%d\n", |
Willy Tarreau | 42aae5c | 2007-04-29 17:43:56 +0200 | [diff] [blame] | 332 | s, tv_ms_remain(&now, &t->expire), |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 333 | s->cli_state, |
| 334 | s->srv_state, |
Willy Tarreau | f161a34 | 2007-04-08 16:59:42 +0200 | [diff] [blame] | 335 | EV_FD_ISSET(s->cli_fd, DIR_RD), |
| 336 | EV_FD_ISSET(s->cli_fd, DIR_WR), |
| 337 | EV_FD_ISSET(s->srv_fd, DIR_RD), |
| 338 | EV_FD_ISSET(s->srv_fd, DIR_WR), |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 339 | s->req->l, s->rep?s->rep->l:0, s->cli_fd |
| 340 | ); |
| 341 | } |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 342 | #endif |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 343 | /* dump memory usage then free everything possible */ |
| 344 | dump_pools(); |
| 345 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | #ifdef DEBUG_MEMORY |
| 349 | static void fast_stop(void) |
| 350 | { |
| 351 | struct proxy *p; |
| 352 | p = proxy; |
| 353 | while (p) { |
| 354 | p->grace = 0; |
| 355 | p = p->next; |
| 356 | } |
| 357 | soft_stop(); |
| 358 | } |
| 359 | |
| 360 | void sig_int(int sig) |
| 361 | { |
| 362 | /* This would normally be a hard stop, |
| 363 | but we want to be sure about deallocation, |
| 364 | and so on, so we do a soft stop with |
| 365 | 0 GRACE time |
| 366 | */ |
| 367 | fast_stop(); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 368 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 369 | /* If we are killed twice, we decide to die*/ |
| 370 | signal(sig, SIG_DFL); |
| 371 | } |
| 372 | |
| 373 | void sig_term(int sig) |
| 374 | { |
| 375 | /* This would normally be a hard stop, |
| 376 | but we want to be sure about deallocation, |
| 377 | and so on, so we do a soft stop with |
| 378 | 0 GRACE time |
| 379 | */ |
| 380 | fast_stop(); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 381 | pool_gc2(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 382 | /* If we are killed twice, we decide to die*/ |
| 383 | signal(sig, SIG_DFL); |
| 384 | } |
| 385 | #endif |
| 386 | |
| 387 | |
| 388 | /* |
| 389 | * This function initializes all the necessary variables. It only returns |
| 390 | * if everything is OK. If something fails, it exits. |
| 391 | */ |
| 392 | void init(int argc, char **argv) |
| 393 | { |
| 394 | int i; |
| 395 | int arg_mode = 0; /* MODE_DEBUG, ... */ |
| 396 | char *old_argv = *argv; |
| 397 | char *tmp; |
| 398 | char *cfg_pidfile = NULL; |
| 399 | |
| 400 | if (1<<INTBITS != sizeof(int)*8) { |
| 401 | fprintf(stderr, |
| 402 | "Error: wrong architecture. Recompile so that sizeof(int)=%d\n", |
| 403 | (int)(sizeof(int)*8)); |
| 404 | exit(1); |
| 405 | } |
| 406 | |
| 407 | /* |
| 408 | * Initialize the previously static variables. |
| 409 | */ |
| 410 | |
| 411 | totalconn = actconn = maxfd = listeners = stopping = 0; |
| 412 | |
| 413 | |
| 414 | #ifdef HAPROXY_MEMMAX |
| 415 | global.rlimit_memmax = HAPROXY_MEMMAX; |
| 416 | #endif |
| 417 | |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 418 | tv_update_date(-1,-1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 419 | start_date = now; |
| 420 | |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 421 | init_task(); |
| 422 | init_session(); |
Willy Tarreau | e4d7e55 | 2007-05-13 20:19:55 +0200 | [diff] [blame] | 423 | init_buffer(); |
| 424 | init_pendconn(); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 425 | init_proto_http(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 426 | |
| 427 | cfg_polling_mechanism = POLL_USE_SELECT; /* select() is always available */ |
| 428 | #if defined(ENABLE_POLL) |
| 429 | cfg_polling_mechanism |= POLL_USE_POLL; |
| 430 | #endif |
| 431 | #if defined(ENABLE_EPOLL) |
| 432 | cfg_polling_mechanism |= POLL_USE_EPOLL; |
| 433 | #endif |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 434 | #if defined(ENABLE_SEPOLL) |
| 435 | cfg_polling_mechanism |= POLL_USE_SEPOLL; |
| 436 | #endif |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 437 | #if defined(ENABLE_KQUEUE) |
| 438 | cfg_polling_mechanism |= POLL_USE_KQUEUE; |
| 439 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 440 | |
| 441 | pid = getpid(); |
| 442 | progname = *argv; |
| 443 | while ((tmp = strchr(progname, '/')) != NULL) |
| 444 | progname = tmp + 1; |
| 445 | |
| 446 | argc--; argv++; |
| 447 | while (argc > 0) { |
| 448 | char *flag; |
| 449 | |
| 450 | if (**argv == '-') { |
| 451 | flag = *argv+1; |
| 452 | |
| 453 | /* 1 arg */ |
| 454 | if (*flag == 'v') { |
| 455 | display_version(); |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 456 | if (flag[1] == 'v') /* -vv */ |
| 457 | display_build_opts(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 458 | exit(0); |
| 459 | } |
| 460 | #if defined(ENABLE_EPOLL) |
| 461 | else if (*flag == 'd' && flag[1] == 'e') |
| 462 | cfg_polling_mechanism &= ~POLL_USE_EPOLL; |
| 463 | #endif |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 464 | #if defined(ENABLE_SEPOLL) |
| 465 | else if (*flag == 'd' && flag[1] == 's') |
| 466 | cfg_polling_mechanism &= ~POLL_USE_SEPOLL; |
| 467 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 468 | #if defined(ENABLE_POLL) |
| 469 | else if (*flag == 'd' && flag[1] == 'p') |
| 470 | cfg_polling_mechanism &= ~POLL_USE_POLL; |
| 471 | #endif |
Willy Tarreau | 69cad1a | 2007-04-10 22:45:11 +0200 | [diff] [blame] | 472 | #if defined(ENABLE_KQUEUE) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 473 | else if (*flag == 'd' && flag[1] == 'k') |
| 474 | cfg_polling_mechanism &= ~POLL_USE_KQUEUE; |
| 475 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 476 | else if (*flag == 'V') |
| 477 | arg_mode |= MODE_VERBOSE; |
| 478 | else if (*flag == 'd' && flag[1] == 'b') |
| 479 | arg_mode |= MODE_FOREGROUND; |
| 480 | else if (*flag == 'd') |
| 481 | arg_mode |= MODE_DEBUG; |
| 482 | else if (*flag == 'c') |
| 483 | arg_mode |= MODE_CHECK; |
| 484 | else if (*flag == 'D') |
| 485 | arg_mode |= MODE_DAEMON | MODE_QUIET; |
| 486 | else if (*flag == 'q') |
| 487 | arg_mode |= MODE_QUIET; |
| 488 | else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) { |
| 489 | /* list of pids to finish ('f') or terminate ('t') */ |
| 490 | |
| 491 | if (flag[1] == 'f') |
| 492 | oldpids_sig = SIGUSR1; /* finish then exit */ |
| 493 | else |
| 494 | oldpids_sig = SIGTERM; /* terminate immediately */ |
| 495 | argv++; argc--; |
| 496 | |
| 497 | if (argc > 0) { |
| 498 | oldpids = calloc(argc, sizeof(int)); |
| 499 | while (argc > 0) { |
| 500 | oldpids[nb_oldpids] = atol(*argv); |
| 501 | if (oldpids[nb_oldpids] <= 0) |
| 502 | usage(old_argv); |
| 503 | argc--; argv++; |
| 504 | nb_oldpids++; |
| 505 | } |
| 506 | } |
| 507 | } |
| 508 | else { /* >=2 args */ |
| 509 | argv++; argc--; |
| 510 | if (argc == 0) |
| 511 | usage(old_argv); |
| 512 | |
| 513 | switch (*flag) { |
| 514 | case 'n' : cfg_maxconn = atol(*argv); break; |
| 515 | case 'm' : global.rlimit_memmax = atol(*argv); break; |
| 516 | case 'N' : cfg_maxpconn = atol(*argv); break; |
| 517 | case 'f' : cfg_cfgfile = *argv; break; |
| 518 | case 'p' : cfg_pidfile = *argv; break; |
| 519 | default: usage(old_argv); |
| 520 | } |
| 521 | } |
| 522 | } |
| 523 | else |
| 524 | usage(old_argv); |
| 525 | argv++; argc--; |
| 526 | } |
| 527 | |
| 528 | global.mode = MODE_STARTING | /* during startup, we want most of the alerts */ |
| 529 | (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_VERBOSE |
| 530 | | MODE_QUIET | MODE_CHECK | MODE_DEBUG)); |
| 531 | |
| 532 | if (!cfg_cfgfile) |
| 533 | usage(old_argv); |
| 534 | |
| 535 | gethostname(hostname, MAX_HOSTNAME_LEN); |
| 536 | |
| 537 | have_appsession = 0; |
| 538 | global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */ |
| 539 | if (readcfgfile(cfg_cfgfile) < 0) { |
| 540 | Alert("Error reading configuration file : %s\n", cfg_cfgfile); |
| 541 | exit(1); |
| 542 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 543 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 544 | if (have_appsession) |
| 545 | appsession_init(); |
| 546 | |
| 547 | if (global.mode & MODE_CHECK) { |
| 548 | qfprintf(stdout, "Configuration file is valid : %s\n", cfg_cfgfile); |
| 549 | exit(0); |
| 550 | } |
| 551 | |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 552 | if (start_checks() < 0) |
| 553 | exit(1); |
| 554 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 555 | if (cfg_maxconn > 0) |
| 556 | global.maxconn = cfg_maxconn; |
| 557 | |
| 558 | if (cfg_pidfile) { |
| 559 | if (global.pidfile) |
| 560 | free(global.pidfile); |
| 561 | global.pidfile = strdup(cfg_pidfile); |
| 562 | } |
| 563 | |
| 564 | if (global.maxconn == 0) |
| 565 | global.maxconn = DEFAULT_MAXCONN; |
| 566 | |
| 567 | global.maxsock += global.maxconn * 2; /* each connection needs two sockets */ |
| 568 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 569 | if (global.tune.maxpollevents <= 0) |
| 570 | global.tune.maxpollevents = MAX_POLL_EVENTS; |
| 571 | |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 572 | if (global.tune.maxaccept <= 0) { |
| 573 | if (global.nbproc > 1) |
| 574 | global.tune.maxaccept = 8; /* leave some conns to other processes */ |
| 575 | else |
| 576 | global.tune.maxaccept = -1; /* accept all incoming conns */ |
| 577 | } |
| 578 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 579 | if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) { |
| 580 | /* command line debug mode inhibits configuration mode */ |
| 581 | global.mode &= ~(MODE_DAEMON | MODE_QUIET); |
| 582 | } |
| 583 | global.mode |= (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_QUIET | |
Willy Tarreau | fbee713 | 2007-10-18 13:53:22 +0200 | [diff] [blame] | 584 | MODE_VERBOSE | MODE_DEBUG )); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 585 | |
| 586 | if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) { |
| 587 | Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n"); |
| 588 | global.mode &= ~(MODE_DAEMON | MODE_QUIET); |
| 589 | } |
| 590 | |
| 591 | if ((global.nbproc > 1) && !(global.mode & MODE_DAEMON)) { |
| 592 | if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG))) |
| 593 | Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n"); |
| 594 | global.nbproc = 1; |
| 595 | } |
| 596 | |
| 597 | if (global.nbproc < 1) |
| 598 | global.nbproc = 1; |
| 599 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 600 | fdtab = (struct fdtab *)calloc(1, |
| 601 | sizeof(struct fdtab) * (global.maxsock)); |
| 602 | for (i = 0; i < global.maxsock; i++) { |
| 603 | fdtab[i].state = FD_STCLOSE; |
| 604 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 605 | |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 606 | /* |
| 607 | * Note: we could register external pollers here. |
| 608 | * Built-in pollers have been registered before main(). |
| 609 | */ |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 610 | |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 611 | if (!(cfg_polling_mechanism & POLL_USE_KQUEUE)) |
| 612 | disable_poller("kqueue"); |
| 613 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 614 | if (!(cfg_polling_mechanism & POLL_USE_EPOLL)) |
| 615 | disable_poller("epoll"); |
| 616 | |
Willy Tarreau | de99e99 | 2007-04-16 00:53:59 +0200 | [diff] [blame] | 617 | if (!(cfg_polling_mechanism & POLL_USE_SEPOLL)) |
| 618 | disable_poller("sepoll"); |
| 619 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 620 | if (!(cfg_polling_mechanism & POLL_USE_POLL)) |
| 621 | disable_poller("poll"); |
| 622 | |
| 623 | if (!(cfg_polling_mechanism & POLL_USE_SELECT)) |
| 624 | disable_poller("select"); |
| 625 | |
| 626 | /* Note: we could disable any poller by name here */ |
| 627 | |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 628 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) |
| 629 | list_pollers(stderr); |
| 630 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 631 | if (!init_pollers()) { |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 632 | Alert("No polling mechanism available.\n"); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 633 | exit(1); |
| 634 | } |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 635 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) { |
| 636 | printf("Using %s() as the polling mechanism.\n", cur_poller.name); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 637 | } |
| 638 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | void deinit(void) |
| 642 | { |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 643 | struct proxy *p = proxy, *p0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 644 | struct cap_hdr *h,*h_next; |
| 645 | struct server *s,*s_next; |
| 646 | struct listener *l,*l_next; |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 647 | struct acl_cond *cond, *condb; |
| 648 | struct hdr_exp *exp, *expb; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 649 | struct acl *acl, *aclb; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 650 | struct switching_rule *rule, *ruleb; |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 651 | struct redirect_rule *rdr, *rdrb; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 652 | struct uri_auth *uap, *ua = NULL; |
| 653 | struct user_auth *user; |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 654 | int i; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 655 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 656 | while (p) { |
| 657 | if (p->id) |
| 658 | free(p->id); |
| 659 | |
| 660 | if (p->check_req) |
| 661 | free(p->check_req); |
| 662 | |
| 663 | if (p->cookie_name) |
| 664 | free(p->cookie_name); |
| 665 | |
Krzysztof Piotr Oledzki | 1acf217 | 2008-05-29 23:03:34 +0200 | [diff] [blame] | 666 | if (p->cookie_domain) |
| 667 | free(p->cookie_domain); |
| 668 | |
Willy Tarreau | 0173280 | 2007-11-01 22:48:15 +0100 | [diff] [blame] | 669 | if (p->url_param_name) |
| 670 | free(p->url_param_name); |
| 671 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 672 | if (p->capture_name) |
| 673 | free(p->capture_name); |
| 674 | |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 675 | if (p->monitor_uri) |
| 676 | free(p->monitor_uri); |
| 677 | |
| 678 | for (i = 0; i < HTTP_ERR_SIZE; i++) { |
| 679 | if (p->errmsg[i].len) |
| 680 | free(p->errmsg[i].str); |
| 681 | } |
| 682 | |
| 683 | for (i = 0; i < p->nb_reqadd; i++) { |
| 684 | if (p->req_add[i]) |
| 685 | free(p->req_add[i]); |
| 686 | } |
| 687 | |
| 688 | for (i = 0; i < p->nb_rspadd; i++) { |
| 689 | if (p->rsp_add[i]) |
| 690 | free(p->rsp_add[i]); |
| 691 | } |
| 692 | |
| 693 | list_for_each_entry_safe(cond, condb, &p->block_cond, list) { |
| 694 | LIST_DEL(&cond->list); |
| 695 | prune_acl_cond(cond); |
| 696 | free(cond); |
| 697 | } |
| 698 | |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 699 | list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) { |
| 700 | LIST_DEL(&cond->list); |
| 701 | prune_acl_cond(cond); |
| 702 | free(cond); |
| 703 | } |
| 704 | |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 705 | for (exp = p->req_exp; exp != NULL; ) { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 706 | if (exp->preg) { |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 707 | regfree((regex_t *)exp->preg); |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 708 | free((regex_t *)exp->preg); |
| 709 | } |
| 710 | |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 711 | if (exp->replace && exp->action != ACT_SETBE) |
| 712 | free((char *)exp->replace); |
| 713 | expb = exp; |
| 714 | exp = exp->next; |
| 715 | free(expb); |
| 716 | } |
| 717 | |
| 718 | for (exp = p->rsp_exp; exp != NULL; ) { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 719 | if (exp->preg) { |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 720 | regfree((regex_t *)exp->preg); |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 721 | free((regex_t *)exp->preg); |
| 722 | } |
| 723 | |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 724 | if (exp->replace && exp->action != ACT_SETBE) |
| 725 | free((char *)exp->replace); |
| 726 | expb = exp; |
| 727 | exp = exp->next; |
| 728 | free(expb); |
| 729 | } |
| 730 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 731 | /* build a list of unique uri_auths */ |
| 732 | if (!ua) |
| 733 | ua = p->uri_auth; |
| 734 | else { |
| 735 | /* check if p->uri_auth is unique */ |
| 736 | for (uap = ua; uap; uap=uap->next) |
| 737 | if (uap == p->uri_auth) |
| 738 | break; |
| 739 | |
| 740 | if (!uap) { |
| 741 | /* add it, if it is */ |
| 742 | p->uri_auth->next = ua; |
| 743 | ua = p->uri_auth; |
| 744 | } |
| 745 | } |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 746 | |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 747 | list_for_each_entry_safe(acl, aclb, &p->acl, list) { |
| 748 | LIST_DEL(&acl->list); |
| 749 | prune_acl(acl); |
| 750 | free(acl); |
| 751 | } |
| 752 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 753 | list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) { |
| 754 | LIST_DEL(&rule->list); |
| 755 | |
| 756 | prune_acl_cond(rule->cond); |
| 757 | free(rule->cond); |
| 758 | |
| 759 | free(rule); |
| 760 | } |
| 761 | |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 762 | list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) { |
| 763 | LIST_DEL(&rdr->list); |
| 764 | prune_acl_cond(rdr->cond); |
| 765 | free(rdr->cond); |
| 766 | free(rdr->rdr_str); |
| 767 | free(rdr); |
| 768 | } |
| 769 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 770 | if (p->appsession_name) |
| 771 | free(p->appsession_name); |
| 772 | |
| 773 | h = p->req_cap; |
| 774 | while (h) { |
| 775 | h_next = h->next; |
| 776 | if (h->name) |
| 777 | free(h->name); |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 778 | pool_destroy2(h->pool); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 779 | free(h); |
| 780 | h = h_next; |
| 781 | }/* end while(h) */ |
| 782 | |
| 783 | h = p->rsp_cap; |
| 784 | while (h) { |
| 785 | h_next = h->next; |
| 786 | if (h->name) |
| 787 | free(h->name); |
| 788 | |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 789 | pool_destroy2(h->pool); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 790 | free(h); |
| 791 | h = h_next; |
| 792 | }/* end while(h) */ |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 793 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 794 | s = p->srv; |
| 795 | while (s) { |
| 796 | s_next = s->next; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 797 | |
| 798 | if (s->check) { |
| 799 | task_delete(s->check); |
| 800 | task_free(s->check); |
| 801 | } |
| 802 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 803 | if (s->id) |
| 804 | free(s->id); |
| 805 | |
| 806 | if (s->cookie) |
| 807 | free(s->cookie); |
| 808 | |
| 809 | free(s); |
| 810 | s = s_next; |
| 811 | }/* end while(s) */ |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 812 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 813 | l = p->listen; |
| 814 | while (l) { |
| 815 | l_next = l->next; |
| 816 | free(l); |
| 817 | l = l_next; |
| 818 | }/* end while(l) */ |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 819 | |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 820 | pool_destroy2(p->req_cap_pool); |
| 821 | pool_destroy2(p->rsp_cap_pool); |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 822 | pool_destroy2(p->hdr_idx_pool); |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 823 | p0 = p; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 824 | p = p->next; |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 825 | free(p0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 826 | }/* end while(p) */ |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 827 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 828 | while (ua) { |
| 829 | uap = ua; |
| 830 | ua = ua->next; |
| 831 | |
| 832 | if (uap->uri_prefix) |
| 833 | free(uap->uri_prefix); |
| 834 | |
| 835 | if (uap->auth_realm) |
| 836 | free(uap->auth_realm); |
| 837 | |
| 838 | while (uap->users) { |
| 839 | user = uap->users; |
| 840 | uap->users = uap->users->next; |
| 841 | |
| 842 | free(user->user_pwd); |
| 843 | free(user); |
| 844 | } |
| 845 | |
| 846 | free(uap); |
| 847 | } |
| 848 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 849 | protocol_unbind_all(); |
| 850 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 851 | if (global.chroot) free(global.chroot); |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 852 | global.chroot = NULL; |
| 853 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 854 | if (global.pidfile) free(global.pidfile); |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 855 | global.pidfile = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 856 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 857 | if (fdtab) free(fdtab); |
Willy Tarreau | 0fc45a7 | 2007-06-17 00:36:03 +0200 | [diff] [blame] | 858 | fdtab = NULL; |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 859 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 860 | if (oldpids) |
| 861 | free(oldpids); |
| 862 | |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 863 | pool_destroy2(pool2_session); |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 864 | pool_destroy2(pool2_buffer); |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 865 | pool_destroy2(pool2_requri); |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 866 | pool_destroy2(pool2_task); |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 867 | pool_destroy2(pool2_tree64); |
Willy Tarreau | 086b3b4 | 2007-05-13 21:45:51 +0200 | [diff] [blame] | 868 | pool_destroy2(pool2_capture); |
Willy Tarreau | 63963c6 | 2007-05-13 21:29:55 +0200 | [diff] [blame] | 869 | pool_destroy2(pool2_appsess); |
Willy Tarreau | e4d7e55 | 2007-05-13 20:19:55 +0200 | [diff] [blame] | 870 | pool_destroy2(pool2_pendconn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 871 | |
| 872 | if (have_appsession) { |
Willy Tarreau | 63963c6 | 2007-05-13 21:29:55 +0200 | [diff] [blame] | 873 | pool_destroy2(apools.serverid); |
| 874 | pool_destroy2(apools.sessid); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 875 | } |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 876 | |
| 877 | deinit_pollers(); |
| 878 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 879 | } /* end deinit() */ |
| 880 | |
| 881 | /* sends the signal <sig> to all pids found in <oldpids> */ |
| 882 | static void tell_old_pids(int sig) |
| 883 | { |
| 884 | int p; |
| 885 | for (p = 0; p < nb_oldpids; p++) |
| 886 | kill(oldpids[p], sig); |
| 887 | } |
| 888 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 889 | /* |
| 890 | * Runs the polling loop |
| 891 | * |
| 892 | * FIXME: |
| 893 | * - we still use 'listeners' to check whether we want to stop or not. |
| 894 | * |
| 895 | */ |
| 896 | void run_poll_loop() |
| 897 | { |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 898 | struct timeval next; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 899 | |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 900 | tv_update_date(0,1); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 901 | while (1) { |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 902 | process_runnable_tasks(&next); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 903 | |
| 904 | /* stop when there's no connection left and we don't allow them anymore */ |
| 905 | if (!actconn && listeners == 0) |
| 906 | break; |
| 907 | |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 908 | cur_poller.poll(&cur_poller, &next); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 909 | } |
| 910 | } |
| 911 | |
| 912 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 913 | int main(int argc, char **argv) |
| 914 | { |
| 915 | int err, retry; |
| 916 | struct rlimit limit; |
| 917 | FILE *pidfile = NULL; |
| 918 | init(argc, argv); |
| 919 | |
| 920 | signal(SIGQUIT, dump); |
| 921 | signal(SIGUSR1, sig_soft_stop); |
| 922 | signal(SIGHUP, sig_dump_state); |
| 923 | #ifdef DEBUG_MEMORY |
| 924 | signal(SIGINT, sig_int); |
| 925 | signal(SIGTERM, sig_term); |
| 926 | #endif |
| 927 | |
| 928 | /* on very high loads, a sigpipe sometimes happen just between the |
| 929 | * getsockopt() which tells "it's OK to write", and the following write :-( |
| 930 | */ |
| 931 | #ifndef MSG_NOSIGNAL |
| 932 | signal(SIGPIPE, SIG_IGN); |
| 933 | #endif |
| 934 | |
| 935 | /* We will loop at most 100 times with 10 ms delay each time. |
| 936 | * That's at most 1 second. We only send a signal to old pids |
| 937 | * if we cannot grab at least one port. |
| 938 | */ |
| 939 | retry = MAX_START_RETRIES; |
| 940 | err = ERR_NONE; |
| 941 | while (retry >= 0) { |
| 942 | struct timeval w; |
| 943 | err = start_proxies(retry == 0 || nb_oldpids == 0); |
Willy Tarreau | e13e925 | 2007-12-20 23:05:50 +0100 | [diff] [blame] | 944 | /* exit the loop on no error or fatal error */ |
| 945 | if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 946 | break; |
| 947 | if (nb_oldpids == 0) |
| 948 | break; |
| 949 | |
| 950 | /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on |
| 951 | * listening sockets. So on those platforms, it would be wiser to |
| 952 | * simply send SIGUSR1, which will not be undoable. |
| 953 | */ |
| 954 | tell_old_pids(SIGTTOU); |
| 955 | /* give some time to old processes to stop listening */ |
| 956 | w.tv_sec = 0; |
| 957 | w.tv_usec = 10*1000; |
| 958 | select(0, NULL, NULL, NULL, &w); |
| 959 | retry--; |
| 960 | } |
| 961 | |
| 962 | /* Note: start_proxies() sends an alert when it fails. */ |
| 963 | if (err != ERR_NONE) { |
| 964 | if (retry != MAX_START_RETRIES && nb_oldpids) |
| 965 | tell_old_pids(SIGTTIN); |
| 966 | exit(1); |
| 967 | } |
| 968 | |
| 969 | if (listeners == 0) { |
| 970 | Alert("[%s.main()] No enabled listener found (check the <listen> keywords) ! Exiting.\n", argv[0]); |
| 971 | /* Note: we don't have to send anything to the old pids because we |
| 972 | * never stopped them. */ |
| 973 | exit(1); |
| 974 | } |
| 975 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 976 | if (protocol_bind_all() != ERR_NONE) { |
| 977 | Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]); |
| 978 | protocol_unbind_all(); /* cleanup everything we can */ |
| 979 | if (nb_oldpids) |
| 980 | tell_old_pids(SIGTTIN); |
| 981 | exit(1); |
| 982 | } |
| 983 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 984 | /* prepare pause/play signals */ |
| 985 | signal(SIGTTOU, sig_pause); |
| 986 | signal(SIGTTIN, sig_listen); |
| 987 | |
| 988 | if (global.mode & MODE_DAEMON) { |
| 989 | global.mode &= ~MODE_VERBOSE; |
| 990 | global.mode |= MODE_QUIET; |
| 991 | } |
| 992 | |
| 993 | /* MODE_QUIET can inhibit alerts and warnings below this line */ |
| 994 | |
| 995 | global.mode &= ~MODE_STARTING; |
| 996 | if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) { |
| 997 | /* detach from the tty */ |
| 998 | fclose(stdin); fclose(stdout); fclose(stderr); |
| 999 | close(0); close(1); close(2); |
| 1000 | } |
| 1001 | |
| 1002 | /* open log & pid files before the chroot */ |
| 1003 | if (global.mode & MODE_DAEMON && global.pidfile != NULL) { |
| 1004 | int pidfd; |
| 1005 | unlink(global.pidfile); |
| 1006 | pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644); |
| 1007 | if (pidfd < 0) { |
| 1008 | Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile); |
| 1009 | if (nb_oldpids) |
| 1010 | tell_old_pids(SIGTTIN); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1011 | protocol_unbind_all(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1012 | exit(1); |
| 1013 | } |
| 1014 | pidfile = fdopen(pidfd, "w"); |
| 1015 | } |
| 1016 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1017 | /* ulimits */ |
| 1018 | if (!global.rlimit_nofile) |
| 1019 | global.rlimit_nofile = global.maxsock; |
| 1020 | |
| 1021 | if (global.rlimit_nofile) { |
| 1022 | limit.rlim_cur = limit.rlim_max = global.rlimit_nofile; |
| 1023 | if (setrlimit(RLIMIT_NOFILE, &limit) == -1) { |
| 1024 | Warning("[%s.main()] Cannot raise FD limit to %d.\n", argv[0], global.rlimit_nofile); |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | if (global.rlimit_memmax) { |
| 1029 | limit.rlim_cur = limit.rlim_max = |
| 1030 | global.rlimit_memmax * 1048576 / global.nbproc; |
| 1031 | #ifdef RLIMIT_AS |
| 1032 | if (setrlimit(RLIMIT_AS, &limit) == -1) { |
| 1033 | Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
| 1034 | argv[0], global.rlimit_memmax); |
| 1035 | } |
| 1036 | #else |
| 1037 | if (setrlimit(RLIMIT_DATA, &limit) == -1) { |
| 1038 | Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
| 1039 | argv[0], global.rlimit_memmax); |
| 1040 | } |
| 1041 | #endif |
| 1042 | } |
| 1043 | |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 1044 | #ifdef CONFIG_HAP_TCPSPLICE |
| 1045 | if (global.last_checks & LSTCHK_TCPSPLICE) { |
| 1046 | if (tcp_splice_start() < 0) { |
| 1047 | Alert("[%s.main()] Cannot enable tcp_splice.\n" |
| 1048 | " Make sure you have enough permissions and that the module is loadable.\n" |
| 1049 | " Alternatively, you may disable the 'tcpsplice' options in the configuration.\n" |
| 1050 | "", argv[0], global.gid); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1051 | protocol_unbind_all(); |
Willy Tarreau | 6d1a988 | 2007-01-07 02:03:04 +0100 | [diff] [blame] | 1052 | exit(1); |
| 1053 | } |
| 1054 | } |
| 1055 | #endif |
| 1056 | |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 1057 | #ifdef CONFIG_HAP_CTTPROXY |
| 1058 | if (global.last_checks & LSTCHK_CTTPROXY) { |
| 1059 | int ret; |
| 1060 | |
| 1061 | ret = check_cttproxy_version(); |
| 1062 | if (ret < 0) { |
| 1063 | Alert("[%s.main()] Cannot enable cttproxy.\n%s", |
| 1064 | argv[0], |
| 1065 | (ret == -1) ? " Incorrect module version.\n" |
| 1066 | : " Make sure you have enough permissions and that the module is loaded.\n"); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1067 | protocol_unbind_all(); |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 1068 | exit(1); |
| 1069 | } |
| 1070 | } |
| 1071 | #endif |
| 1072 | |
| 1073 | if ((global.last_checks & LSTCHK_NETADM) && global.uid) { |
| 1074 | Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n" |
| 1075 | "", argv[0], global.gid); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1076 | protocol_unbind_all(); |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 1077 | exit(1); |
| 1078 | } |
| 1079 | |
Willy Tarreau | f223cc0 | 2007-10-15 18:57:08 +0200 | [diff] [blame] | 1080 | /* chroot if needed */ |
| 1081 | if (global.chroot != NULL) { |
| 1082 | if (chroot(global.chroot) == -1) { |
| 1083 | Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot); |
| 1084 | if (nb_oldpids) |
| 1085 | tell_old_pids(SIGTTIN); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1086 | protocol_unbind_all(); |
Willy Tarreau | f223cc0 | 2007-10-15 18:57:08 +0200 | [diff] [blame] | 1087 | exit(1); |
| 1088 | } |
| 1089 | chdir("/"); |
| 1090 | } |
| 1091 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1092 | if (nb_oldpids) |
| 1093 | tell_old_pids(oldpids_sig); |
| 1094 | |
| 1095 | /* Note that any error at this stage will be fatal because we will not |
| 1096 | * be able to restart the old pids. |
| 1097 | */ |
| 1098 | |
| 1099 | /* setgid / setuid */ |
| 1100 | if (global.gid && setgid(global.gid) == -1) { |
| 1101 | Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1102 | protocol_unbind_all(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1103 | exit(1); |
| 1104 | } |
| 1105 | |
| 1106 | if (global.uid && setuid(global.uid) == -1) { |
| 1107 | Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1108 | protocol_unbind_all(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1109 | exit(1); |
| 1110 | } |
| 1111 | |
| 1112 | /* check ulimits */ |
| 1113 | limit.rlim_cur = limit.rlim_max = 0; |
| 1114 | getrlimit(RLIMIT_NOFILE, &limit); |
| 1115 | if (limit.rlim_cur < global.maxsock) { |
| 1116 | Warning("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. Please raise 'ulimit-n' to %d or more to avoid any trouble.\n", |
| 1117 | argv[0], limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock); |
| 1118 | } |
| 1119 | |
| 1120 | if (global.mode & MODE_DAEMON) { |
| 1121 | int ret = 0; |
| 1122 | int proc; |
| 1123 | |
| 1124 | /* the father launches the required number of processes */ |
| 1125 | for (proc = 0; proc < global.nbproc; proc++) { |
| 1126 | ret = fork(); |
| 1127 | if (ret < 0) { |
| 1128 | Alert("[%s.main()] Cannot fork.\n", argv[0]); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1129 | protocol_unbind_all(); |
Willy Tarreau | d680371 | 2007-10-16 07:44:56 +0200 | [diff] [blame] | 1130 | exit(1); /* there has been an error */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1131 | } |
| 1132 | else if (ret == 0) /* child breaks here */ |
| 1133 | break; |
| 1134 | if (pidfile != NULL) { |
| 1135 | fprintf(pidfile, "%d\n", ret); |
| 1136 | fflush(pidfile); |
| 1137 | } |
Willy Tarreau | dcd4771 | 2007-11-04 23:35:08 +0100 | [diff] [blame] | 1138 | relative_pid++; /* each child will get a different one */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1139 | } |
| 1140 | /* close the pidfile both in children and father */ |
| 1141 | if (pidfile != NULL) |
| 1142 | fclose(pidfile); |
| 1143 | free(global.pidfile); |
Krzysztof Oledzki | 56f1e8b | 2007-10-11 18:30:14 +0200 | [diff] [blame] | 1144 | global.pidfile = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1145 | |
| 1146 | if (proc == global.nbproc) |
| 1147 | exit(0); /* parent must leave */ |
| 1148 | |
| 1149 | /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure |
| 1150 | * that we can detach from the TTY. We MUST NOT do it in other cases since |
| 1151 | * it would have already be done, and 0-2 would have been affected to listening |
| 1152 | * sockets |
| 1153 | */ |
| 1154 | if (!(global.mode & MODE_QUIET)) { |
| 1155 | /* detach from the tty */ |
| 1156 | fclose(stdin); fclose(stdout); fclose(stderr); |
| 1157 | close(0); close(1); close(2); /* close all fd's */ |
| 1158 | global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */ |
| 1159 | } |
| 1160 | pid = getpid(); /* update child's pid */ |
| 1161 | setsid(); |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 1162 | fork_poller(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1163 | } |
| 1164 | |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1165 | protocol_enable_all(); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1166 | /* |
| 1167 | * That's it : the central polling loop. Run until we stop. |
| 1168 | */ |
| 1169 | run_poll_loop(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1170 | |
| 1171 | /* Free all Hash Keys and all Hash elements */ |
| 1172 | appsession_cleanup(); |
| 1173 | /* Do some cleanup */ |
| 1174 | deinit(); |
| 1175 | |
| 1176 | exit(0); |
| 1177 | } |
| 1178 | |
| 1179 | |
| 1180 | /* |
| 1181 | * Local variables: |
| 1182 | * c-indent-level: 8 |
| 1183 | * c-basic-offset: 8 |
| 1184 | * End: |
| 1185 | */ |