blob: d973ae282eb05dc98c3d1e6302e3b071f9426033 [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>
Willy Tarreauc7e42382012-08-24 19:22:53 +020055#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020056#include <common/compat.h>
57#include <common/config.h>
58#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010059#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020060#include <common/memory.h>
61#include <common/mini-clist.h>
62#include <common/regex.h>
63#include <common/standard.h>
64#include <common/time.h>
65#include <common/uri_auth.h>
66#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020067
68#include <types/capture.h>
69#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090070#include <types/proto_tcp.h>
71#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020072#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020073
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010074#include <proto/auth.h>
Willy Tarreau0fc45a72007-06-17 00:36:03 +020075#include <proto/acl.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +020076#include <proto/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020077#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020078#include <proto/channel.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020079#include <proto/checks.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +020080#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081#include <proto/fd.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020082#include <proto/hdr_idx.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020083#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020084#include <proto/log.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020085#include <proto/protocol.h>
Willy Tarreau80587432006-12-24 17:47:20 +010086#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020087#include <proto/proxy.h>
88#include <proto/queue.h>
89#include <proto/server.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020090#include <proto/session.h>
Willy Tarreau29857942009-05-10 09:01:21 +020091#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020092#include <proto/task.h>
93
Willy Tarreaub38651a2007-03-24 17:24:39 +010094#ifdef CONFIG_HAP_CTTPROXY
95#include <proto/cttproxy.h>
96#endif
97
Emeric Brunfc0421f2012-09-07 17:30:07 +020098#ifdef USE_OPENSSL
99#include <proto/ssl_sock.h>
100#endif
101
Willy Tarreaubaaee002006-06-26 02:48:02 +0200102/*********************************************************************/
103
Cyril Bonté6162c432012-11-10 19:27:47 +0100104extern const struct comp_algo comp_algos[];
105
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106/*********************************************************************/
107
Willy Tarreau477ecd82010-01-03 21:12:30 +0100108/* list of config files */
109static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110int 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 = {
William Lallemand5f232402012-04-05 18:02:55 +0200115 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200116 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100117 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100118 .comp_rate_lim = 0,
Emeric Bruned760922010-10-22 17:59:25 +0200119 .unix_bind = {
120 .ux = {
121 .uid = -1,
122 .gid = -1,
123 .mode = 0,
124 }
125 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200126 .tune = {
127 .bufsize = BUFSIZE,
128 .maxrewrite = MAXREWRITE,
Willy Tarreau43961d52010-10-04 20:39:20 +0200129 .chksize = BUFSIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200130#ifdef USE_OPENSSL
131 .sslcachesize = 20000,
132#endif
William Lallemanda509e4c2012-11-07 16:54:34 +0100133#ifdef USE_ZLIB
134 .zlibmemlevel = 8,
135 .zlibwindowsize = MAX_WBITS,
136#endif
William Lallemandf3747832012-11-09 12:33:10 +0100137 .comp_maxlevel = 1,
William Lallemanda509e4c2012-11-07 16:54:34 +0100138
139
Willy Tarreau27a674e2009-08-17 07:23:33 +0200140 },
Emeric Brun76d88952012-10-05 15:47:31 +0200141#ifdef USE_OPENSSL
142#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200143 .maxsslconn = DEFAULT_MAXSSLCONN,
144#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200145#ifdef LISTEN_DEFAULT_CIPHERS
146 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
147#endif
148#ifdef CONNECT_DEFAULT_CIPHERS
149 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
150#endif
151#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200152 /* others NULL OK */
153};
154
155/*********************************************************************/
156
157int stopping; /* non zero means stopping in progress */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200158int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159
160/* Here we store informations about the pids of the processes we may pause
161 * or kill. We will send them a signal every 10 ms until we can bind to all
162 * our ports. With 200 retries, that's about 2 seconds.
163 */
164#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200165static int *oldpids = NULL;
166static int oldpids_sig; /* use USR1 or TERM */
167
168/* this is used to drain data, and as a temporary buffer for sprintf()... */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100169struct chunk trash = { };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170
Willy Tarreau8096de92010-02-26 11:12:27 +0100171/* this buffer is always the same size as standard buffers and is used for
172 * swapping data inside a buffer.
173 */
174char *swap_buffer = NULL;
175
Willy Tarreaubb545b42010-08-25 12:58:59 +0200176int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177const int zero = 0;
178const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200179const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100181char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200182char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200183
Willy Tarreau08ceb102011-07-24 22:58:00 +0200184/* list of the temporarily limited listeners because of lack of resource */
185struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200186struct task *global_listener_queue_task;
187static struct task *manage_global_listener_queue(struct task *t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200188
189/*********************************************************************/
190/* general purpose functions ***************************************/
191/*********************************************************************/
192
193void display_version()
194{
195 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau9eeb57b2012-03-26 06:15:29 +0200196 printf("Copyright 2000-2012 Willy Tarreau <w@1wt.eu>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200197}
198
Willy Tarreau7b066db2007-12-02 11:28:59 +0100199void display_build_opts()
200{
201 printf("Build options :"
202#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100203 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100204#endif
205#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100206 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100207#endif
208#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100209 "\n CC = " BUILD_CC
210#endif
211#ifdef BUILD_CFLAGS
212 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100213#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100214#ifdef BUILD_OPTIONS
215 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100216#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200217 "\n\nDefault settings :"
218 "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d"
219 "\n\n",
220 DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200221
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100222 printf("Encrypted password support via crypt(3): "
223#ifdef CONFIG_HAP_CRYPT
224 "yes"
225#else
226 "no"
227#endif
228 "\n");
229
Cyril Bonté6162c432012-11-10 19:27:47 +0100230#ifdef USE_ZLIB
231 printf("Built with zlib version : " ZLIB_VERSION "\n");
232#else /* USE_ZLIB */
233 printf("Built without zlib support (USE_ZLIB not set)\n");
234#endif
235 printf("Compression algorithms supported :");
236 {
237 int i;
238
239 for (i = 0; comp_algos[i].name; i++) {
240 printf("%s %s", (i == 0 ? "" : ","), comp_algos[i].name);
241 }
242 if (i == 0) {
243 printf("none");
244 }
245 }
246 printf("\n");
247
Willy Tarreau1ee0e302012-09-10 07:16:05 +0200248#ifdef USE_OPENSSL
249 printf("Built with OpenSSL version : " OPENSSL_VERSION_TEXT "\n");
250 printf("OpenSSL library supports TLS extensions : "
251#if OPENSSL_VERSION_NUMBER < 0x00907000L
252 "no (library version too old)"
253#elif defined(OPENSSL_NO_TLSEXT)
254 "no (disabled via OPENSSL_NO_TLSEXT)"
255#else
256 "yes"
257#endif
258 "\n");
259 printf("OpenSSL library supports SNI : "
260#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
261 "yes"
262#else
263#ifdef OPENSSL_NO_TLSEXT
264 "no (because of OPENSSL_NO_TLSEXT)"
265#else
266 "no (version might be too old, 0.9.8f min needed)"
267#endif
268#endif
269 "\n");
270 printf("OpenSSL library supports prefer-server-ciphers : "
271#ifdef SSL_OP_CIPHER_SERVER_PREFERENCE
272 "yes"
273#else
274 "no (0.9.7 or later needed)"
275#endif
276 "\n");
277#else /* USE_OPENSSL */
278 printf("Built without OpenSSL support (USE_OPENSSL not set)\n");
279#endif
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100280 putchar('\n');
281
Willy Tarreaube5b6852009-10-03 18:57:08 +0200282 list_pollers(stdout);
283 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100284}
285
Willy Tarreaubaaee002006-06-26 02:48:02 +0200286/*
287 * This function prints the command line usage and exits
288 */
289void usage(char *name)
290{
291 display_version();
292 fprintf(stderr,
Willy Tarreau5d01a632009-06-22 16:02:30 +0200293 "Usage : %s [-f <cfgfile>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200294 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200295 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100296 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200297 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200298 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200299 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200300 " -D goes daemon ; -C changes to <dir> before loading files.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200301 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200302 " -c check mode : only check config files and exit\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200303 " -n sets the maximum total # of connections (%d)\n"
304 " -m limits the usable amount of memory (in MB)\n"
305 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200306 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307 " -p writes pids of all children to this file\n"
308#if defined(ENABLE_EPOLL)
309 " -de disables epoll() usage even when available\n"
310#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200311#if defined(ENABLE_SEPOLL)
312 " -ds disables speculative epoll() usage even when available\n"
313#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200314#if defined(ENABLE_KQUEUE)
315 " -dk disables kqueue() usage even when available\n"
316#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200317#if defined(ENABLE_POLL)
318 " -dp disables poll() usage even when available\n"
319#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200320#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100321 " -dS disables splice usage (broken on old kernels)\n"
322#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200323 " -sf/-st [pid ]* finishes/terminates old pids. Must be last arguments.\n"
324 "\n",
325 name, DEFAULT_MAXCONN, cfg_maxpconn);
326 exit(1);
327}
328
329
330
331/*********************************************************************/
332/* more specific functions ***************************************/
333/*********************************************************************/
334
335/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200336 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
337 * a signal zero to all subscribers. This means that it's as easy as
338 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200339 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200340void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200341{
342 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200343 signal_unregister_handler(sh);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200344 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200345}
346
347/*
348 * upon SIGTTOU, we pause everything
349 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200350void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200351{
352 pause_proxies();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200353 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200354}
355
356/*
357 * upon SIGTTIN, let's have a soft stop.
358 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200359void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360{
Willy Tarreaube58c382011-07-24 18:28:10 +0200361 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200362}
363
364/*
365 * this function dumps every server's state when the process receives SIGHUP.
366 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200367void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200368{
369 struct proxy *p = proxy;
370
371 Warning("SIGHUP received, dumping servers states.\n");
372 while (p) {
373 struct server *s = p->srv;
374
375 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
376 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100377 chunk_printf(&trash,
378 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
379 p->id, s->id,
380 (s->state & SRV_RUNNING) ? "UP" : "DOWN",
381 s->cur_sess, s->nbpend, s->counters.cum_sess);
382 Warning("%s\n", trash.str);
383 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200384 s = s->next;
385 }
386
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200387 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
388 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100389 chunk_printf(&trash,
390 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
391 p->id,
392 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 +0200393 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100394 chunk_printf(&trash,
395 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
396 p->id,
397 (p->srv_bck) ? "is running on backup servers" : "has no server available",
398 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 +0200399 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100400 chunk_printf(&trash,
401 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
402 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
403 p->id, p->srv_act, p->srv_bck,
404 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 +0200405 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100406 Warning("%s\n", trash.str);
407 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200408
409 p = p->next;
410 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200411}
412
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200413void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200415 /* dump memory usage then free everything possible */
416 dump_pools();
417 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200418}
419
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420/*
421 * This function initializes all the necessary variables. It only returns
422 * if everything is OK. If something fails, it exits.
423 */
424void init(int argc, char **argv)
425{
Willy Tarreaubaaee002006-06-26 02:48:02 +0200426 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200427 char *tmp;
428 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +0200429 int err_code = 0;
Willy Tarreau477ecd82010-01-03 21:12:30 +0100430 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +0000431 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +0200432 char *change_dir = NULL;
Yuxans Yao4e25b012012-10-19 10:36:09 +0800433 struct tm curtime;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200434
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100435 chunk_init(&trash, malloc(global.tune.bufsize), global.tune.bufsize);
David du Colombier7af46052012-05-16 14:16:48 +0200436
Emeric Brun2b920a12010-09-23 18:30:22 +0200437 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
438 * the string in case of truncation, and at least FreeBSD appears not to do
439 * it.
440 */
441 memset(hostname, 0, sizeof(hostname));
442 gethostname(hostname, sizeof(hostname) - 1);
443 memset(localpeer, 0, sizeof(localpeer));
444 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
445
Willy Tarreaubaaee002006-06-26 02:48:02 +0200446 /*
447 * Initialize the previously static variables.
448 */
449
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100450 totalconn = actconn = maxfd = listeners = stopping = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200451
452
453#ifdef HAPROXY_MEMMAX
454 global.rlimit_memmax = HAPROXY_MEMMAX;
455#endif
456
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200457 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200458 start_date = now;
459
Yuxans Yao4e25b012012-10-19 10:36:09 +0800460 /* Get the numeric timezone. */
461 get_localtime(start_date.tv_sec, &curtime);
462 strftime(localtimezone, 6, "%z", &curtime);
463
Willy Tarreau29857942009-05-10 09:01:21 +0200464 signal_init();
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200465 init_task();
466 init_session();
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200467 init_connection();
Willy Tarreau8280d642009-09-23 23:37:52 +0200468 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200469 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +0100470 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200471
Willy Tarreau43b78992009-01-25 15:42:27 +0100472 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200473#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100474 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200475#endif
476#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100477 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200478#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200479#if defined(ENABLE_SEPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +0100480 global.tune.options |= GTUNE_USE_SEPOLL;
Willy Tarreaude99e992007-04-16 00:53:59 +0200481#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200482#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +0100483 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200484#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200485#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100486 global.tune.options |= GTUNE_USE_SPLICE;
487#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200488
489 pid = getpid();
490 progname = *argv;
491 while ((tmp = strchr(progname, '/')) != NULL)
492 progname = tmp + 1;
493
Kevinm48936af2010-12-22 16:08:21 +0000494 /* the process name is used for the logs only */
495 global.log_tag = strdup(progname);
496
Willy Tarreaubaaee002006-06-26 02:48:02 +0200497 argc--; argv++;
498 while (argc > 0) {
499 char *flag;
500
501 if (**argv == '-') {
502 flag = *argv+1;
503
504 /* 1 arg */
505 if (*flag == 'v') {
506 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +0100507 if (flag[1] == 'v') /* -vv */
508 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200509 exit(0);
510 }
511#if defined(ENABLE_EPOLL)
512 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +0100513 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200514#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200515#if defined(ENABLE_SEPOLL)
516 else if (*flag == 'd' && flag[1] == 's')
Willy Tarreau43b78992009-01-25 15:42:27 +0100517 global.tune.options &= ~GTUNE_USE_SEPOLL;
Willy Tarreaude99e992007-04-16 00:53:59 +0200518#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200519#if defined(ENABLE_POLL)
520 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +0100521 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200522#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +0200523#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200524 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +0100525 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200526#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200527#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100528 else if (*flag == 'd' && flag[1] == 'S')
529 global.tune.options &= ~GTUNE_USE_SPLICE;
530#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200531 else if (*flag == 'V')
532 arg_mode |= MODE_VERBOSE;
533 else if (*flag == 'd' && flag[1] == 'b')
534 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +0200535 else if (*flag == 'd' && flag[1] == 'M')
536 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537 else if (*flag == 'd')
538 arg_mode |= MODE_DEBUG;
539 else if (*flag == 'c')
540 arg_mode |= MODE_CHECK;
541 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +0200542 arg_mode |= MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543 else if (*flag == 'q')
544 arg_mode |= MODE_QUIET;
545 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
546 /* list of pids to finish ('f') or terminate ('t') */
547
548 if (flag[1] == 'f')
549 oldpids_sig = SIGUSR1; /* finish then exit */
550 else
551 oldpids_sig = SIGTERM; /* terminate immediately */
552 argv++; argc--;
553
554 if (argc > 0) {
555 oldpids = calloc(argc, sizeof(int));
556 while (argc > 0) {
557 oldpids[nb_oldpids] = atol(*argv);
558 if (oldpids[nb_oldpids] <= 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200559 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200560 argc--; argv++;
561 nb_oldpids++;
562 }
563 }
564 }
565 else { /* >=2 args */
566 argv++; argc--;
567 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200568 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569
570 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +0200571 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200572 case 'n' : cfg_maxconn = atol(*argv); break;
573 case 'm' : global.rlimit_memmax = atol(*argv); break;
574 case 'N' : cfg_maxpconn = atol(*argv); break;
Emeric Brun2b920a12010-09-23 18:30:22 +0200575 case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break;
Willy Tarreau5d01a632009-06-22 16:02:30 +0200576 case 'f' :
Willy Tarreau477ecd82010-01-03 21:12:30 +0100577 wl = (struct wordlist *)calloc(1, sizeof(*wl));
578 if (!wl) {
579 Alert("Cannot load configuration file %s : out of memory.\n", *argv);
Willy Tarreau5d01a632009-06-22 16:02:30 +0200580 exit(1);
581 }
Willy Tarreau477ecd82010-01-03 21:12:30 +0100582 wl->s = *argv;
583 LIST_ADDQ(&cfg_cfgfiles, &wl->list);
Willy Tarreau5d01a632009-06-22 16:02:30 +0200584 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200585 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200586 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200587 }
588 }
589 }
590 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200591 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200592 argv++; argc--;
593 }
594
595 global.mode = MODE_STARTING | /* during startup, we want most of the alerts */
596 (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_VERBOSE
597 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
598
Willy Tarreau477ecd82010-01-03 21:12:30 +0100599 if (LIST_ISEMPTY(&cfg_cfgfiles))
Willy Tarreau3bafcdc2011-09-10 19:20:23 +0200600 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200601
Willy Tarreau576132e2011-09-10 19:26:56 +0200602 if (change_dir && chdir(change_dir) < 0) {
603 Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
604 exit(1);
605 }
606
Willy Tarreaubaaee002006-06-26 02:48:02 +0200607 have_appsession = 0;
608 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200609
610 init_default_instance();
611
Willy Tarreau477ecd82010-01-03 21:12:30 +0100612 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +0100613 int ret;
614
Willy Tarreau477ecd82010-01-03 21:12:30 +0100615 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +0100616 if (ret == -1) {
617 Alert("Could not open configuration file %s : %s\n",
Willy Tarreau477ecd82010-01-03 21:12:30 +0100618 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +0100619 exit(1);
620 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +0100621 if (ret & (ERR_ABORT|ERR_FATAL))
Willy Tarreau477ecd82010-01-03 21:12:30 +0100622 Alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +0100623 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +0200624 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +0200625 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200626 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200627
Willy Tarreaubb925012009-07-23 13:36:36 +0200628 err_code |= check_config_validity();
629 if (err_code & (ERR_ABORT|ERR_FATAL)) {
630 Alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200631 exit(1);
632 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200633
634 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +0100635 struct peers *pr;
636 struct proxy *px;
637
638 for (pr = peers; pr; pr = pr->next)
639 if (pr->peers_fe)
640 break;
641
642 for (px = proxy; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +0200643 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +0100644 break;
645
646 if (pr || px) {
647 /* At least one peer or one listener has been found */
648 qfprintf(stdout, "Configuration file is valid\n");
649 exit(0);
650 }
651 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
652 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200653 }
654
Willy Tarreaue9b26022011-08-01 20:57:55 +0200655 global_listener_queue_task = task_new();
656 if (!global_listener_queue_task) {
657 Alert("Out of memory when initializing global task\n");
658 exit(1);
659 }
660 /* very simple initialization, users will queue the task if needed */
661 global_listener_queue_task->context = NULL; /* not even a context! */
662 global_listener_queue_task->process = manage_global_listener_queue;
663 global_listener_queue_task->expire = TICK_ETERNITY;
664
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200665 /* now we know the buffer size, we can initialize the channels and buffers */
666 init_channel();
Willy Tarreau9b28e032012-10-12 23:49:43 +0200667 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +0200668
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200669 if (have_appsession)
670 appsession_init();
671
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200672 if (start_checks() < 0)
673 exit(1);
674
Willy Tarreaubaaee002006-06-26 02:48:02 +0200675 if (cfg_maxconn > 0)
676 global.maxconn = cfg_maxconn;
677
678 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200679 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200680 global.pidfile = strdup(cfg_pidfile);
681 }
682
683 if (global.maxconn == 0)
684 global.maxconn = DEFAULT_MAXCONN;
685
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100686 if (!global.maxpipes) {
687 /* maxpipes not specified. Count how many frontends and backends
688 * may be using splicing, and bound that to maxconn.
689 */
690 struct proxy *cur;
691 int nbfe = 0, nbbe = 0;
692
693 for (cur = proxy; cur; cur = cur->next) {
694 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
695 if (cur->cap & PR_CAP_FE)
696 nbfe += cur->maxconn;
697 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +0100698 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100699 }
700 }
701 global.maxpipes = MAX(nbfe, nbbe);
702 if (global.maxpipes > global.maxconn)
703 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +0100704 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +0100705 }
706
707
Willy Tarreauabacc2c2011-09-07 14:26:33 +0200708 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200709 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +0100710 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200711
Willy Tarreau3c63fd82011-09-07 18:00:47 +0200712 if (global.stats_fe)
713 global.maxsock += global.stats_fe->maxconn;
714
715 if (peers) {
716 /* peers also need to bypass global maxconn */
717 struct peers *p = peers;
718
719 for (p = peers; p; p = p->next)
720 if (p->peers_fe)
721 global.maxsock += p->peers_fe->maxconn;
722 }
723
Willy Tarreau1db37712007-06-03 17:16:49 +0200724 if (global.tune.maxpollevents <= 0)
725 global.tune.maxpollevents = MAX_POLL_EVENTS;
726
Willy Tarreauf49d1df2009-03-01 08:35:41 +0100727 if (global.tune.maxaccept == 0) {
Willy Tarreau4827fd22011-07-22 21:59:59 +0200728 /* Note: we should not try to accept too many connections at once,
729 * because past one point we're significantly reducing the cache
730 * efficiency and the highest session rate significantly drops.
731 * Values between 15 and 35 seem fine on a Core i5 with 4M L3 cache.
732 */
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100733 if (global.nbproc > 1)
734 global.tune.maxaccept = 8; /* leave some conns to other processes */
735 else
Willy Tarreau4827fd22011-07-22 21:59:59 +0200736 global.tune.maxaccept = 32; /* accept more incoming conns at once */
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100737 }
738
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100739 if (global.tune.recv_enough == 0)
740 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
741
Willy Tarreau27a674e2009-08-17 07:23:33 +0200742 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
743 global.tune.maxrewrite = global.tune.bufsize / 2;
744
Willy Tarreaubaaee002006-06-26 02:48:02 +0200745 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
746 /* command line debug mode inhibits configuration mode */
747 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +0200748 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
749 }
750
751 if (arg_mode & MODE_DAEMON) {
752 /* command line daemon mode inhibits foreground and debug modes mode */
753 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
754 global.mode |= (arg_mode & MODE_DAEMON);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200755 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +0200756
757 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200758
759 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
760 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
761 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
762 }
763
764 if ((global.nbproc > 1) && !(global.mode & MODE_DAEMON)) {
765 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
766 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
767 global.nbproc = 1;
768 }
769
770 if (global.nbproc < 1)
771 global.nbproc = 1;
772
Willy Tarreau8096de92010-02-26 11:12:27 +0100773 swap_buffer = (char *)calloc(1, global.tune.bufsize);
Willy Tarreau7e2c6472012-10-29 20:44:36 +0100774 sample_trash_buf1 = (char *)calloc(1, global.tune.bufsize);
775 sample_trash_buf2 = (char *)calloc(1, global.tune.bufsize);
776 get_http_auth_buff = (char *)calloc(1, global.tune.bufsize);
Willy Tarreau07115412012-10-29 21:56:59 +0100777 static_table_key = calloc(1, sizeof(*static_table_key) + global.tune.bufsize);
Willy Tarreau7e2c6472012-10-29 20:44:36 +0100778
Willy Tarreau8096de92010-02-26 11:12:27 +0100779
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200780 fdinfo = (struct fdinfo *)calloc(1,
781 sizeof(struct fdinfo) * (global.maxsock));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200782 fdtab = (struct fdtab *)calloc(1,
783 sizeof(struct fdtab) * (global.maxsock));
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200784 /*
785 * Note: we could register external pollers here.
786 * Built-in pollers have been registered before main().
787 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200788
Willy Tarreau43b78992009-01-25 15:42:27 +0100789 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200790 disable_poller("kqueue");
791
Willy Tarreau43b78992009-01-25 15:42:27 +0100792 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200793 disable_poller("epoll");
794
Willy Tarreau43b78992009-01-25 15:42:27 +0100795 if (!(global.tune.options & GTUNE_USE_SEPOLL))
Willy Tarreaude99e992007-04-16 00:53:59 +0200796 disable_poller("sepoll");
797
Willy Tarreau43b78992009-01-25 15:42:27 +0100798 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200799 disable_poller("poll");
800
Willy Tarreau43b78992009-01-25 15:42:27 +0100801 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200802 disable_poller("select");
803
804 /* Note: we could disable any poller by name here */
805
Willy Tarreau2ff76222007-04-09 19:29:56 +0200806 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
807 list_pollers(stderr);
808
Willy Tarreau4f60f162007-04-08 16:39:58 +0200809 if (!init_pollers()) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200810 Alert("No polling mechanism available.\n");
Willy Tarreau4f60f162007-04-08 16:39:58 +0200811 exit(1);
812 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200813 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
814 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200815 }
816
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200817 if (!global.node)
818 global.node = strdup(hostname);
819
Willy Tarreaubaaee002006-06-26 02:48:02 +0200820}
821
Simon Horman6fb82592011-07-15 13:14:11 +0900822static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +0900823{
Simon Hormanac821422011-07-15 13:14:09 +0900824 struct acl_term_suite *suite, *suiteb;
825 struct acl_term *term, *termb;
826
Simon Horman6fb82592011-07-15 13:14:11 +0900827 if (!cond)
828 return;
829
830 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
831 list_for_each_entry_safe(term, termb, &suite->terms, list) {
832 LIST_DEL(&term->list);
833 free(term);
Simon Hormanac821422011-07-15 13:14:09 +0900834 }
Simon Horman6fb82592011-07-15 13:14:11 +0900835 LIST_DEL(&suite->list);
836 free(suite);
837 }
838
839 free(cond);
840}
841
842static void deinit_tcp_rules(struct list *rules)
843{
844 struct tcp_rule *trule, *truleb;
845
846 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +0900847 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +0900848 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +0900849 free(trule);
850 }
851}
852
Willy Tarreau12785782012-04-27 21:37:17 +0200853static void deinit_sample_arg(struct arg *p)
Simon Horman6fb82592011-07-15 13:14:11 +0900854{
Willy Tarreauf9954102012-04-20 14:03:29 +0200855 struct arg *p_back = p;
856
Simon Horman6fb82592011-07-15 13:14:11 +0900857 if (!p)
858 return;
859
Willy Tarreauf9954102012-04-20 14:03:29 +0200860 while (p->type != ARGT_STOP) {
Willy Tarreau496aa012012-06-01 10:38:29 +0200861 if (p->type == ARGT_STR || p->unresolved) {
Willy Tarreauf9954102012-04-20 14:03:29 +0200862 free(p->data.str.str);
863 p->data.str.str = NULL;
Willy Tarreau496aa012012-06-01 10:38:29 +0200864 p->unresolved = 0;
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200865 }
Willy Tarreauf9954102012-04-20 14:03:29 +0200866 p++;
Willy Tarreauecfb8e82012-04-20 12:29:52 +0200867 }
Simon Horman6fb82592011-07-15 13:14:11 +0900868
Willy Tarreau2e845be2012-10-19 19:49:09 +0200869 if (p_back != empty_arg_list)
870 free(p_back);
Simon Horman6fb82592011-07-15 13:14:11 +0900871}
872
873static void deinit_stick_rules(struct list *rules)
874{
875 struct sticking_rule *rule, *ruleb;
876
877 list_for_each_entry_safe(rule, ruleb, rules, list) {
878 LIST_DEL(&rule->list);
879 deinit_acl_cond(rule->cond);
880 if (rule->expr) {
Willy Tarreau12785782012-04-27 21:37:17 +0200881 struct sample_conv_expr *conv_expr, *conv_exprb;
Simon Horman6fb82592011-07-15 13:14:11 +0900882 list_for_each_entry_safe(conv_expr, conv_exprb, &rule->expr->conv_exprs, list)
Willy Tarreau12785782012-04-27 21:37:17 +0200883 deinit_sample_arg(conv_expr->arg_p);
884 deinit_sample_arg(rule->expr->arg_p);
Simon Horman6fb82592011-07-15 13:14:11 +0900885 free(rule->expr);
886 }
887 free(rule);
888 }
889}
890
Willy Tarreaubaaee002006-06-26 02:48:02 +0200891void deinit(void)
892{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200893 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200894 struct cap_hdr *h,*h_next;
895 struct server *s,*s_next;
896 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200897 struct acl_cond *cond, *condb;
898 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200899 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200900 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200901 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200902 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +0100903 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +0100904 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200905 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +0200906 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +0100907 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200908 struct bind_conf *bind_conf, *bind_back;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200909 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200910
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200911 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200912 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200913 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +0200914 free(p->id);
915 free(p->check_req);
916 free(p->cookie_name);
917 free(p->cookie_domain);
918 free(p->url_param_name);
919 free(p->capture_name);
920 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +0900921 free(p->rdp_cookie_name);
Willy Tarreau39b06652012-06-01 10:58:06 +0200922 if (p->logformat_string != default_http_log_format &&
923 p->logformat_string != default_tcp_log_format &&
924 p->logformat_string != clf_http_log_format)
Willy Tarreau196729e2012-05-31 19:30:26 +0200925 free(p->logformat_string);
926
927 free(p->uniqueid_format_string);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928
Willy Tarreaua534fea2008-08-03 12:19:50 +0200929 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +0200930 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200931
Willy Tarreauf4f04122010-01-28 18:10:50 +0100932 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
933 LIST_DEL(&cwl->list);
934 free(cwl->s);
935 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +0100936 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937
Willy Tarreauf4f04122010-01-28 18:10:50 +0100938 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
939 LIST_DEL(&cwl->list);
940 free(cwl->s);
941 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +0100942 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200943
944 list_for_each_entry_safe(cond, condb, &p->block_cond, list) {
945 LIST_DEL(&cond->list);
946 prune_acl_cond(cond);
947 free(cond);
948 }
949
Willy Tarreaub80c2302007-11-30 20:51:32 +0100950 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
951 LIST_DEL(&cond->list);
952 prune_acl_cond(cond);
953 free(cond);
954 }
955
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200956 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200957 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200958 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200959 free((regex_t *)exp->preg);
960 }
961
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200962 if (exp->replace && exp->action != ACT_SETBE)
963 free((char *)exp->replace);
964 expb = exp;
965 exp = exp->next;
966 free(expb);
967 }
968
969 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200970 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200971 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200972 free((regex_t *)exp->preg);
973 }
974
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200975 if (exp->replace && exp->action != ACT_SETBE)
976 free((char *)exp->replace);
977 expb = exp;
978 exp = exp->next;
979 free(expb);
980 }
981
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200982 /* build a list of unique uri_auths */
983 if (!ua)
984 ua = p->uri_auth;
985 else {
986 /* check if p->uri_auth is unique */
987 for (uap = ua; uap; uap=uap->next)
988 if (uap == p->uri_auth)
989 break;
990
Willy Tarreauaccc4e12008-06-24 11:14:45 +0200991 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200992 /* add it, if it is */
993 p->uri_auth->next = ua;
994 ua = p->uri_auth;
995 }
996 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200997
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200998 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
999 LIST_DEL(&acl->list);
1000 prune_acl(acl);
1001 free(acl);
1002 }
1003
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001004 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
1005 LIST_DEL(&srule->list);
1006 prune_acl_cond(srule->cond);
1007 free(srule->cond);
1008 free(srule);
1009 }
1010
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001011 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
1012 LIST_DEL(&rule->list);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001013 prune_acl_cond(rule->cond);
1014 free(rule->cond);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001015 free(rule);
1016 }
1017
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001018 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
1019 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01001020 if (rdr->cond) {
1021 prune_acl_cond(rdr->cond);
1022 free(rdr->cond);
1023 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001024 free(rdr->rdr_str);
1025 free(rdr);
1026 }
1027
William Lallemand0f99e342011-10-12 17:50:54 +02001028 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
1029 LIST_DEL(&log->list);
1030 free(log);
1031 }
1032
William Lallemand723b73a2012-02-08 16:37:49 +01001033 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
1034 LIST_DEL(&lf->list);
1035 free(lf);
1036 }
1037
Simon Hormanac821422011-07-15 13:14:09 +09001038 deinit_tcp_rules(&p->tcp_req.inspect_rules);
1039 deinit_tcp_rules(&p->tcp_req.l4_rules);
1040
Simon Horman6fb82592011-07-15 13:14:11 +09001041 deinit_stick_rules(&p->storersp_rules);
1042 deinit_stick_rules(&p->sticking_rules);
1043
Willy Tarreaua534fea2008-08-03 12:19:50 +02001044 free(p->appsession_name);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001045
1046 h = p->req_cap;
1047 while (h) {
1048 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001049 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001050 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001051 free(h);
1052 h = h_next;
1053 }/* end while(h) */
1054
1055 h = p->rsp_cap;
1056 while (h) {
1057 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001058 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001059 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001060 free(h);
1061 h = h_next;
1062 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001063
Willy Tarreaubaaee002006-06-26 02:48:02 +02001064 s = p->srv;
1065 while (s) {
1066 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001067
Willy Tarreau5b3a2022012-09-28 15:01:02 +02001068 if (s->check.task) {
1069 task_delete(s->check.task);
1070 task_free(s->check.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001071 }
1072
Willy Tarreau2e993902011-10-31 11:53:20 +01001073 if (s->warmup) {
1074 task_delete(s->warmup);
1075 task_free(s->warmup);
1076 }
1077
Willy Tarreaua534fea2008-08-03 12:19:50 +02001078 free(s->id);
1079 free(s->cookie);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02001080 free(s->check.bi);
1081 free(s->check.bo);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001082 free(s);
1083 s = s_next;
1084 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001085
Willy Tarreau4348fad2012-09-20 16:48:07 +02001086 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02001087 unbind_listener(l);
1088 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02001089 LIST_DEL(&l->by_fe);
1090 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01001091 free(l->name);
1092 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001093 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02001094 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001095
Willy Tarreau4348fad2012-09-20 16:48:07 +02001096 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001097 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
1098#ifdef USE_OPENSSL
1099 ssl_sock_free_all_ctx(bind_conf);
Emeric Brunfb510ea2012-10-05 12:00:26 +02001100 free(bind_conf->ca_file);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001101 free(bind_conf->ciphers);
Emeric Brun2b58d042012-09-20 17:10:03 +02001102 free(bind_conf->ecdhe);
Emeric Brunfb510ea2012-10-05 12:00:26 +02001103 free(bind_conf->crl_file);
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02001104#endif /* USE_OPENSSL */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001105 free(bind_conf->file);
1106 free(bind_conf->arg);
1107 LIST_DEL(&bind_conf->by_fe);
1108 free(bind_conf);
1109 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02001110
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01001111 free(p->desc);
1112 free(p->fwdfor_hdr_name);
1113
Willy Tarreauff011f22011-01-06 17:51:27 +01001114 free_http_req_rules(&p->http_req_rules);
Willy Tarreau918ff602011-07-25 16:33:49 +02001115 free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01001116
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001117 pool_destroy2(p->req_cap_pool);
1118 pool_destroy2(p->rsp_cap_pool);
Simon Hormanb08584a2011-07-15 13:14:10 +09001119 pool_destroy2(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001120
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001121 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001122 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001123 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001124 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02001125
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001126 while (ua) {
1127 uap = ua;
1128 ua = ua->next;
1129
Willy Tarreaua534fea2008-08-03 12:19:50 +02001130 free(uap->uri_prefix);
1131 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001132 free(uap->node);
1133 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001134
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01001135 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01001136 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01001137
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001138 free(uap);
1139 }
1140
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001141 userlist_free(userlist);
1142
Willy Tarreaudd815982007-10-16 12:25:14 +02001143 protocol_unbind_all();
1144
Joe Williamsdf5b38f2010-12-29 17:05:48 +01001145 free(global.log_send_hostname); global.log_send_hostname = NULL;
Kevinm48936af2010-12-22 16:08:21 +00001146 free(global.log_tag); global.log_tag = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001147 free(global.chroot); global.chroot = NULL;
1148 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001149 free(global.node); global.node = NULL;
1150 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001151 free(fdtab); fdtab = NULL;
1152 free(oldpids); oldpids = NULL;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001153 free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001154
William Lallemand0f99e342011-10-12 17:50:54 +02001155 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
1156 LIST_DEL(&log->list);
1157 free(log);
1158 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01001159 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1160 LIST_DEL(&wl->list);
1161 free(wl);
1162 }
1163
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001164 pool_destroy2(pool2_session);
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001165 pool_destroy2(pool2_connection);
Willy Tarreau9b28e032012-10-12 23:49:43 +02001166 pool_destroy2(pool2_buffer);
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001167 pool_destroy2(pool2_channel);
Willy Tarreau332f8bf2007-05-13 21:36:56 +02001168 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001169 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +02001170 pool_destroy2(pool2_capture);
Willy Tarreau63963c62007-05-13 21:29:55 +02001171 pool_destroy2(pool2_appsess);
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001172 pool_destroy2(pool2_pendconn);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001173 pool_destroy2(pool2_sig_handlers);
Willy Tarreau34eb6712011-10-24 18:15:04 +02001174 pool_destroy2(pool2_hdr_idx);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001175
1176 if (have_appsession) {
Willy Tarreau63963c62007-05-13 21:29:55 +02001177 pool_destroy2(apools.serverid);
1178 pool_destroy2(apools.sessid);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001179 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001180
1181 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001182} /* end deinit() */
1183
Willy Tarreaubb545b42010-08-25 12:58:59 +02001184/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
1185 * pids the signal was correctly delivered to.
1186 */
1187static int tell_old_pids(int sig)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001188{
1189 int p;
Willy Tarreaubb545b42010-08-25 12:58:59 +02001190 int ret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001191 for (p = 0; p < nb_oldpids; p++)
Willy Tarreaubb545b42010-08-25 12:58:59 +02001192 if (kill(oldpids[p], sig) == 0)
1193 ret++;
1194 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001195}
1196
Willy Tarreau918ff602011-07-25 16:33:49 +02001197/* Runs the polling loop */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001198void run_poll_loop()
1199{
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001200 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +02001201
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001202 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001203 while (1) {
Willy Tarreau29857942009-05-10 09:01:21 +02001204 /* check if we caught some signals and process them */
1205 signal_process_queue();
1206
Willy Tarreau58b458d2008-06-29 22:40:23 +02001207 /* Check if we can expire some tasks */
1208 wake_expired_tasks(&next);
1209
1210 /* Process a few tasks */
Willy Tarreaud825eef2007-05-12 22:35:00 +02001211 process_runnable_tasks(&next);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001212
Willy Tarreauaf7ad002010-08-31 15:39:26 +02001213 /* stop when there's nothing left to do */
1214 if (jobs == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +02001215 break;
1216
Willy Tarreau58b458d2008-06-29 22:40:23 +02001217 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02001218 cur_poller.poll(&cur_poller, next);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001219 }
1220}
1221
Willy Tarreaue9b26022011-08-01 20:57:55 +02001222/* This is the global management task for listeners. It enables listeners waiting
1223 * for global resources when there are enough free resource, or at least once in
1224 * a while. It is designed to be called as a task.
1225 */
1226static struct task *manage_global_listener_queue(struct task *t)
1227{
1228 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001229 /* queue is empty, nothing to do */
1230 if (LIST_ISEMPTY(&global_listener_queue))
1231 goto out;
1232
1233 /* If there are still too many concurrent connections, let's wait for
1234 * some of them to go away. We don't need to re-arm the timer because
1235 * each of them will scan the queue anyway.
1236 */
1237 if (unlikely(actconn >= global.maxconn))
1238 goto out;
1239
1240 /* We should periodically try to enable listeners waiting for a global
1241 * resource here, because it is possible, though very unlikely, that
1242 * they have been blocked by a temporary lack of global resource such
1243 * as a file descriptor or memory and that the temporary condition has
1244 * disappeared.
1245 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001246 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001247
1248 out:
1249 t->expire = next;
1250 task_queue(t);
1251 return t;
1252}
Willy Tarreau4f60f162007-04-08 16:39:58 +02001253
Willy Tarreaubaaee002006-06-26 02:48:02 +02001254int main(int argc, char **argv)
1255{
1256 int err, retry;
1257 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02001258 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02001259 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001260
Emeric Bruncf20bf12010-10-22 16:06:11 +02001261 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001262 signal_register_fct(SIGQUIT, dump, SIGQUIT);
1263 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
1264 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001265
Willy Tarreaue437c442010-03-17 18:02:46 +01001266 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
1267 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
1268 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001269 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001270 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001271
Willy Tarreaudc23a922011-02-16 11:10:36 +01001272 /* ulimits */
1273 if (!global.rlimit_nofile)
1274 global.rlimit_nofile = global.maxsock;
1275
1276 if (global.rlimit_nofile) {
1277 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
1278 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
1279 Warning("[%s.main()] Cannot raise FD limit to %d.\n", argv[0], global.rlimit_nofile);
1280 }
1281 }
1282
1283 if (global.rlimit_memmax) {
1284 limit.rlim_cur = limit.rlim_max =
1285 global.rlimit_memmax * 1048576 / global.nbproc;
1286#ifdef RLIMIT_AS
1287 if (setrlimit(RLIMIT_AS, &limit) == -1) {
1288 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1289 argv[0], global.rlimit_memmax);
1290 }
1291#else
1292 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
1293 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
1294 argv[0], global.rlimit_memmax);
1295 }
1296#endif
1297 }
1298
Willy Tarreaubaaee002006-06-26 02:48:02 +02001299 /* We will loop at most 100 times with 10 ms delay each time.
1300 * That's at most 1 second. We only send a signal to old pids
1301 * if we cannot grab at least one port.
1302 */
1303 retry = MAX_START_RETRIES;
1304 err = ERR_NONE;
1305 while (retry >= 0) {
1306 struct timeval w;
1307 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01001308 /* exit the loop on no error or fatal error */
1309 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001310 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02001311 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001312 break;
1313
1314 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
1315 * listening sockets. So on those platforms, it would be wiser to
1316 * simply send SIGUSR1, which will not be undoable.
1317 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02001318 if (tell_old_pids(SIGTTOU) == 0) {
1319 /* no need to wait if we can't contact old pids */
1320 retry = 0;
1321 continue;
1322 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001323 /* give some time to old processes to stop listening */
1324 w.tv_sec = 0;
1325 w.tv_usec = 10*1000;
1326 select(0, NULL, NULL, NULL, &w);
1327 retry--;
1328 }
1329
1330 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01001331 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02001332 if (retry != MAX_START_RETRIES && nb_oldpids) {
1333 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001334 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02001335 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001336 exit(1);
1337 }
1338
1339 if (listeners == 0) {
1340 Alert("[%s.main()] No enabled listener found (check the <listen> keywords) ! Exiting.\n", argv[0]);
1341 /* Note: we don't have to send anything to the old pids because we
1342 * never stopped them. */
1343 exit(1);
1344 }
1345
Emeric Bruncf20bf12010-10-22 16:06:11 +02001346 err = protocol_bind_all(errmsg, sizeof(errmsg));
1347 if ((err & ~ERR_WARN) != ERR_NONE) {
1348 if ((err & ERR_ALERT) || (err & ERR_WARN))
1349 Alert("[%s.main()] %s.\n", argv[0], errmsg);
1350
Willy Tarreaudd815982007-10-16 12:25:14 +02001351 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
1352 protocol_unbind_all(); /* cleanup everything we can */
1353 if (nb_oldpids)
1354 tell_old_pids(SIGTTIN);
1355 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02001356 } else if (err & ERR_WARN) {
1357 Alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02001358 }
1359
Willy Tarreaubaaee002006-06-26 02:48:02 +02001360 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001361 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
1362 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001363
Willy Tarreaubaaee002006-06-26 02:48:02 +02001364 /* MODE_QUIET can inhibit alerts and warnings below this line */
1365
1366 global.mode &= ~MODE_STARTING;
1367 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
1368 /* detach from the tty */
1369 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001370 }
1371
1372 /* open log & pid files before the chroot */
1373 if (global.mode & MODE_DAEMON && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001374 unlink(global.pidfile);
1375 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
1376 if (pidfd < 0) {
1377 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
1378 if (nb_oldpids)
1379 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02001380 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001381 exit(1);
1382 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001383 }
1384
Willy Tarreaub38651a2007-03-24 17:24:39 +01001385#ifdef CONFIG_HAP_CTTPROXY
1386 if (global.last_checks & LSTCHK_CTTPROXY) {
1387 int ret;
1388
1389 ret = check_cttproxy_version();
1390 if (ret < 0) {
1391 Alert("[%s.main()] Cannot enable cttproxy.\n%s",
1392 argv[0],
1393 (ret == -1) ? " Incorrect module version.\n"
1394 : " Make sure you have enough permissions and that the module is loaded.\n");
Willy Tarreaudd815982007-10-16 12:25:14 +02001395 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001396 exit(1);
1397 }
1398 }
1399#endif
1400
1401 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
1402 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01001403 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001404 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001405 exit(1);
1406 }
1407
Willy Tarreau4e30ed72009-02-04 18:02:48 +01001408 /* If the user is not root, we'll still let him try the configuration
1409 * but we inform him that unexpected behaviour may occur.
1410 */
1411 if ((global.last_checks & LSTCHK_NETADM) && getuid())
1412 Warning("[%s.main()] Some options which require full privileges"
1413 " might not work well.\n"
1414 "", argv[0]);
1415
Willy Tarreauf223cc02007-10-15 18:57:08 +02001416 /* chroot if needed */
1417 if (global.chroot != NULL) {
Willy Tarreau21337822012-04-29 14:11:38 +02001418 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Willy Tarreauf223cc02007-10-15 18:57:08 +02001419 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
1420 if (nb_oldpids)
1421 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02001422 protocol_unbind_all();
Willy Tarreauf223cc02007-10-15 18:57:08 +02001423 exit(1);
1424 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02001425 }
1426
Willy Tarreaubaaee002006-06-26 02:48:02 +02001427 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02001428 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001429
1430 /* Note that any error at this stage will be fatal because we will not
1431 * be able to restart the old pids.
1432 */
1433
1434 /* setgid / setuid */
1435 if (global.gid && setgid(global.gid) == -1) {
1436 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001437 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001438 exit(1);
1439 }
1440
1441 if (global.uid && setuid(global.uid) == -1) {
1442 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001443 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001444 exit(1);
1445 }
1446
1447 /* check ulimits */
1448 limit.rlim_cur = limit.rlim_max = 0;
1449 getrlimit(RLIMIT_NOFILE, &limit);
1450 if (limit.rlim_cur < global.maxsock) {
1451 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 +02001452 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001453 }
1454
1455 if (global.mode & MODE_DAEMON) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001456 struct proxy *px;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001457 int ret = 0;
1458 int proc;
1459
1460 /* the father launches the required number of processes */
1461 for (proc = 0; proc < global.nbproc; proc++) {
1462 ret = fork();
1463 if (ret < 0) {
1464 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001465 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02001466 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001467 }
1468 else if (ret == 0) /* child breaks here */
1469 break;
Willy Tarreau269ab312012-09-05 08:02:48 +02001470 if (pidfd >= 0) {
1471 char pidstr[100];
1472 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreauaa52bef2012-09-07 22:18:59 +02001473 if (write(pidfd, pidstr, strlen(pidstr)) < 0) /* shut gcc warning */;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001474 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01001475 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001476 }
1477 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02001478 if (pidfd >= 0) {
1479 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
1480 close(pidfd);
1481 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02001482
1483 /* We won't ever use this anymore */
1484 free(oldpids); oldpids = NULL;
1485 free(global.chroot); global.chroot = NULL;
1486 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001487
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001488 /* we might have to unbind some proxies from some processes */
1489 px = proxy;
1490 while (px != NULL) {
1491 if (px->bind_proc && px->state != PR_STSTOPPED) {
1492 if (!(px->bind_proc & (1 << proc)))
1493 stop_proxy(px);
1494 }
1495 px = px->next;
1496 }
1497
Willy Tarreaubaaee002006-06-26 02:48:02 +02001498 if (proc == global.nbproc)
1499 exit(0); /* parent must leave */
1500
1501 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
1502 * that we can detach from the TTY. We MUST NOT do it in other cases since
1503 * it would have already be done, and 0-2 would have been affected to listening
1504 * sockets
1505 */
Willy Tarreau106cb762008-11-16 07:40:34 +01001506 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001507 /* detach from the tty */
1508 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01001509 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001510 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
1511 }
1512 pid = getpid(); /* update child's pid */
1513 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02001514 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001515 }
1516
Willy Tarreaudd815982007-10-16 12:25:14 +02001517 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02001518 /*
1519 * That's it : the central polling loop. Run until we stop.
1520 */
1521 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001522
1523 /* Free all Hash Keys and all Hash elements */
1524 appsession_cleanup();
1525 /* Do some cleanup */
1526 deinit();
1527
1528 exit(0);
1529}
1530
1531
1532/*
1533 * Local variables:
1534 * c-indent-level: 8
1535 * c-basic-offset: 8
1536 * End:
1537 */