blob: 1c4501a1d480a48c1a44be599b07c53a33d002a2 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau7c669d72008-06-20 15:04:11 +02003 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
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 Tarreau2dd0d472006-06-29 17:53:05 +020061#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 Tarreaud740bab2007-10-28 11:14:07 +010067#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020068#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 Tarreaubaaee002006-06-26 02:48:02 +020075
76#include <types/capture.h>
77#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020078
Willy Tarreau0fc45a72007-06-17 00:36:03 +020079#include <proto/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020080#include <proto/backend.h>
81#include <proto/buffers.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020082#include <proto/checks.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020083#include <proto/client.h>
84#include <proto/fd.h>
85#include <proto/log.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020086#include <proto/protocols.h>
Willy Tarreau80587432006-12-24 17:47:20 +010087#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020088#include <proto/proxy.h>
89#include <proto/queue.h>
90#include <proto/server.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020091#include <proto/session.h>
Willy Tarreau29857942009-05-10 09:01:21 +020092#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020093#include <proto/stream_sock.h>
94#include <proto/task.h>
95
Willy Tarreau6d1a9882007-01-07 02:03:04 +010096#ifdef CONFIG_HAP_TCPSPLICE
97#include <libtcpsplice.h>
98#endif
99
Willy Tarreaub38651a2007-03-24 17:24:39 +0100100#ifdef CONFIG_HAP_CTTPROXY
101#include <proto/cttproxy.h>
102#endif
103
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104/*********************************************************************/
105
106/*********************************************************************/
107
108char *cfg_cfgfile = NULL; /* configuration file */
109char *progname = NULL; /* program name */
110int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100111int relative_pid = 1; /* process id starting at 1 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112
113/* global options */
114struct global global = {
115 logfac1 : -1,
116 logfac2 : -1,
117 loglev1 : 7, /* max syslog level : debug */
118 loglev2 : 7,
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200119 .stats_timeout = MS_TO_TICKS(10000), /* stats timeout = 10 seconds */
Willy Tarreau03f6d672007-10-18 15:15:57 +0200120 .stats_sock = {
121 .timeout = &global.stats_timeout,
122 .maxconn = 10, /* 10 concurrent stats connections */
123 .perm = {
124 .ux = {
125 .uid = -1,
126 .gid = -1,
127 .mode = 0,
128 }
129 }
130 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 /* others NULL OK */
132};
133
134/*********************************************************************/
135
136int stopping; /* non zero means stopping in progress */
137
138/* Here we store informations about the pids of the processes we may pause
139 * or kill. We will send them a signal every 10 ms until we can bind to all
140 * our ports. With 200 retries, that's about 2 seconds.
141 */
142#define MAX_START_RETRIES 200
143static int nb_oldpids = 0;
144static int *oldpids = NULL;
145static int oldpids_sig; /* use USR1 or TERM */
146
147/* this is used to drain data, and as a temporary buffer for sprintf()... */
148char trash[BUFSIZE];
149
150const int zero = 0;
151const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200152const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153
154/*
155 * Syslog facilities and levels. Conforming to RFC3164.
156 */
157
158#define MAX_HOSTNAME_LEN 32
159static char hostname[MAX_HOSTNAME_LEN] = "";
160
161
162/*********************************************************************/
163/* general purpose functions ***************************************/
164/*********************************************************************/
165
166void display_version()
167{
168 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau7b4c5ae2008-04-19 21:06:14 +0200169 printf("Copyright 2000-2008 Willy Tarreau <w@1wt.eu>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170}
171
Willy Tarreau7b066db2007-12-02 11:28:59 +0100172void display_build_opts()
173{
174 printf("Build options :"
175#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100176 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100177#endif
178#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100179 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100180#endif
181#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100182 "\n CC = " BUILD_CC
183#endif
184#ifdef BUILD_CFLAGS
185 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100186#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100187#ifdef BUILD_OPTIONS
188 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100189#endif
190 "\n\n");
191}
192
Willy Tarreaubaaee002006-06-26 02:48:02 +0200193/*
194 * This function prints the command line usage and exits
195 */
196void usage(char *name)
197{
198 display_version();
199 fprintf(stderr,
200 "Usage : %s -f <cfgfile> [ -vdV"
201 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
202 " [ -p <pidfile> ] [ -m <max megs> ]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100203 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204 " -d enters debug mode ; -db only disables background mode.\n"
205 " -V enters verbose mode (disables quiet mode)\n"
206 " -D goes daemon ; implies -q\n"
207 " -q quiet mode : don't display messages\n"
208 " -c check mode : only check config file and exit\n"
209 " -n sets the maximum total # of connections (%d)\n"
210 " -m limits the usable amount of memory (in MB)\n"
211 " -N sets the default, per-proxy maximum # of connections (%d)\n"
212 " -p writes pids of all children to this file\n"
213#if defined(ENABLE_EPOLL)
214 " -de disables epoll() usage even when available\n"
215#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200216#if defined(ENABLE_SEPOLL)
217 " -ds disables speculative epoll() usage even when available\n"
218#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200219#if defined(ENABLE_KQUEUE)
220 " -dk disables kqueue() usage even when available\n"
221#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222#if defined(ENABLE_POLL)
223 " -dp disables poll() usage even when available\n"
224#endif
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100225#if defined(CONFIG_HAP_LINUX_SPLICE) || defined(CONFIG_HAP_TCPSPLICE)
226 " -dS disables splice usage (broken on old kernels)\n"
227#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200228 " -sf/-st [pid ]* finishes/terminates old pids. Must be last arguments.\n"
229 "\n",
230 name, DEFAULT_MAXCONN, cfg_maxpconn);
231 exit(1);
232}
233
234
235
236/*********************************************************************/
237/* more specific functions ***************************************/
238/*********************************************************************/
239
240/*
241 * upon SIGUSR1, let's have a soft stop.
242 */
243void sig_soft_stop(int sig)
244{
245 soft_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200246 pool_gc2();
Willy Tarreau01b3a532009-05-10 09:59:50 +0200247 signal_register(sig, SIG_IGN);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200248}
249
250/*
251 * upon SIGTTOU, we pause everything
252 */
253void sig_pause(int sig)
254{
255 pause_proxies();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200256 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200257}
258
259/*
260 * upon SIGTTIN, let's have a soft stop.
261 */
262void sig_listen(int sig)
263{
264 listen_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200265}
266
267/*
268 * this function dumps every server's state when the process receives SIGHUP.
269 */
270void sig_dump_state(int sig)
271{
272 struct proxy *p = proxy;
273
274 Warning("SIGHUP received, dumping servers states.\n");
275 while (p) {
276 struct server *s = p->srv;
277
278 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
279 while (s) {
280 snprintf(trash, sizeof(trash),
Willy Tarreau3b88d442009-04-11 20:44:08 +0200281 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
Willy Tarreaubaaee002006-06-26 02:48:02 +0200282 p->id, s->id,
283 (s->state & SRV_RUNNING) ? "UP" : "DOWN",
284 s->cur_sess, s->nbpend, s->cum_sess);
285 Warning("%s\n", trash);
286 send_log(p, LOG_NOTICE, "%s\n", trash);
287 s = s->next;
288 }
289
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200290 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
291 if (!p->srv) {
292 snprintf(trash, sizeof(trash),
Willy Tarreau3b88d442009-04-11 20:44:08 +0200293 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200294 p->id,
295 p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn);
296 } else if (p->srv_act == 0) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200297 snprintf(trash, sizeof(trash),
Willy Tarreau3b88d442009-04-11 20:44:08 +0200298 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
Willy Tarreaubaaee002006-06-26 02:48:02 +0200299 p->id,
300 (p->srv_bck) ? "is running on backup servers" : "has no server available",
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100301 p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200302 } else {
303 snprintf(trash, sizeof(trash),
304 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
Willy Tarreau3b88d442009-04-11 20:44:08 +0200305 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
Willy Tarreaubaaee002006-06-26 02:48:02 +0200306 p->id, p->srv_act, p->srv_bck,
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100307 p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200308 }
309 Warning("%s\n", trash);
310 send_log(p, LOG_NOTICE, "%s\n", trash);
311
312 p = p->next;
313 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200314}
315
316void dump(int sig)
317{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200318#if 0
Willy Tarreau964c9362007-01-07 00:38:00 +0100319 struct task *t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200320 struct session *s;
Willy Tarreau964c9362007-01-07 00:38:00 +0100321 struct rb_node *node;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322
Willy Tarreau964c9362007-01-07 00:38:00 +0100323 for(node = rb_first(&wait_queue[0]);
324 node != NULL; node = rb_next(node)) {
325 t = rb_entry(node, struct task, rb_node);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326 s = t->context;
327 qfprintf(stderr,"[dump] wq: task %p, still %ld ms, "
Willy Tarreau7e5067d2008-12-07 16:27:56 +0100328 "cli=%d, srv=%d, req=%d, rep=%d\n",
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200329 s, tv_ms_remain(&now, &t->expire),
Willy Tarreau7e5067d2008-12-07 16:27:56 +0100330 s->si[0].state,
331 s->si[1].state,
332 s->req->l, s->rep?s->rep->l:0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200333 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200334#endif
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200335 /* dump memory usage then free everything possible */
336 dump_pools();
337 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200338}
339
340#ifdef DEBUG_MEMORY
341static void fast_stop(void)
342{
343 struct proxy *p;
344 p = proxy;
345 while (p) {
346 p->grace = 0;
347 p = p->next;
348 }
349 soft_stop();
350}
351
352void sig_int(int sig)
353{
354 /* This would normally be a hard stop,
355 but we want to be sure about deallocation,
356 and so on, so we do a soft stop with
357 0 GRACE time
358 */
359 fast_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200360 pool_gc2();
Willy Tarreau01b3a532009-05-10 09:59:50 +0200361 /* If we are killed twice, we decide to die */
362 signal_register(sig, SIG_DFL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200363}
364
365void sig_term(int sig)
366{
367 /* This would normally be a hard stop,
368 but we want to be sure about deallocation,
369 and so on, so we do a soft stop with
370 0 GRACE time
371 */
372 fast_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200373 pool_gc2();
Willy Tarreau01b3a532009-05-10 09:59:50 +0200374 /* If we are killed twice, we decide to die */
375 signal_register(sig, SIG_DFL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200376}
377#endif
378
379
380/*
381 * This function initializes all the necessary variables. It only returns
382 * if everything is OK. If something fails, it exits.
383 */
384void init(int argc, char **argv)
385{
386 int i;
387 int arg_mode = 0; /* MODE_DEBUG, ... */
388 char *old_argv = *argv;
389 char *tmp;
390 char *cfg_pidfile = NULL;
391
Willy Tarreaubaaee002006-06-26 02:48:02 +0200392 /*
393 * Initialize the previously static variables.
394 */
395
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100396 totalconn = actconn = maxfd = listeners = stopping = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397
398
399#ifdef HAPROXY_MEMMAX
400 global.rlimit_memmax = HAPROXY_MEMMAX;
401#endif
402
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200403 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 start_date = now;
405
Willy Tarreau29857942009-05-10 09:01:21 +0200406 signal_init();
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200407 init_task();
408 init_session();
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200409 init_buffer();
410 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +0100411 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200412
Willy Tarreau43b78992009-01-25 15:42:27 +0100413 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100415 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200416#endif
417#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100418 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200419#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200420#if defined(ENABLE_SEPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100421 global.tune.options |= GTUNE_USE_SEPOLL;
Willy Tarreaude99e992007-04-16 00:53:59 +0200422#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200423#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +0100424 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200425#endif
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100426#if defined(CONFIG_HAP_LINUX_SPLICE) || defined(CONFIG_HAP_TCPSPLICE)
427 global.tune.options |= GTUNE_USE_SPLICE;
428#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200429
430 pid = getpid();
431 progname = *argv;
432 while ((tmp = strchr(progname, '/')) != NULL)
433 progname = tmp + 1;
434
435 argc--; argv++;
436 while (argc > 0) {
437 char *flag;
438
439 if (**argv == '-') {
440 flag = *argv+1;
441
442 /* 1 arg */
443 if (*flag == 'v') {
444 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +0100445 if (flag[1] == 'v') /* -vv */
446 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200447 exit(0);
448 }
449#if defined(ENABLE_EPOLL)
450 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +0100451 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200452#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200453#if defined(ENABLE_SEPOLL)
454 else if (*flag == 'd' && flag[1] == 's')
Willy Tarreau43b78992009-01-25 15:42:27 +0100455 global.tune.options &= ~GTUNE_USE_SEPOLL;
Willy Tarreaude99e992007-04-16 00:53:59 +0200456#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200457#if defined(ENABLE_POLL)
458 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +0100459 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200460#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +0200461#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200462 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +0100463 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200464#endif
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100465#if defined(CONFIG_HAP_LINUX_SPLICE) || defined(CONFIG_HAP_TCPSPLICE)
466 else if (*flag == 'd' && flag[1] == 'S')
467 global.tune.options &= ~GTUNE_USE_SPLICE;
468#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200469 else if (*flag == 'V')
470 arg_mode |= MODE_VERBOSE;
471 else if (*flag == 'd' && flag[1] == 'b')
472 arg_mode |= MODE_FOREGROUND;
473 else if (*flag == 'd')
474 arg_mode |= MODE_DEBUG;
475 else if (*flag == 'c')
476 arg_mode |= MODE_CHECK;
477 else if (*flag == 'D')
478 arg_mode |= MODE_DAEMON | MODE_QUIET;
479 else if (*flag == 'q')
480 arg_mode |= MODE_QUIET;
481 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
482 /* list of pids to finish ('f') or terminate ('t') */
483
484 if (flag[1] == 'f')
485 oldpids_sig = SIGUSR1; /* finish then exit */
486 else
487 oldpids_sig = SIGTERM; /* terminate immediately */
488 argv++; argc--;
489
490 if (argc > 0) {
491 oldpids = calloc(argc, sizeof(int));
492 while (argc > 0) {
493 oldpids[nb_oldpids] = atol(*argv);
494 if (oldpids[nb_oldpids] <= 0)
495 usage(old_argv);
496 argc--; argv++;
497 nb_oldpids++;
498 }
499 }
500 }
501 else { /* >=2 args */
502 argv++; argc--;
503 if (argc == 0)
504 usage(old_argv);
505
506 switch (*flag) {
507 case 'n' : cfg_maxconn = atol(*argv); break;
508 case 'm' : global.rlimit_memmax = atol(*argv); break;
509 case 'N' : cfg_maxpconn = atol(*argv); break;
510 case 'f' : cfg_cfgfile = *argv; break;
511 case 'p' : cfg_pidfile = *argv; break;
512 default: usage(old_argv);
513 }
514 }
515 }
516 else
517 usage(old_argv);
518 argv++; argc--;
519 }
520
521 global.mode = MODE_STARTING | /* during startup, we want most of the alerts */
522 (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_VERBOSE
523 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
524
525 if (!cfg_cfgfile)
526 usage(old_argv);
527
528 gethostname(hostname, MAX_HOSTNAME_LEN);
529
530 have_appsession = 0;
531 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
532 if (readcfgfile(cfg_cfgfile) < 0) {
533 Alert("Error reading configuration file : %s\n", cfg_cfgfile);
534 exit(1);
535 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200536
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537 if (have_appsession)
538 appsession_init();
539
540 if (global.mode & MODE_CHECK) {
541 qfprintf(stdout, "Configuration file is valid : %s\n", cfg_cfgfile);
542 exit(0);
543 }
544
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200545 if (start_checks() < 0)
546 exit(1);
547
Willy Tarreaubaaee002006-06-26 02:48:02 +0200548 if (cfg_maxconn > 0)
549 global.maxconn = cfg_maxconn;
550
551 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200552 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200553 global.pidfile = strdup(cfg_pidfile);
554 }
555
556 if (global.maxconn == 0)
557 global.maxconn = DEFAULT_MAXCONN;
558
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100559 if (!global.maxpipes) {
560 /* maxpipes not specified. Count how many frontends and backends
561 * may be using splicing, and bound that to maxconn.
562 */
563 struct proxy *cur;
564 int nbfe = 0, nbbe = 0;
565
566 for (cur = proxy; cur; cur = cur->next) {
567 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
568 if (cur->cap & PR_CAP_FE)
569 nbfe += cur->maxconn;
570 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +0100571 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100572 }
573 }
574 global.maxpipes = MAX(nbfe, nbbe);
575 if (global.maxpipes > global.maxconn)
576 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +0100577 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100578 }
579
580
Willy Tarreaubaaee002006-06-26 02:48:02 +0200581 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +0100582 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200583
Willy Tarreau1db37712007-06-03 17:16:49 +0200584 if (global.tune.maxpollevents <= 0)
585 global.tune.maxpollevents = MAX_POLL_EVENTS;
586
Willy Tarreauf49d1df2009-03-01 08:35:41 +0100587 if (global.tune.maxaccept == 0) {
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100588 if (global.nbproc > 1)
589 global.tune.maxaccept = 8; /* leave some conns to other processes */
590 else
Willy Tarreauf49d1df2009-03-01 08:35:41 +0100591 global.tune.maxaccept = 100; /* accept many incoming conns at once */
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100592 }
593
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100594 if (global.tune.recv_enough == 0)
595 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
596
Willy Tarreaubaaee002006-06-26 02:48:02 +0200597 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
598 /* command line debug mode inhibits configuration mode */
599 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
600 }
601 global.mode |= (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_QUIET |
Willy Tarreaufbee7132007-10-18 13:53:22 +0200602 MODE_VERBOSE | MODE_DEBUG ));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200603
604 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
605 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
606 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
607 }
608
609 if ((global.nbproc > 1) && !(global.mode & MODE_DAEMON)) {
610 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
611 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
612 global.nbproc = 1;
613 }
614
615 if (global.nbproc < 1)
616 global.nbproc = 1;
617
Willy Tarreaubaaee002006-06-26 02:48:02 +0200618 fdtab = (struct fdtab *)calloc(1,
619 sizeof(struct fdtab) * (global.maxsock));
620 for (i = 0; i < global.maxsock; i++) {
621 fdtab[i].state = FD_STCLOSE;
622 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200623
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200624 /*
625 * Note: we could register external pollers here.
626 * Built-in pollers have been registered before main().
627 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200628
Willy Tarreau43b78992009-01-25 15:42:27 +0100629 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200630 disable_poller("kqueue");
631
Willy Tarreau43b78992009-01-25 15:42:27 +0100632 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200633 disable_poller("epoll");
634
Willy Tarreau43b78992009-01-25 15:42:27 +0100635 if (!(global.tune.options & GTUNE_USE_SEPOLL))
Willy Tarreaude99e992007-04-16 00:53:59 +0200636 disable_poller("sepoll");
637
Willy Tarreau43b78992009-01-25 15:42:27 +0100638 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200639 disable_poller("poll");
640
Willy Tarreau43b78992009-01-25 15:42:27 +0100641 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200642 disable_poller("select");
643
644 /* Note: we could disable any poller by name here */
645
Willy Tarreau2ff76222007-04-09 19:29:56 +0200646 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
647 list_pollers(stderr);
648
Willy Tarreau4f60f162007-04-08 16:39:58 +0200649 if (!init_pollers()) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200650 Alert("No polling mechanism available.\n");
Willy Tarreau4f60f162007-04-08 16:39:58 +0200651 exit(1);
652 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200653 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
654 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200655 }
656
Willy Tarreaubaaee002006-06-26 02:48:02 +0200657}
658
659void deinit(void)
660{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200661 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200662 struct cap_hdr *h,*h_next;
663 struct server *s,*s_next;
664 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200665 struct acl_cond *cond, *condb;
666 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200667 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200668 struct switching_rule *rule, *ruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200669 struct redirect_rule *rdr, *rdrb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200670 struct uri_auth *uap, *ua = NULL;
671 struct user_auth *user;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200672 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200673
Willy Tarreaubaaee002006-06-26 02:48:02 +0200674 while (p) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200675 free(p->id);
676 free(p->check_req);
677 free(p->cookie_name);
678 free(p->cookie_domain);
679 free(p->url_param_name);
680 free(p->capture_name);
681 free(p->monitor_uri);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200682
Willy Tarreaua534fea2008-08-03 12:19:50 +0200683 for (i = 0; i < HTTP_ERR_SIZE; i++)
684 free(p->errmsg[i].str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200685
Willy Tarreaua534fea2008-08-03 12:19:50 +0200686 for (i = 0; i < p->nb_reqadd; i++)
687 free(p->req_add[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200688
Willy Tarreaua534fea2008-08-03 12:19:50 +0200689 for (i = 0; i < p->nb_rspadd; i++)
690 free(p->rsp_add[i]);
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200691
692 list_for_each_entry_safe(cond, condb, &p->block_cond, list) {
693 LIST_DEL(&cond->list);
694 prune_acl_cond(cond);
695 free(cond);
696 }
697
Willy Tarreaub80c2302007-11-30 20:51:32 +0100698 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
699 LIST_DEL(&cond->list);
700 prune_acl_cond(cond);
701 free(cond);
702 }
703
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200704 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200705 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200706 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200707 free((regex_t *)exp->preg);
708 }
709
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200710 if (exp->replace && exp->action != ACT_SETBE)
711 free((char *)exp->replace);
712 expb = exp;
713 exp = exp->next;
714 free(expb);
715 }
716
717 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200718 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200719 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200720 free((regex_t *)exp->preg);
721 }
722
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200723 if (exp->replace && exp->action != ACT_SETBE)
724 free((char *)exp->replace);
725 expb = exp;
726 exp = exp->next;
727 free(expb);
728 }
729
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200730 /* build a list of unique uri_auths */
731 if (!ua)
732 ua = p->uri_auth;
733 else {
734 /* check if p->uri_auth is unique */
735 for (uap = ua; uap; uap=uap->next)
736 if (uap == p->uri_auth)
737 break;
738
Willy Tarreauaccc4e12008-06-24 11:14:45 +0200739 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200740 /* add it, if it is */
741 p->uri_auth->next = ua;
742 ua = p->uri_auth;
743 }
744 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200745
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200746 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
747 LIST_DEL(&acl->list);
748 prune_acl(acl);
749 free(acl);
750 }
751
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200752 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
753 LIST_DEL(&rule->list);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200754 prune_acl_cond(rule->cond);
755 free(rule->cond);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200756 free(rule);
757 }
758
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200759 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
760 LIST_DEL(&rdr->list);
761 prune_acl_cond(rdr->cond);
762 free(rdr->cond);
763 free(rdr->rdr_str);
764 free(rdr);
765 }
766
Willy Tarreaua534fea2008-08-03 12:19:50 +0200767 free(p->appsession_name);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200768
769 h = p->req_cap;
770 while (h) {
771 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200772 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200773 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774 free(h);
775 h = h_next;
776 }/* end while(h) */
777
778 h = p->rsp_cap;
779 while (h) {
780 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200781 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200782 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200783 free(h);
784 h = h_next;
785 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200786
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787 s = p->srv;
788 while (s) {
789 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200790
791 if (s->check) {
792 task_delete(s->check);
793 task_free(s->check);
794 }
795
Willy Tarreaua534fea2008-08-03 12:19:50 +0200796 free(s->id);
797 free(s->cookie);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200798 free(s);
799 s = s_next;
800 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200801
Willy Tarreaubaaee002006-06-26 02:48:02 +0200802 l = p->listen;
803 while (l) {
804 l_next = l->next;
805 free(l);
806 l = l_next;
807 }/* end while(l) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200808
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200809 pool_destroy2(p->req_cap_pool);
810 pool_destroy2(p->rsp_cap_pool);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200811 pool_destroy2(p->hdr_idx_pool);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200812 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200813 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200814 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200815 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +0200816
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200817 while (ua) {
818 uap = ua;
819 ua = ua->next;
820
Willy Tarreaua534fea2008-08-03 12:19:50 +0200821 free(uap->uri_prefix);
822 free(uap->auth_realm);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200823
824 while (uap->users) {
825 user = uap->users;
826 uap->users = uap->users->next;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200827 free(user->user_pwd);
828 free(user);
829 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200830 free(uap);
831 }
832
Willy Tarreaudd815982007-10-16 12:25:14 +0200833 protocol_unbind_all();
834
Willy Tarreaua534fea2008-08-03 12:19:50 +0200835 free(global.chroot); global.chroot = NULL;
836 free(global.pidfile); global.pidfile = NULL;
837 free(fdtab); fdtab = NULL;
838 free(oldpids); oldpids = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200839
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200840 pool_destroy2(pool2_session);
Willy Tarreau7341d942007-05-13 19:56:02 +0200841 pool_destroy2(pool2_buffer);
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200842 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200843 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200844 pool_destroy2(pool2_capture);
Willy Tarreau63963c62007-05-13 21:29:55 +0200845 pool_destroy2(pool2_appsess);
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200846 pool_destroy2(pool2_pendconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200847
848 if (have_appsession) {
Willy Tarreau63963c62007-05-13 21:29:55 +0200849 pool_destroy2(apools.serverid);
850 pool_destroy2(apools.sessid);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200851 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200852
853 deinit_pollers();
854
Willy Tarreaubaaee002006-06-26 02:48:02 +0200855} /* end deinit() */
856
857/* sends the signal <sig> to all pids found in <oldpids> */
858static void tell_old_pids(int sig)
859{
860 int p;
861 for (p = 0; p < nb_oldpids; p++)
862 kill(oldpids[p], sig);
863}
864
Willy Tarreau4f60f162007-04-08 16:39:58 +0200865/*
866 * Runs the polling loop
867 *
868 * FIXME:
869 * - we still use 'listeners' to check whether we want to stop or not.
870 *
871 */
872void run_poll_loop()
873{
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200874 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200875
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200876 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200877 while (1) {
Willy Tarreau29857942009-05-10 09:01:21 +0200878 /* check if we caught some signals and process them */
879 signal_process_queue();
880
Willy Tarreau58b458d2008-06-29 22:40:23 +0200881 /* Check if we can expire some tasks */
882 wake_expired_tasks(&next);
883
884 /* Process a few tasks */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200885 process_runnable_tasks(&next);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200886
Willy Tarreau58b458d2008-06-29 22:40:23 +0200887 /* maintain all proxies in a consistent state. This should quickly
888 * become a task because it becomes expensive when there are huge
889 * numbers of proxies. */
890 maintain_proxies(&next);
891
Willy Tarreau4f60f162007-04-08 16:39:58 +0200892 /* stop when there's no connection left and we don't allow them anymore */
893 if (!actconn && listeners == 0)
894 break;
895
Willy Tarreau58b458d2008-06-29 22:40:23 +0200896 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200897 cur_poller.poll(&cur_poller, next);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200898 }
899}
900
901
Willy Tarreaubaaee002006-06-26 02:48:02 +0200902int main(int argc, char **argv)
903{
904 int err, retry;
905 struct rlimit limit;
906 FILE *pidfile = NULL;
907 init(argc, argv);
908
Willy Tarreau01b3a532009-05-10 09:59:50 +0200909 signal_register(SIGQUIT, dump);
910 signal_register(SIGUSR1, sig_soft_stop);
911 signal_register(SIGHUP, sig_dump_state);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200912#ifdef DEBUG_MEMORY
Willy Tarreau01b3a532009-05-10 09:59:50 +0200913 signal_register(SIGINT, sig_int);
914 signal_register(SIGTERM, sig_term);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200915#endif
916
917 /* on very high loads, a sigpipe sometimes happen just between the
918 * getsockopt() which tells "it's OK to write", and the following write :-(
919 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100920#if !defined(MSG_NOSIGNAL) || defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921 signal(SIGPIPE, SIG_IGN);
922#endif
923
924 /* We will loop at most 100 times with 10 ms delay each time.
925 * That's at most 1 second. We only send a signal to old pids
926 * if we cannot grab at least one port.
927 */
928 retry = MAX_START_RETRIES;
929 err = ERR_NONE;
930 while (retry >= 0) {
931 struct timeval w;
932 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +0100933 /* exit the loop on no error or fatal error */
934 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935 break;
936 if (nb_oldpids == 0)
937 break;
938
939 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
940 * listening sockets. So on those platforms, it would be wiser to
941 * simply send SIGUSR1, which will not be undoable.
942 */
943 tell_old_pids(SIGTTOU);
944 /* give some time to old processes to stop listening */
945 w.tv_sec = 0;
946 w.tv_usec = 10*1000;
947 select(0, NULL, NULL, NULL, &w);
948 retry--;
949 }
950
951 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +0100952 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200953 if (retry != MAX_START_RETRIES && nb_oldpids)
954 tell_old_pids(SIGTTIN);
955 exit(1);
956 }
957
958 if (listeners == 0) {
959 Alert("[%s.main()] No enabled listener found (check the <listen> keywords) ! Exiting.\n", argv[0]);
960 /* Note: we don't have to send anything to the old pids because we
961 * never stopped them. */
962 exit(1);
963 }
964
Willy Tarreau0a3b9d92009-02-04 17:05:23 +0100965 if ((protocol_bind_all() & ~ERR_WARN) != ERR_NONE) {
Willy Tarreaudd815982007-10-16 12:25:14 +0200966 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
967 protocol_unbind_all(); /* cleanup everything we can */
968 if (nb_oldpids)
969 tell_old_pids(SIGTTIN);
970 exit(1);
971 }
972
Willy Tarreaubaaee002006-06-26 02:48:02 +0200973 /* prepare pause/play signals */
Willy Tarreau01b3a532009-05-10 09:59:50 +0200974 signal_register(SIGTTOU, sig_pause);
975 signal_register(SIGTTIN, sig_listen);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200976
Willy Tarreaubaaee002006-06-26 02:48:02 +0200977 /* MODE_QUIET can inhibit alerts and warnings below this line */
978
979 global.mode &= ~MODE_STARTING;
980 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
981 /* detach from the tty */
982 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200983 }
984
985 /* open log & pid files before the chroot */
986 if (global.mode & MODE_DAEMON && global.pidfile != NULL) {
987 int pidfd;
988 unlink(global.pidfile);
989 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
990 if (pidfd < 0) {
991 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
992 if (nb_oldpids)
993 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +0200994 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200995 exit(1);
996 }
997 pidfile = fdopen(pidfd, "w");
998 }
999
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000 /* ulimits */
1001 if (!global.rlimit_nofile)
1002 global.rlimit_nofile = global.maxsock;
1003
1004 if (global.rlimit_nofile) {
1005 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
1006 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
1007 Warning("[%s.main()] Cannot raise FD limit to %d.\n", argv[0], global.rlimit_nofile);
1008 }
1009 }
1010
1011 if (global.rlimit_memmax) {
1012 limit.rlim_cur = limit.rlim_max =
1013 global.rlimit_memmax * 1048576 / global.nbproc;
1014#ifdef RLIMIT_AS
1015 if (setrlimit(RLIMIT_AS, &limit) == -1) {
1016 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1017 argv[0], global.rlimit_memmax);
1018 }
1019#else
1020 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
1021 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1022 argv[0], global.rlimit_memmax);
1023 }
1024#endif
1025 }
1026
Willy Tarreau6d1a9882007-01-07 02:03:04 +01001027#ifdef CONFIG_HAP_TCPSPLICE
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001028 if ((global.tune.options & GTUNE_USE_SPLICE) && (global.last_checks & LSTCHK_TCPSPLICE)) {
Willy Tarreau6d1a9882007-01-07 02:03:04 +01001029 if (tcp_splice_start() < 0) {
1030 Alert("[%s.main()] Cannot enable tcp_splice.\n"
1031 " Make sure you have enough permissions and that the module is loadable.\n"
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001032 " Alternatively, you may disable the 'tcpsplice' options in the configuration\n"
1033 " or add 'nosplice' in the global section, or start with '-dS'.\n"
Willy Tarreau6d1a9882007-01-07 02:03:04 +01001034 "", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001035 protocol_unbind_all();
Willy Tarreau6d1a9882007-01-07 02:03:04 +01001036 exit(1);
1037 }
1038 }
1039#endif
1040
Willy Tarreaub38651a2007-03-24 17:24:39 +01001041#ifdef CONFIG_HAP_CTTPROXY
1042 if (global.last_checks & LSTCHK_CTTPROXY) {
1043 int ret;
1044
1045 ret = check_cttproxy_version();
1046 if (ret < 0) {
1047 Alert("[%s.main()] Cannot enable cttproxy.\n%s",
1048 argv[0],
1049 (ret == -1) ? " Incorrect module version.\n"
1050 : " Make sure you have enough permissions and that the module is loaded.\n");
Willy Tarreaudd815982007-10-16 12:25:14 +02001051 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001052 exit(1);
1053 }
1054 }
1055#endif
1056
1057 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
1058 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01001059 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001060 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001061 exit(1);
1062 }
1063
Willy Tarreau4e30ed72009-02-04 18:02:48 +01001064 /* If the user is not root, we'll still let him try the configuration
1065 * but we inform him that unexpected behaviour may occur.
1066 */
1067 if ((global.last_checks & LSTCHK_NETADM) && getuid())
1068 Warning("[%s.main()] Some options which require full privileges"
1069 " might not work well.\n"
1070 "", argv[0]);
1071
Willy Tarreauf223cc02007-10-15 18:57:08 +02001072 /* chroot if needed */
1073 if (global.chroot != NULL) {
1074 if (chroot(global.chroot) == -1) {
1075 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
1076 if (nb_oldpids)
1077 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02001078 protocol_unbind_all();
Willy Tarreauf223cc02007-10-15 18:57:08 +02001079 exit(1);
1080 }
1081 chdir("/");
1082 }
1083
Willy Tarreaubaaee002006-06-26 02:48:02 +02001084 if (nb_oldpids)
1085 tell_old_pids(oldpids_sig);
1086
1087 /* Note that any error at this stage will be fatal because we will not
1088 * be able to restart the old pids.
1089 */
1090
1091 /* setgid / setuid */
1092 if (global.gid && setgid(global.gid) == -1) {
1093 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001094 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001095 exit(1);
1096 }
1097
1098 if (global.uid && setuid(global.uid) == -1) {
1099 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001100 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001101 exit(1);
1102 }
1103
1104 /* check ulimits */
1105 limit.rlim_cur = limit.rlim_max = 0;
1106 getrlimit(RLIMIT_NOFILE, &limit);
1107 if (limit.rlim_cur < global.maxsock) {
1108 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",
Willy Tarreau1772ece2009-04-03 14:49:12 +02001109 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001110 }
1111
1112 if (global.mode & MODE_DAEMON) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001113 struct proxy *px;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001114 int ret = 0;
1115 int proc;
1116
1117 /* the father launches the required number of processes */
1118 for (proc = 0; proc < global.nbproc; proc++) {
1119 ret = fork();
1120 if (ret < 0) {
1121 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001122 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02001123 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001124 }
1125 else if (ret == 0) /* child breaks here */
1126 break;
1127 if (pidfile != NULL) {
1128 fprintf(pidfile, "%d\n", ret);
1129 fflush(pidfile);
1130 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01001131 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001132 }
1133 /* close the pidfile both in children and father */
1134 if (pidfile != NULL)
1135 fclose(pidfile);
1136 free(global.pidfile);
Krzysztof Oledzki56f1e8b2007-10-11 18:30:14 +02001137 global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001138
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001139 /* we might have to unbind some proxies from some processes */
1140 px = proxy;
1141 while (px != NULL) {
1142 if (px->bind_proc && px->state != PR_STSTOPPED) {
1143 if (!(px->bind_proc & (1 << proc)))
1144 stop_proxy(px);
1145 }
1146 px = px->next;
1147 }
1148
Willy Tarreaubaaee002006-06-26 02:48:02 +02001149 if (proc == global.nbproc)
1150 exit(0); /* parent must leave */
1151
1152 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
1153 * that we can detach from the TTY. We MUST NOT do it in other cases since
1154 * it would have already be done, and 0-2 would have been affected to listening
1155 * sockets
1156 */
Willy Tarreau106cb762008-11-16 07:40:34 +01001157 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001158 /* detach from the tty */
1159 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01001160 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001161 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
1162 }
1163 pid = getpid(); /* update child's pid */
1164 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02001165 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001166 }
1167
Willy Tarreaudd815982007-10-16 12:25:14 +02001168 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02001169 /*
1170 * That's it : the central polling loop. Run until we stop.
1171 */
1172 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001173
1174 /* Free all Hash Keys and all Hash elements */
1175 appsession_cleanup();
1176 /* Do some cleanup */
1177 deinit();
1178
1179 exit(0);
1180}
1181
1182
1183/*
1184 * Local variables:
1185 * c-indent-level: 8
1186 * c-basic-offset: 8
1187 * End:
1188 */