blob: f1047405b352911a37cec76b03c1821c9f1e2374 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01003 * Copyright 2000-2011 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 *
Willy Tarreaubaaee002006-06-26 02:48:02 +020026 */
27
28#include <stdio.h>
29#include <stdlib.h>
30#include <unistd.h>
31#include <string.h>
32#include <ctype.h>
33#include <sys/time.h>
34#include <sys/types.h>
35#include <sys/socket.h>
36#include <netinet/tcp.h>
37#include <netinet/in.h>
38#include <arpa/inet.h>
39#include <netdb.h>
40#include <fcntl.h>
41#include <errno.h>
42#include <signal.h>
43#include <stdarg.h>
44#include <sys/resource.h>
45#include <time.h>
46#include <syslog.h>
47
48#ifdef DEBUG_FULL
49#include <assert.h>
50#endif
51
Willy Tarreau2dd0d472006-06-29 17:53:05 +020052#include <common/appsession.h>
53#include <common/base64.h>
54#include <common/cfgparse.h>
55#include <common/compat.h>
56#include <common/config.h>
57#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010058#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020059#include <common/memory.h>
60#include <common/mini-clist.h>
61#include <common/regex.h>
62#include <common/standard.h>
63#include <common/time.h>
64#include <common/uri_auth.h>
65#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066
67#include <types/capture.h>
68#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090069#include <types/proto_tcp.h>
70#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020071#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020072
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010073#include <proto/auth.h>
Willy Tarreau0fc45a72007-06-17 00:36:03 +020074#include <proto/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020075#include <proto/backend.h>
76#include <proto/buffers.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020077#include <proto/checks.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020078#include <proto/fd.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020079#include <proto/hdr_idx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020080#include <proto/log.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020081#include <proto/protocols.h>
Willy Tarreau80587432006-12-24 17:47:20 +010082#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020083#include <proto/proxy.h>
84#include <proto/queue.h>
85#include <proto/server.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020086#include <proto/session.h>
Willy Tarreau29857942009-05-10 09:01:21 +020087#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020088#include <proto/task.h>
89
Willy Tarreaub38651a2007-03-24 17:24:39 +010090#ifdef CONFIG_HAP_CTTPROXY
91#include <proto/cttproxy.h>
92#endif
93
Willy Tarreaubaaee002006-06-26 02:48:02 +020094/*********************************************************************/
95
96/*********************************************************************/
97
Willy Tarreau477ecd82010-01-03 21:12:30 +010098/* list of config files */
99static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200100int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100101int relative_pid = 1; /* process id starting at 1 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200102
103/* global options */
104struct global global = {
William Lallemand5f232402012-04-05 18:02:55 +0200105 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200106 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
Willy Tarreau03f6d672007-10-18 15:15:57 +0200107 .stats_sock = {
Willy Tarreau03f6d672007-10-18 15:15:57 +0200108 .perm = {
109 .ux = {
110 .uid = -1,
111 .gid = -1,
112 .mode = 0,
113 }
114 }
Willy Tarreau27a674e2009-08-17 07:23:33 +0200115 },
Emeric Bruned760922010-10-22 17:59:25 +0200116 .unix_bind = {
117 .ux = {
118 .uid = -1,
119 .gid = -1,
120 .mode = 0,
121 }
122 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200123 .tune = {
124 .bufsize = BUFSIZE,
125 .maxrewrite = MAXREWRITE,
Willy Tarreau43961d52010-10-04 20:39:20 +0200126 .chksize = BUFSIZE,
Willy Tarreau27a674e2009-08-17 07:23:33 +0200127 },
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128 /* others NULL OK */
129};
130
131/*********************************************************************/
132
133int stopping; /* non zero means stopping in progress */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200134int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135
136/* Here we store informations about the pids of the processes we may pause
137 * or kill. We will send them a signal every 10 ms until we can bind to all
138 * our ports. With 200 retries, that's about 2 seconds.
139 */
140#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141static int *oldpids = NULL;
142static int oldpids_sig; /* use USR1 or TERM */
143
144/* this is used to drain data, and as a temporary buffer for sprintf()... */
David du Colombier7af46052012-05-16 14:16:48 +0200145char *trash = NULL;
146int trashlen = BUFSIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147
Willy Tarreau8096de92010-02-26 11:12:27 +0100148/* this buffer is always the same size as standard buffers and is used for
149 * swapping data inside a buffer.
150 */
151char *swap_buffer = NULL;
152
Willy Tarreaubb545b42010-08-25 12:58:59 +0200153int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200154const int zero = 0;
155const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200156const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100158char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200159char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160
Willy Tarreau08ceb102011-07-24 22:58:00 +0200161/* list of the temporarily limited listeners because of lack of resource */
162struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200163struct task *global_listener_queue_task;
164static struct task *manage_global_listener_queue(struct task *t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200165
166/*********************************************************************/
167/* general purpose functions ***************************************/
168/*********************************************************************/
169
170void display_version()
171{
172 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau9eeb57b2012-03-26 06:15:29 +0200173 printf("Copyright 2000-2012 Willy Tarreau <w@1wt.eu>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174}
175
Willy Tarreau7b066db2007-12-02 11:28:59 +0100176void display_build_opts()
177{
178 printf("Build options :"
179#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100180 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100181#endif
182#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100183 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100184#endif
185#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100186 "\n CC = " BUILD_CC
187#endif
188#ifdef BUILD_CFLAGS
189 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100190#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100191#ifdef BUILD_OPTIONS
192 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100193#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200194 "\n\nDefault settings :"
195 "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d"
196 "\n\n",
197 DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200198
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100199 printf("Encrypted password support via crypt(3): "
200#ifdef CONFIG_HAP_CRYPT
201 "yes"
202#else
203 "no"
204#endif
205 "\n");
206
207 putchar('\n');
208
Willy Tarreaube5b6852009-10-03 18:57:08 +0200209 list_pollers(stdout);
210 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100211}
212
Willy Tarreaubaaee002006-06-26 02:48:02 +0200213/*
214 * This function prints the command line usage and exits
215 */
216void usage(char *name)
217{
218 display_version();
219 fprintf(stderr,
Willy Tarreau5d01a632009-06-22 16:02:30 +0200220 "Usage : %s [-f <cfgfile>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200221 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200222 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100223 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200224 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200225 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200226 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200227 " -D goes daemon ; -C changes to <dir> before loading files.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200228 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200229 " -c check mode : only check config files and exit\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200230 " -n sets the maximum total # of connections (%d)\n"
231 " -m limits the usable amount of memory (in MB)\n"
232 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200233 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200234 " -p writes pids of all children to this file\n"
235#if defined(ENABLE_EPOLL)
236 " -de disables epoll() usage even when available\n"
237#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200238#if defined(ENABLE_SEPOLL)
239 " -ds disables speculative epoll() usage even when available\n"
240#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200241#if defined(ENABLE_KQUEUE)
242 " -dk disables kqueue() usage even when available\n"
243#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200244#if defined(ENABLE_POLL)
245 " -dp disables poll() usage even when available\n"
246#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200247#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100248 " -dS disables splice usage (broken on old kernels)\n"
249#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200250 " -sf/-st [pid ]* finishes/terminates old pids. Must be last arguments.\n"
251 "\n",
252 name, DEFAULT_MAXCONN, cfg_maxpconn);
253 exit(1);
254}
255
256
257
258/*********************************************************************/
259/* more specific functions ***************************************/
260/*********************************************************************/
261
262/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200263 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
264 * a signal zero to all subscribers. This means that it's as easy as
265 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200266 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200267void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200268{
269 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200270 signal_unregister_handler(sh);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200271 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200272}
273
274/*
275 * upon SIGTTOU, we pause everything
276 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200277void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200278{
279 pause_proxies();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200280 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200281}
282
283/*
284 * upon SIGTTIN, let's have a soft stop.
285 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200286void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200287{
Willy Tarreaube58c382011-07-24 18:28:10 +0200288 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200289}
290
291/*
292 * this function dumps every server's state when the process receives SIGHUP.
293 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200294void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200295{
296 struct proxy *p = proxy;
297
298 Warning("SIGHUP received, dumping servers states.\n");
299 while (p) {
300 struct server *s = p->srv;
301
302 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
303 while (s) {
David du Colombier7af46052012-05-16 14:16:48 +0200304 snprintf(trash, trashlen,
Willy Tarreau3b88d442009-04-11 20:44:08 +0200305 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
Willy Tarreaubaaee002006-06-26 02:48:02 +0200306 p->id, s->id,
307 (s->state & SRV_RUNNING) ? "UP" : "DOWN",
Krzysztof Piotr Oledzki052d4fd2009-10-04 14:52:57 +0200308 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200309 Warning("%s\n", trash);
310 send_log(p, LOG_NOTICE, "%s\n", trash);
311 s = s->next;
312 }
313
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200314 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
315 if (!p->srv) {
David du Colombier7af46052012-05-16 14:16:48 +0200316 snprintf(trash, trashlen,
Willy Tarreau3b88d442009-04-11 20:44:08 +0200317 "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 +0200318 p->id,
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100319 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200320 } else if (p->srv_act == 0) {
David du Colombier7af46052012-05-16 14:16:48 +0200321 snprintf(trash, trashlen,
Willy Tarreau3b88d442009-04-11 20:44:08 +0200322 "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 +0200323 p->id,
324 (p->srv_bck) ? "is running on backup servers" : "has no server available",
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100325 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326 } else {
David du Colombier7af46052012-05-16 14:16:48 +0200327 snprintf(trash, trashlen,
Willy Tarreaubaaee002006-06-26 02:48:02 +0200328 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
Willy Tarreau3b88d442009-04-11 20:44:08 +0200329 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
Willy Tarreaubaaee002006-06-26 02:48:02 +0200330 p->id, p->srv_act, p->srv_bck,
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100331 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200332 }
333 Warning("%s\n", trash);
334 send_log(p, LOG_NOTICE, "%s\n", trash);
335
336 p = p->next;
337 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200338}
339
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200340void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200341{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200342 /* dump memory usage then free everything possible */
343 dump_pools();
344 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200345}
346
Willy Tarreaubaaee002006-06-26 02:48:02 +0200347/*
348 * This function initializes all the necessary variables. It only returns
349 * if everything is OK. If something fails, it exits.
350 */
351void init(int argc, char **argv)
352{
Willy Tarreaubaaee002006-06-26 02:48:02 +0200353 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200354 char *tmp;
355 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +0200356 int err_code = 0;
Willy Tarreau477ecd82010-01-03 21:12:30 +0100357 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +0000358 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +0200359 char *change_dir = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360
David du Colombier7af46052012-05-16 14:16:48 +0200361 trash = malloc(trashlen);
362
Emeric Brun2b920a12010-09-23 18:30:22 +0200363 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
364 * the string in case of truncation, and at least FreeBSD appears not to do
365 * it.
366 */
367 memset(hostname, 0, sizeof(hostname));
368 gethostname(hostname, sizeof(hostname) - 1);
369 memset(localpeer, 0, sizeof(localpeer));
370 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
371
Willy Tarreaubaaee002006-06-26 02:48:02 +0200372 /*
373 * Initialize the previously static variables.
374 */
375
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100376 totalconn = actconn = maxfd = listeners = stopping = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200377
378
379#ifdef HAPROXY_MEMMAX
380 global.rlimit_memmax = HAPROXY_MEMMAX;
381#endif
382
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200383 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200384 start_date = now;
385
Willy Tarreau29857942009-05-10 09:01:21 +0200386 signal_init();
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200387 init_task();
388 init_session();
Willy Tarreau8280d642009-09-23 23:37:52 +0200389 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200390 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +0100391 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200392
Willy Tarreau43b78992009-01-25 15:42:27 +0100393 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200394#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100395 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396#endif
397#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100398 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200400#if defined(ENABLE_SEPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100401 global.tune.options |= GTUNE_USE_SEPOLL;
Willy Tarreaude99e992007-04-16 00:53:59 +0200402#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200403#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +0100404 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200405#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200406#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100407 global.tune.options |= GTUNE_USE_SPLICE;
408#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409
410 pid = getpid();
411 progname = *argv;
412 while ((tmp = strchr(progname, '/')) != NULL)
413 progname = tmp + 1;
414
Kevinm48936af2010-12-22 16:08:21 +0000415 /* the process name is used for the logs only */
416 global.log_tag = strdup(progname);
417
Willy Tarreaubaaee002006-06-26 02:48:02 +0200418 argc--; argv++;
419 while (argc > 0) {
420 char *flag;
421
422 if (**argv == '-') {
423 flag = *argv+1;
424
425 /* 1 arg */
426 if (*flag == 'v') {
427 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +0100428 if (flag[1] == 'v') /* -vv */
429 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200430 exit(0);
431 }
432#if defined(ENABLE_EPOLL)
433 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +0100434 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200435#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200436#if defined(ENABLE_SEPOLL)
437 else if (*flag == 'd' && flag[1] == 's')
Willy Tarreau43b78992009-01-25 15:42:27 +0100438 global.tune.options &= ~GTUNE_USE_SEPOLL;
Willy Tarreaude99e992007-04-16 00:53:59 +0200439#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200440#if defined(ENABLE_POLL)
441 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +0100442 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200443#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +0200444#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200445 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +0100446 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200447#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200448#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100449 else if (*flag == 'd' && flag[1] == 'S')
450 global.tune.options &= ~GTUNE_USE_SPLICE;
451#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200452 else if (*flag == 'V')
453 arg_mode |= MODE_VERBOSE;
454 else if (*flag == 'd' && flag[1] == 'b')
455 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +0200456 else if (*flag == 'd' && flag[1] == 'M')
457 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreaubaaee002006-06-26 02:48:02 +0200458 else if (*flag == 'd')
459 arg_mode |= MODE_DEBUG;
460 else if (*flag == 'c')
461 arg_mode |= MODE_CHECK;
462 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +0200463 arg_mode |= MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200464 else if (*flag == 'q')
465 arg_mode |= MODE_QUIET;
466 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
467 /* list of pids to finish ('f') or terminate ('t') */
468
469 if (flag[1] == 'f')
470 oldpids_sig = SIGUSR1; /* finish then exit */
471 else
472 oldpids_sig = SIGTERM; /* terminate immediately */
473 argv++; argc--;
474
475 if (argc > 0) {
476 oldpids = calloc(argc, sizeof(int));
477 while (argc > 0) {
478 oldpids[nb_oldpids] = atol(*argv);
479 if (oldpids[nb_oldpids] <= 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200480 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200481 argc--; argv++;
482 nb_oldpids++;
483 }
484 }
485 }
486 else { /* >=2 args */
487 argv++; argc--;
488 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200489 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200490
491 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +0200492 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200493 case 'n' : cfg_maxconn = atol(*argv); break;
494 case 'm' : global.rlimit_memmax = atol(*argv); break;
495 case 'N' : cfg_maxpconn = atol(*argv); break;
Emeric Brun2b920a12010-09-23 18:30:22 +0200496 case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break;
Willy Tarreau5d01a632009-06-22 16:02:30 +0200497 case 'f' :
Willy Tarreau477ecd82010-01-03 21:12:30 +0100498 wl = (struct wordlist *)calloc(1, sizeof(*wl));
499 if (!wl) {
500 Alert("Cannot load configuration file %s : out of memory.\n", *argv);
Willy Tarreau5d01a632009-06-22 16:02:30 +0200501 exit(1);
502 }
Willy Tarreau477ecd82010-01-03 21:12:30 +0100503 wl->s = *argv;
504 LIST_ADDQ(&cfg_cfgfiles, &wl->list);
Willy Tarreau5d01a632009-06-22 16:02:30 +0200505 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200506 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200507 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200508 }
509 }
510 }
511 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200512 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200513 argv++; argc--;
514 }
515
516 global.mode = MODE_STARTING | /* during startup, we want most of the alerts */
517 (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_VERBOSE
518 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
519
Willy Tarreau477ecd82010-01-03 21:12:30 +0100520 if (LIST_ISEMPTY(&cfg_cfgfiles))
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200521 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200522
Willy Tarreau576132e2011-09-10 19:26:56 +0200523 if (change_dir && chdir(change_dir) < 0) {
524 Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
525 exit(1);
526 }
527
Willy Tarreaubaaee002006-06-26 02:48:02 +0200528 have_appsession = 0;
529 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200530
531 init_default_instance();
532
Willy Tarreau477ecd82010-01-03 21:12:30 +0100533 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +0100534 int ret;
535
Willy Tarreau477ecd82010-01-03 21:12:30 +0100536 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +0100537 if (ret == -1) {
538 Alert("Could not open configuration file %s : %s\n",
Willy Tarreau477ecd82010-01-03 21:12:30 +0100539 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +0100540 exit(1);
541 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +0100542 if (ret & (ERR_ABORT|ERR_FATAL))
Willy Tarreau477ecd82010-01-03 21:12:30 +0100543 Alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +0100544 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +0200545 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +0200546 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200547 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200548
Willy Tarreaubb925012009-07-23 13:36:36 +0200549 err_code |= check_config_validity();
550 if (err_code & (ERR_ABORT|ERR_FATAL)) {
551 Alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200552 exit(1);
553 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200554
555 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +0100556 struct peers *pr;
557 struct proxy *px;
558
559 for (pr = peers; pr; pr = pr->next)
560 if (pr->peers_fe)
561 break;
562
563 for (px = proxy; px; px = px->next)
564 if (px->state == PR_STNEW && px->listen)
565 break;
566
567 if (pr || px) {
568 /* At least one peer or one listener has been found */
569 qfprintf(stdout, "Configuration file is valid\n");
570 exit(0);
571 }
572 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
573 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200574 }
575
Willy Tarreaue9b26022011-08-01 20:57:55 +0200576 global_listener_queue_task = task_new();
577 if (!global_listener_queue_task) {
578 Alert("Out of memory when initializing global task\n");
579 exit(1);
580 }
581 /* very simple initialization, users will queue the task if needed */
582 global_listener_queue_task->context = NULL; /* not even a context! */
583 global_listener_queue_task->process = manage_global_listener_queue;
584 global_listener_queue_task->expire = TICK_ETERNITY;
585
Willy Tarreau8280d642009-09-23 23:37:52 +0200586 /* now we know the buffer size, we can initialize the buffers */
587 init_buffer();
588
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200589 if (have_appsession)
590 appsession_init();
591
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200592 if (start_checks() < 0)
593 exit(1);
594
Willy Tarreaubaaee002006-06-26 02:48:02 +0200595 if (cfg_maxconn > 0)
596 global.maxconn = cfg_maxconn;
597
598 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200599 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200600 global.pidfile = strdup(cfg_pidfile);
601 }
602
603 if (global.maxconn == 0)
604 global.maxconn = DEFAULT_MAXCONN;
605
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100606 if (!global.maxpipes) {
607 /* maxpipes not specified. Count how many frontends and backends
608 * may be using splicing, and bound that to maxconn.
609 */
610 struct proxy *cur;
611 int nbfe = 0, nbbe = 0;
612
613 for (cur = proxy; cur; cur = cur->next) {
614 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
615 if (cur->cap & PR_CAP_FE)
616 nbfe += cur->maxconn;
617 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +0100618 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100619 }
620 }
621 global.maxpipes = MAX(nbfe, nbbe);
622 if (global.maxpipes > global.maxconn)
623 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +0100624 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100625 }
626
627
Willy Tarreauabacc2c2011-09-07 14:26:33 +0200628 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +0100630 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631
Willy Tarreau3c63fd82011-09-07 18:00:47 +0200632 if (global.stats_fe)
633 global.maxsock += global.stats_fe->maxconn;
634
635 if (peers) {
636 /* peers also need to bypass global maxconn */
637 struct peers *p = peers;
638
639 for (p = peers; p; p = p->next)
640 if (p->peers_fe)
641 global.maxsock += p->peers_fe->maxconn;
642 }
643
Willy Tarreau1db37712007-06-03 17:16:49 +0200644 if (global.tune.maxpollevents <= 0)
645 global.tune.maxpollevents = MAX_POLL_EVENTS;
646
Willy Tarreauf49d1df2009-03-01 08:35:41 +0100647 if (global.tune.maxaccept == 0) {
Willy Tarreau4827fd22011-07-22 21:59:59 +0200648 /* Note: we should not try to accept too many connections at once,
649 * because past one point we're significantly reducing the cache
650 * efficiency and the highest session rate significantly drops.
651 * Values between 15 and 35 seem fine on a Core i5 with 4M L3 cache.
652 */
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100653 if (global.nbproc > 1)
654 global.tune.maxaccept = 8; /* leave some conns to other processes */
655 else
Willy Tarreau4827fd22011-07-22 21:59:59 +0200656 global.tune.maxaccept = 32; /* accept more incoming conns at once */
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100657 }
658
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100659 if (global.tune.recv_enough == 0)
660 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
661
Willy Tarreau27a674e2009-08-17 07:23:33 +0200662 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
663 global.tune.maxrewrite = global.tune.bufsize / 2;
664
Willy Tarreaubaaee002006-06-26 02:48:02 +0200665 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
666 /* command line debug mode inhibits configuration mode */
667 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
668 }
669 global.mode |= (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_QUIET |
Willy Tarreaufbee7132007-10-18 13:53:22 +0200670 MODE_VERBOSE | MODE_DEBUG ));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671
672 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
673 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
674 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
675 }
676
677 if ((global.nbproc > 1) && !(global.mode & MODE_DAEMON)) {
678 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
679 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
680 global.nbproc = 1;
681 }
682
683 if (global.nbproc < 1)
684 global.nbproc = 1;
685
Willy Tarreau8096de92010-02-26 11:12:27 +0100686 swap_buffer = (char *)calloc(1, global.tune.bufsize);
687
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200688 fdinfo = (struct fdinfo *)calloc(1,
689 sizeof(struct fdinfo) * (global.maxsock));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200690 fdtab = (struct fdtab *)calloc(1,
691 sizeof(struct fdtab) * (global.maxsock));
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200692 /*
693 * Note: we could register external pollers here.
694 * Built-in pollers have been registered before main().
695 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200696
Willy Tarreau43b78992009-01-25 15:42:27 +0100697 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200698 disable_poller("kqueue");
699
Willy Tarreau43b78992009-01-25 15:42:27 +0100700 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200701 disable_poller("epoll");
702
Willy Tarreau43b78992009-01-25 15:42:27 +0100703 if (!(global.tune.options & GTUNE_USE_SEPOLL))
Willy Tarreaude99e992007-04-16 00:53:59 +0200704 disable_poller("sepoll");
705
Willy Tarreau43b78992009-01-25 15:42:27 +0100706 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200707 disable_poller("poll");
708
Willy Tarreau43b78992009-01-25 15:42:27 +0100709 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200710 disable_poller("select");
711
712 /* Note: we could disable any poller by name here */
713
Willy Tarreau2ff76222007-04-09 19:29:56 +0200714 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
715 list_pollers(stderr);
716
Willy Tarreau4f60f162007-04-08 16:39:58 +0200717 if (!init_pollers()) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200718 Alert("No polling mechanism available.\n");
Willy Tarreau4f60f162007-04-08 16:39:58 +0200719 exit(1);
720 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200721 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
722 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200723 }
724
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200725 if (!global.node)
726 global.node = strdup(hostname);
727
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728}
729
Simon Horman6fb82592011-07-15 13:14:11 +0900730static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +0900731{
Simon Hormanac821422011-07-15 13:14:09 +0900732 struct acl_term_suite *suite, *suiteb;
733 struct acl_term *term, *termb;
734
Simon Horman6fb82592011-07-15 13:14:11 +0900735 if (!cond)
736 return;
737
738 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
739 list_for_each_entry_safe(term, termb, &suite->terms, list) {
740 LIST_DEL(&term->list);
741 free(term);
Simon Hormanac821422011-07-15 13:14:09 +0900742 }
Simon Horman6fb82592011-07-15 13:14:11 +0900743 LIST_DEL(&suite->list);
744 free(suite);
745 }
746
747 free(cond);
748}
749
750static void deinit_tcp_rules(struct list *rules)
751{
752 struct tcp_rule *trule, *truleb;
753
754 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +0900755 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +0900756 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +0900757 free(trule);
758 }
759}
760
Willy Tarreau12785782012-04-27 21:37:17 +0200761static void deinit_sample_arg(struct arg *p)
Simon Horman6fb82592011-07-15 13:14:11 +0900762{
Willy Tarreauf9954102012-04-20 14:03:29 +0200763 struct arg *p_back = p;
764
Simon Horman6fb82592011-07-15 13:14:11 +0900765 if (!p)
766 return;
767
Willy Tarreauf9954102012-04-20 14:03:29 +0200768 while (p->type != ARGT_STOP) {
Willy Tarreau496aa012012-06-01 10:38:29 +0200769 if (p->type == ARGT_STR || p->unresolved) {
Willy Tarreauf9954102012-04-20 14:03:29 +0200770 free(p->data.str.str);
771 p->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +0200772 p->unresolved = 0;
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200773 }
Willy Tarreauf9954102012-04-20 14:03:29 +0200774 p++;
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200775 }
Simon Horman6fb82592011-07-15 13:14:11 +0900776
Willy Tarreauf9954102012-04-20 14:03:29 +0200777 free(p_back);
Simon Horman6fb82592011-07-15 13:14:11 +0900778}
779
780static void deinit_stick_rules(struct list *rules)
781{
782 struct sticking_rule *rule, *ruleb;
783
784 list_for_each_entry_safe(rule, ruleb, rules, list) {
785 LIST_DEL(&rule->list);
786 deinit_acl_cond(rule->cond);
787 if (rule->expr) {
Willy Tarreau12785782012-04-27 21:37:17 +0200788 struct sample_conv_expr *conv_expr, *conv_exprb;
Simon Horman6fb82592011-07-15 13:14:11 +0900789 list_for_each_entry_safe(conv_expr, conv_exprb, &rule->expr->conv_exprs, list)
Willy Tarreau12785782012-04-27 21:37:17 +0200790 deinit_sample_arg(conv_expr->arg_p);
791 deinit_sample_arg(rule->expr->arg_p);
Simon Horman6fb82592011-07-15 13:14:11 +0900792 free(rule->expr);
793 }
794 free(rule);
795 }
796}
797
Willy Tarreaubaaee002006-06-26 02:48:02 +0200798void deinit(void)
799{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200800 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200801 struct cap_hdr *h,*h_next;
802 struct server *s,*s_next;
803 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200804 struct acl_cond *cond, *condb;
805 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200806 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200807 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200808 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200809 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +0100810 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +0100811 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200812 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +0200813 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +0100814 struct logformat_node *lf, *lfb;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200815 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200816
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200817 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200818 while (p) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200819 free(p->id);
820 free(p->check_req);
821 free(p->cookie_name);
822 free(p->cookie_domain);
823 free(p->url_param_name);
824 free(p->capture_name);
825 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +0900826 free(p->rdp_cookie_name);
Willy Tarreau39b06652012-06-01 10:58:06 +0200827 if (p->logformat_string != default_http_log_format &&
828 p->logformat_string != default_tcp_log_format &&
829 p->logformat_string != clf_http_log_format)
Willy Tarreau196729e2012-05-31 19:30:26 +0200830 free(p->logformat_string);
831
832 free(p->uniqueid_format_string);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200833
Willy Tarreaua534fea2008-08-03 12:19:50 +0200834 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200835 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200836
Willy Tarreauf4f04122010-01-28 18:10:50 +0100837 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
838 LIST_DEL(&cwl->list);
839 free(cwl->s);
840 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +0100841 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200842
Willy Tarreauf4f04122010-01-28 18:10:50 +0100843 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
844 LIST_DEL(&cwl->list);
845 free(cwl->s);
846 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +0100847 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200848
849 list_for_each_entry_safe(cond, condb, &p->block_cond, list) {
850 LIST_DEL(&cond->list);
851 prune_acl_cond(cond);
852 free(cond);
853 }
854
Willy Tarreaub80c2302007-11-30 20:51:32 +0100855 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
856 LIST_DEL(&cond->list);
857 prune_acl_cond(cond);
858 free(cond);
859 }
860
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200861 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200862 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200863 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200864 free((regex_t *)exp->preg);
865 }
866
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200867 if (exp->replace && exp->action != ACT_SETBE)
868 free((char *)exp->replace);
869 expb = exp;
870 exp = exp->next;
871 free(expb);
872 }
873
874 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200875 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200876 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200877 free((regex_t *)exp->preg);
878 }
879
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200880 if (exp->replace && exp->action != ACT_SETBE)
881 free((char *)exp->replace);
882 expb = exp;
883 exp = exp->next;
884 free(expb);
885 }
886
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200887 /* build a list of unique uri_auths */
888 if (!ua)
889 ua = p->uri_auth;
890 else {
891 /* check if p->uri_auth is unique */
892 for (uap = ua; uap; uap=uap->next)
893 if (uap == p->uri_auth)
894 break;
895
Willy Tarreauaccc4e12008-06-24 11:14:45 +0200896 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200897 /* add it, if it is */
898 p->uri_auth->next = ua;
899 ua = p->uri_auth;
900 }
901 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200902
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200903 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
904 LIST_DEL(&acl->list);
905 prune_acl(acl);
906 free(acl);
907 }
908
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200909 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
910 LIST_DEL(&srule->list);
911 prune_acl_cond(srule->cond);
912 free(srule->cond);
913 free(srule);
914 }
915
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200916 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
917 LIST_DEL(&rule->list);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200918 prune_acl_cond(rule->cond);
919 free(rule->cond);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200920 free(rule);
921 }
922
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200923 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
924 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +0100925 if (rdr->cond) {
926 prune_acl_cond(rdr->cond);
927 free(rdr->cond);
928 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200929 free(rdr->rdr_str);
930 free(rdr);
931 }
932
William Lallemand0f99e342011-10-12 17:50:54 +0200933 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
934 LIST_DEL(&log->list);
935 free(log);
936 }
937
William Lallemand723b73a2012-02-08 16:37:49 +0100938 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
939 LIST_DEL(&lf->list);
940 free(lf);
941 }
942
Simon Hormanac821422011-07-15 13:14:09 +0900943 deinit_tcp_rules(&p->tcp_req.inspect_rules);
944 deinit_tcp_rules(&p->tcp_req.l4_rules);
945
Simon Horman6fb82592011-07-15 13:14:11 +0900946 deinit_stick_rules(&p->storersp_rules);
947 deinit_stick_rules(&p->sticking_rules);
948
Willy Tarreaua534fea2008-08-03 12:19:50 +0200949 free(p->appsession_name);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200950
951 h = p->req_cap;
952 while (h) {
953 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200954 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200955 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200956 free(h);
957 h = h_next;
958 }/* end while(h) */
959
960 h = p->rsp_cap;
961 while (h) {
962 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200963 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200964 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200965 free(h);
966 h = h_next;
967 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200968
Willy Tarreaubaaee002006-06-26 02:48:02 +0200969 s = p->srv;
970 while (s) {
971 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200972
973 if (s->check) {
974 task_delete(s->check);
975 task_free(s->check);
976 }
977
Willy Tarreau2e993902011-10-31 11:53:20 +0100978 if (s->warmup) {
979 task_delete(s->warmup);
980 task_free(s->warmup);
981 }
982
Willy Tarreaua534fea2008-08-03 12:19:50 +0200983 free(s->id);
984 free(s->cookie);
Nick Chalk57b1bf72010-03-16 15:50:46 +0000985 free(s->check_data);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200986 free(s);
987 s = s_next;
988 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200989
Willy Tarreaubaaee002006-06-26 02:48:02 +0200990 l = p->listen;
991 while (l) {
992 l_next = l->next;
Willy Tarreauf6e2cc72010-09-03 10:38:17 +0200993 unbind_listener(l);
994 delete_listener(l);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +0100995 free(l->name);
996 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200997 free(l);
998 l = l_next;
999 }/* end while(l) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001000
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01001001 free(p->desc);
1002 free(p->fwdfor_hdr_name);
1003
Willy Tarreauff011f22011-01-06 17:51:27 +01001004 free_http_req_rules(&p->http_req_rules);
Willy Tarreau918ff602011-07-25 16:33:49 +02001005 free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01001006
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001007 pool_destroy2(p->req_cap_pool);
1008 pool_destroy2(p->rsp_cap_pool);
Simon Hormanb08584a2011-07-15 13:14:10 +09001009 pool_destroy2(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001010
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001011 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001012 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001013 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001014 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02001015
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001016 while (ua) {
1017 uap = ua;
1018 ua = ua->next;
1019
Willy Tarreaua534fea2008-08-03 12:19:50 +02001020 free(uap->uri_prefix);
1021 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001022 free(uap->node);
1023 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001024
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01001025 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01001026 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01001027
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001028 free(uap);
1029 }
1030
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001031 userlist_free(userlist);
1032
Willy Tarreaudd815982007-10-16 12:25:14 +02001033 protocol_unbind_all();
1034
Joe Williamsdf5b38f2010-12-29 17:05:48 +01001035 free(global.log_send_hostname); global.log_send_hostname = NULL;
Kevinm48936af2010-12-22 16:08:21 +00001036 free(global.log_tag); global.log_tag = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001037 free(global.chroot); global.chroot = NULL;
1038 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001039 free(global.node); global.node = NULL;
1040 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001041 free(fdtab); fdtab = NULL;
1042 free(oldpids); oldpids = NULL;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001043 free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001044
William Lallemand0f99e342011-10-12 17:50:54 +02001045 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
1046 LIST_DEL(&log->list);
1047 free(log);
1048 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01001049 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1050 LIST_DEL(&wl->list);
1051 free(wl);
1052 }
1053
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001054 pool_destroy2(pool2_session);
Willy Tarreau7341d942007-05-13 19:56:02 +02001055 pool_destroy2(pool2_buffer);
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001056 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001057 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +02001058 pool_destroy2(pool2_capture);
Willy Tarreau63963c62007-05-13 21:29:55 +02001059 pool_destroy2(pool2_appsess);
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001060 pool_destroy2(pool2_pendconn);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001061 pool_destroy2(pool2_sig_handlers);
Willy Tarreau34eb6712011-10-24 18:15:04 +02001062 pool_destroy2(pool2_hdr_idx);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001063
1064 if (have_appsession) {
Willy Tarreau63963c62007-05-13 21:29:55 +02001065 pool_destroy2(apools.serverid);
1066 pool_destroy2(apools.sessid);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001067 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001068
1069 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001070} /* end deinit() */
1071
Willy Tarreaubb545b42010-08-25 12:58:59 +02001072/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
1073 * pids the signal was correctly delivered to.
1074 */
1075static int tell_old_pids(int sig)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001076{
1077 int p;
Willy Tarreaubb545b42010-08-25 12:58:59 +02001078 int ret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001079 for (p = 0; p < nb_oldpids; p++)
Willy Tarreaubb545b42010-08-25 12:58:59 +02001080 if (kill(oldpids[p], sig) == 0)
1081 ret++;
1082 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001083}
1084
Willy Tarreau918ff602011-07-25 16:33:49 +02001085/* Runs the polling loop */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001086void run_poll_loop()
1087{
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001088 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +02001089
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001090 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001091 while (1) {
Willy Tarreau29857942009-05-10 09:01:21 +02001092 /* check if we caught some signals and process them */
1093 signal_process_queue();
1094
Willy Tarreau58b458d2008-06-29 22:40:23 +02001095 /* Check if we can expire some tasks */
1096 wake_expired_tasks(&next);
1097
1098 /* Process a few tasks */
Willy Tarreaud825eef2007-05-12 22:35:00 +02001099 process_runnable_tasks(&next);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001100
Willy Tarreauaf7ad002010-08-31 15:39:26 +02001101 /* stop when there's nothing left to do */
1102 if (jobs == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +02001103 break;
1104
Willy Tarreau58b458d2008-06-29 22:40:23 +02001105 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001106 cur_poller.poll(&cur_poller, next);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001107 }
1108}
1109
Willy Tarreaue9b26022011-08-01 20:57:55 +02001110/* This is the global management task for listeners. It enables listeners waiting
1111 * for global resources when there are enough free resource, or at least once in
1112 * a while. It is designed to be called as a task.
1113 */
1114static struct task *manage_global_listener_queue(struct task *t)
1115{
1116 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001117 /* queue is empty, nothing to do */
1118 if (LIST_ISEMPTY(&global_listener_queue))
1119 goto out;
1120
1121 /* If there are still too many concurrent connections, let's wait for
1122 * some of them to go away. We don't need to re-arm the timer because
1123 * each of them will scan the queue anyway.
1124 */
1125 if (unlikely(actconn >= global.maxconn))
1126 goto out;
1127
1128 /* We should periodically try to enable listeners waiting for a global
1129 * resource here, because it is possible, though very unlikely, that
1130 * they have been blocked by a temporary lack of global resource such
1131 * as a file descriptor or memory and that the temporary condition has
1132 * disappeared.
1133 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001134 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001135
1136 out:
1137 t->expire = next;
1138 task_queue(t);
1139 return t;
1140}
Willy Tarreau4f60f162007-04-08 16:39:58 +02001141
Willy Tarreaubaaee002006-06-26 02:48:02 +02001142int main(int argc, char **argv)
1143{
1144 int err, retry;
1145 struct rlimit limit;
1146 FILE *pidfile = NULL;
Emeric Bruncf20bf12010-10-22 16:06:11 +02001147 char errmsg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +02001148
Emeric Bruncf20bf12010-10-22 16:06:11 +02001149 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001150 signal_register_fct(SIGQUIT, dump, SIGQUIT);
1151 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
1152 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001153
Willy Tarreaue437c442010-03-17 18:02:46 +01001154 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
1155 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
1156 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001157 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001158 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001159
Willy Tarreaudc23a922011-02-16 11:10:36 +01001160 /* ulimits */
1161 if (!global.rlimit_nofile)
1162 global.rlimit_nofile = global.maxsock;
1163
1164 if (global.rlimit_nofile) {
1165 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
1166 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
1167 Warning("[%s.main()] Cannot raise FD limit to %d.\n", argv[0], global.rlimit_nofile);
1168 }
1169 }
1170
1171 if (global.rlimit_memmax) {
1172 limit.rlim_cur = limit.rlim_max =
1173 global.rlimit_memmax * 1048576 / global.nbproc;
1174#ifdef RLIMIT_AS
1175 if (setrlimit(RLIMIT_AS, &limit) == -1) {
1176 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1177 argv[0], global.rlimit_memmax);
1178 }
1179#else
1180 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
1181 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1182 argv[0], global.rlimit_memmax);
1183 }
1184#endif
1185 }
1186
Willy Tarreaubaaee002006-06-26 02:48:02 +02001187 /* We will loop at most 100 times with 10 ms delay each time.
1188 * That's at most 1 second. We only send a signal to old pids
1189 * if we cannot grab at least one port.
1190 */
1191 retry = MAX_START_RETRIES;
1192 err = ERR_NONE;
1193 while (retry >= 0) {
1194 struct timeval w;
1195 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01001196 /* exit the loop on no error or fatal error */
1197 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001198 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02001199 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001200 break;
1201
1202 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
1203 * listening sockets. So on those platforms, it would be wiser to
1204 * simply send SIGUSR1, which will not be undoable.
1205 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02001206 if (tell_old_pids(SIGTTOU) == 0) {
1207 /* no need to wait if we can't contact old pids */
1208 retry = 0;
1209 continue;
1210 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001211 /* give some time to old processes to stop listening */
1212 w.tv_sec = 0;
1213 w.tv_usec = 10*1000;
1214 select(0, NULL, NULL, NULL, &w);
1215 retry--;
1216 }
1217
1218 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01001219 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02001220 if (retry != MAX_START_RETRIES && nb_oldpids) {
1221 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001222 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02001223 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001224 exit(1);
1225 }
1226
1227 if (listeners == 0) {
1228 Alert("[%s.main()] No enabled listener found (check the <listen> keywords) ! Exiting.\n", argv[0]);
1229 /* Note: we don't have to send anything to the old pids because we
1230 * never stopped them. */
1231 exit(1);
1232 }
1233
Emeric Bruncf20bf12010-10-22 16:06:11 +02001234 err = protocol_bind_all(errmsg, sizeof(errmsg));
1235 if ((err & ~ERR_WARN) != ERR_NONE) {
1236 if ((err & ERR_ALERT) || (err & ERR_WARN))
1237 Alert("[%s.main()] %s.\n", argv[0], errmsg);
1238
Willy Tarreaudd815982007-10-16 12:25:14 +02001239 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
1240 protocol_unbind_all(); /* cleanup everything we can */
1241 if (nb_oldpids)
1242 tell_old_pids(SIGTTIN);
1243 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02001244 } else if (err & ERR_WARN) {
1245 Alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02001246 }
1247
Willy Tarreaubaaee002006-06-26 02:48:02 +02001248 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001249 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
1250 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001251
Willy Tarreaubaaee002006-06-26 02:48:02 +02001252 /* MODE_QUIET can inhibit alerts and warnings below this line */
1253
1254 global.mode &= ~MODE_STARTING;
1255 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
1256 /* detach from the tty */
1257 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001258 }
1259
1260 /* open log & pid files before the chroot */
1261 if (global.mode & MODE_DAEMON && global.pidfile != NULL) {
1262 int pidfd;
1263 unlink(global.pidfile);
1264 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
1265 if (pidfd < 0) {
1266 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
1267 if (nb_oldpids)
1268 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02001269 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001270 exit(1);
1271 }
1272 pidfile = fdopen(pidfd, "w");
1273 }
1274
Willy Tarreaub38651a2007-03-24 17:24:39 +01001275#ifdef CONFIG_HAP_CTTPROXY
1276 if (global.last_checks & LSTCHK_CTTPROXY) {
1277 int ret;
1278
1279 ret = check_cttproxy_version();
1280 if (ret < 0) {
1281 Alert("[%s.main()] Cannot enable cttproxy.\n%s",
1282 argv[0],
1283 (ret == -1) ? " Incorrect module version.\n"
1284 : " Make sure you have enough permissions and that the module is loaded.\n");
Willy Tarreaudd815982007-10-16 12:25:14 +02001285 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001286 exit(1);
1287 }
1288 }
1289#endif
1290
1291 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
1292 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01001293 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001294 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001295 exit(1);
1296 }
1297
Willy Tarreau4e30ed72009-02-04 18:02:48 +01001298 /* If the user is not root, we'll still let him try the configuration
1299 * but we inform him that unexpected behaviour may occur.
1300 */
1301 if ((global.last_checks & LSTCHK_NETADM) && getuid())
1302 Warning("[%s.main()] Some options which require full privileges"
1303 " might not work well.\n"
1304 "", argv[0]);
1305
Willy Tarreauf223cc02007-10-15 18:57:08 +02001306 /* chroot if needed */
1307 if (global.chroot != NULL) {
Willy Tarreau21337822012-04-29 14:11:38 +02001308 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Willy Tarreauf223cc02007-10-15 18:57:08 +02001309 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
1310 if (nb_oldpids)
1311 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02001312 protocol_unbind_all();
Willy Tarreauf223cc02007-10-15 18:57:08 +02001313 exit(1);
1314 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02001315 }
1316
Willy Tarreaubaaee002006-06-26 02:48:02 +02001317 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02001318 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001319
1320 /* Note that any error at this stage will be fatal because we will not
1321 * be able to restart the old pids.
1322 */
1323
1324 /* setgid / setuid */
1325 if (global.gid && setgid(global.gid) == -1) {
1326 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001327 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001328 exit(1);
1329 }
1330
1331 if (global.uid && setuid(global.uid) == -1) {
1332 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001333 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001334 exit(1);
1335 }
1336
1337 /* check ulimits */
1338 limit.rlim_cur = limit.rlim_max = 0;
1339 getrlimit(RLIMIT_NOFILE, &limit);
1340 if (limit.rlim_cur < global.maxsock) {
1341 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 +02001342 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001343 }
1344
1345 if (global.mode & MODE_DAEMON) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001346 struct proxy *px;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001347 int ret = 0;
1348 int proc;
1349
1350 /* the father launches the required number of processes */
1351 for (proc = 0; proc < global.nbproc; proc++) {
1352 ret = fork();
1353 if (ret < 0) {
1354 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001355 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02001356 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001357 }
1358 else if (ret == 0) /* child breaks here */
1359 break;
1360 if (pidfile != NULL) {
1361 fprintf(pidfile, "%d\n", ret);
1362 fflush(pidfile);
1363 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01001364 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001365 }
1366 /* close the pidfile both in children and father */
1367 if (pidfile != NULL)
1368 fclose(pidfile);
Willy Tarreaud137dd32010-08-25 12:49:05 +02001369
1370 /* We won't ever use this anymore */
1371 free(oldpids); oldpids = NULL;
1372 free(global.chroot); global.chroot = NULL;
1373 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001374
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001375 /* we might have to unbind some proxies from some processes */
1376 px = proxy;
1377 while (px != NULL) {
1378 if (px->bind_proc && px->state != PR_STSTOPPED) {
1379 if (!(px->bind_proc & (1 << proc)))
1380 stop_proxy(px);
1381 }
1382 px = px->next;
1383 }
1384
Willy Tarreaubaaee002006-06-26 02:48:02 +02001385 if (proc == global.nbproc)
1386 exit(0); /* parent must leave */
1387
1388 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
1389 * that we can detach from the TTY. We MUST NOT do it in other cases since
1390 * it would have already be done, and 0-2 would have been affected to listening
1391 * sockets
1392 */
Willy Tarreau106cb762008-11-16 07:40:34 +01001393 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001394 /* detach from the tty */
1395 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01001396 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001397 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
1398 }
1399 pid = getpid(); /* update child's pid */
1400 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02001401 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001402 }
1403
Willy Tarreaudd815982007-10-16 12:25:14 +02001404 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02001405 /*
1406 * That's it : the central polling loop. Run until we stop.
1407 */
1408 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001409
1410 /* Free all Hash Keys and all Hash elements */
1411 appsession_cleanup();
1412 /* Do some cleanup */
1413 deinit();
1414
1415 exit(0);
1416}
1417
1418
1419/*
1420 * Local variables:
1421 * c-indent-level: 8
1422 * c-basic-offset: 8
1423 * End:
1424 */