blob: 48b76ba672bbe8e377c3451dd7e480cac4d72d1c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau7c669d72008-06-20 15:04:11 +02003 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
10 * Please refer to RFC2068 or RFC2616 for informations about HTTP protocol, and
11 * RFC2965 for informations about cookies usage. More generally, the IETF HTTP
12 * Working Group's web site should be consulted for protocol related changes :
13 *
14 * http://ftp.ics.uci.edu/pub/ietf/http/
15 *
16 * Pending bugs (may be not fixed because never reproduced) :
17 * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes
18 * the proxy to terminate (no core) if the client breaks the connection during
19 * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to
20 * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be
21 * related to missing setsid() (fixed in 1.1.15)
22 * - a proxy with an invalid config will prevent the startup even if disabled.
23 *
24 * ChangeLog has moved to the CHANGELOG file.
25 *
26 * TODO:
27 * - handle properly intermediate incomplete server headers. Done ?
28 * - handle hot-reconfiguration
29 * - fix client/server state transition when server is in connect or headers state
30 * and client suddenly disconnects. The server *should* switch to SHUT_WR, but
31 * still handle HTTP headers.
32 * - remove MAX_NEWHDR
33 * - cut this huge file into several ones
34 *
35 */
36
37#include <stdio.h>
38#include <stdlib.h>
39#include <unistd.h>
40#include <string.h>
41#include <ctype.h>
42#include <sys/time.h>
43#include <sys/types.h>
44#include <sys/socket.h>
45#include <netinet/tcp.h>
46#include <netinet/in.h>
47#include <arpa/inet.h>
48#include <netdb.h>
49#include <fcntl.h>
50#include <errno.h>
51#include <signal.h>
52#include <stdarg.h>
53#include <sys/resource.h>
54#include <time.h>
55#include <syslog.h>
56
57#ifdef DEBUG_FULL
58#include <assert.h>
59#endif
60
Willy Tarreau2dd0d472006-06-29 17:53:05 +020061#include <common/appsession.h>
62#include <common/base64.h>
63#include <common/cfgparse.h>
64#include <common/compat.h>
65#include <common/config.h>
66#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010067#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020068#include <common/memory.h>
69#include <common/mini-clist.h>
70#include <common/regex.h>
71#include <common/standard.h>
72#include <common/time.h>
73#include <common/uri_auth.h>
74#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020075
76#include <types/capture.h>
77#include <types/global.h>
Willy Tarreau69801b82007-04-09 15:28:51 +020078#include <types/polling.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020079
Willy Tarreau0fc45a72007-06-17 00:36:03 +020080#include <proto/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081#include <proto/backend.h>
82#include <proto/buffers.h>
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +020083#include <proto/checks.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020084#include <proto/client.h>
85#include <proto/fd.h>
86#include <proto/log.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020087#include <proto/protocols.h>
Willy Tarreau80587432006-12-24 17:47:20 +010088#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020089#include <proto/proxy.h>
90#include <proto/queue.h>
91#include <proto/server.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020092#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020093#include <proto/stream_sock.h>
94#include <proto/task.h>
95
Willy Tarreau6d1a9882007-01-07 02:03:04 +010096#ifdef CONFIG_HAP_TCPSPLICE
97#include <libtcpsplice.h>
98#endif
99
Willy Tarreaub38651a2007-03-24 17:24:39 +0100100#ifdef CONFIG_HAP_CTTPROXY
101#include <proto/cttproxy.h>
102#endif
103
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104/*********************************************************************/
105
106/*********************************************************************/
107
108char *cfg_cfgfile = NULL; /* configuration file */
109char *progname = NULL; /* program name */
110int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100111int relative_pid = 1; /* process id starting at 1 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200112
113/* global options */
114struct global global = {
115 logfac1 : -1,
116 logfac2 : -1,
117 loglev1 : 7, /* max syslog level : debug */
118 loglev2 : 7,
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200119 .stats_timeout = MS_TO_TICKS(10000), /* stats timeout = 10 seconds */
Willy Tarreau03f6d672007-10-18 15:15:57 +0200120 .stats_sock = {
121 .timeout = &global.stats_timeout,
122 .maxconn = 10, /* 10 concurrent stats connections */
123 .perm = {
124 .ux = {
125 .uid = -1,
126 .gid = -1,
127 .mode = 0,
128 }
129 }
130 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 /* others NULL OK */
132};
133
134/*********************************************************************/
135
136int stopping; /* non zero means stopping in progress */
137
138/* Here we store informations about the pids of the processes we may pause
139 * or kill. We will send them a signal every 10 ms until we can bind to all
140 * our ports. With 200 retries, that's about 2 seconds.
141 */
142#define MAX_START_RETRIES 200
143static int nb_oldpids = 0;
144static int *oldpids = NULL;
145static int oldpids_sig; /* use USR1 or TERM */
146
147/* this is used to drain data, and as a temporary buffer for sprintf()... */
148char trash[BUFSIZE];
149
150const int zero = 0;
151const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200152const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153
154/*
155 * Syslog facilities and levels. Conforming to RFC3164.
156 */
157
158#define MAX_HOSTNAME_LEN 32
159static char hostname[MAX_HOSTNAME_LEN] = "";
160
161
162/*********************************************************************/
163/* general purpose functions ***************************************/
164/*********************************************************************/
165
166void display_version()
167{
168 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau7b4c5ae2008-04-19 21:06:14 +0200169 printf("Copyright 2000-2008 Willy Tarreau <w@1wt.eu>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170}
171
Willy Tarreau7b066db2007-12-02 11:28:59 +0100172void display_build_opts()
173{
174 printf("Build options :"
175#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100176 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100177#endif
178#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100179 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100180#endif
181#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100182 "\n CC = " BUILD_CC
183#endif
184#ifdef BUILD_CFLAGS
185 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100186#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100187#ifdef BUILD_OPTIONS
188 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100189#endif
190 "\n\n");
191}
192
Willy Tarreaubaaee002006-06-26 02:48:02 +0200193/*
194 * This function prints the command line usage and exits
195 */
196void usage(char *name)
197{
198 display_version();
199 fprintf(stderr,
200 "Usage : %s -f <cfgfile> [ -vdV"
201 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
202 " [ -p <pidfile> ] [ -m <max megs> ]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100203 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204 " -d enters debug mode ; -db only disables background mode.\n"
205 " -V enters verbose mode (disables quiet mode)\n"
206 " -D goes daemon ; implies -q\n"
207 " -q quiet mode : don't display messages\n"
208 " -c check mode : only check config file and exit\n"
209 " -n sets the maximum total # of connections (%d)\n"
210 " -m limits the usable amount of memory (in MB)\n"
211 " -N sets the default, per-proxy maximum # of connections (%d)\n"
212 " -p writes pids of all children to this file\n"
213#if defined(ENABLE_EPOLL)
214 " -de disables epoll() usage even when available\n"
215#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200216#if defined(ENABLE_SEPOLL)
217 " -ds disables speculative epoll() usage even when available\n"
218#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200219#if defined(ENABLE_KQUEUE)
220 " -dk disables kqueue() usage even when available\n"
221#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222#if defined(ENABLE_POLL)
223 " -dp disables poll() usage even when available\n"
224#endif
225 " -sf/-st [pid ]* finishes/terminates old pids. Must be last arguments.\n"
226 "\n",
227 name, DEFAULT_MAXCONN, cfg_maxpconn);
228 exit(1);
229}
230
231
232
233/*********************************************************************/
234/* more specific functions ***************************************/
235/*********************************************************************/
236
237/*
238 * upon SIGUSR1, let's have a soft stop.
239 */
240void sig_soft_stop(int sig)
241{
242 soft_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200243 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200244 signal(sig, SIG_IGN);
245}
246
247/*
248 * upon SIGTTOU, we pause everything
249 */
250void sig_pause(int sig)
251{
252 pause_proxies();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200253 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200254 signal(sig, sig_pause);
255}
256
257/*
258 * upon SIGTTIN, let's have a soft stop.
259 */
260void sig_listen(int sig)
261{
262 listen_proxies();
263 signal(sig, sig_listen);
264}
265
266/*
267 * this function dumps every server's state when the process receives SIGHUP.
268 */
269void sig_dump_state(int sig)
270{
271 struct proxy *p = proxy;
272
273 Warning("SIGHUP received, dumping servers states.\n");
274 while (p) {
275 struct server *s = p->srv;
276
277 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
278 while (s) {
279 snprintf(trash, sizeof(trash),
280 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %d tot.",
281 p->id, s->id,
282 (s->state & SRV_RUNNING) ? "UP" : "DOWN",
283 s->cur_sess, s->nbpend, s->cum_sess);
284 Warning("%s\n", trash);
285 send_log(p, LOG_NOTICE, "%s\n", trash);
286 s = s->next;
287 }
288
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200289 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
290 if (!p->srv) {
291 snprintf(trash, sizeof(trash),
292 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %d+%d.",
293 p->id,
294 p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn);
295 } else if (p->srv_act == 0) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200296 snprintf(trash, sizeof(trash),
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100297 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %d+%d.",
Willy Tarreaubaaee002006-06-26 02:48:02 +0200298 p->id,
299 (p->srv_bck) ? "is running on backup servers" : "has no server available",
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100300 p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200301 } else {
302 snprintf(trash, sizeof(trash),
303 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100304 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %d+%d.",
Willy Tarreaubaaee002006-06-26 02:48:02 +0200305 p->id, p->srv_act, p->srv_bck,
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100306 p->feconn, p->beconn, p->totpend, p->nbpend, p->cum_feconn, p->cum_beconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307 }
308 Warning("%s\n", trash);
309 send_log(p, LOG_NOTICE, "%s\n", trash);
310
311 p = p->next;
312 }
313 signal(sig, sig_dump_state);
314}
315
316void dump(int sig)
317{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200318#if 0
Willy Tarreau964c9362007-01-07 00:38:00 +0100319 struct task *t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200320 struct session *s;
Willy Tarreau964c9362007-01-07 00:38:00 +0100321 struct rb_node *node;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322
Willy Tarreau964c9362007-01-07 00:38:00 +0100323 for(node = rb_first(&wait_queue[0]);
324 node != NULL; node = rb_next(node)) {
325 t = rb_entry(node, struct task, rb_node);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326 s = t->context;
327 qfprintf(stderr,"[dump] wq: task %p, still %ld ms, "
Willy Tarreau7e5067d2008-12-07 16:27:56 +0100328 "cli=%d, srv=%d, req=%d, rep=%d\n",
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200329 s, tv_ms_remain(&now, &t->expire),
Willy Tarreau7e5067d2008-12-07 16:27:56 +0100330 s->si[0].state,
331 s->si[1].state,
332 s->req->l, s->rep?s->rep->l:0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200333 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200334#endif
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200335 /* dump memory usage then free everything possible */
336 dump_pools();
337 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200338}
339
340#ifdef DEBUG_MEMORY
341static void fast_stop(void)
342{
343 struct proxy *p;
344 p = proxy;
345 while (p) {
346 p->grace = 0;
347 p = p->next;
348 }
349 soft_stop();
350}
351
352void sig_int(int sig)
353{
354 /* This would normally be a hard stop,
355 but we want to be sure about deallocation,
356 and so on, so we do a soft stop with
357 0 GRACE time
358 */
359 fast_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200360 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200361 /* If we are killed twice, we decide to die*/
362 signal(sig, SIG_DFL);
363}
364
365void sig_term(int sig)
366{
367 /* This would normally be a hard stop,
368 but we want to be sure about deallocation,
369 and so on, so we do a soft stop with
370 0 GRACE time
371 */
372 fast_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200373 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200374 /* If we are killed twice, we decide to die*/
375 signal(sig, SIG_DFL);
376}
377#endif
378
379
380/*
381 * This function initializes all the necessary variables. It only returns
382 * if everything is OK. If something fails, it exits.
383 */
384void init(int argc, char **argv)
385{
386 int i;
387 int arg_mode = 0; /* MODE_DEBUG, ... */
388 char *old_argv = *argv;
389 char *tmp;
390 char *cfg_pidfile = NULL;
391
Willy Tarreaubaaee002006-06-26 02:48:02 +0200392 /*
393 * Initialize the previously static variables.
394 */
395
396 totalconn = actconn = maxfd = listeners = stopping = 0;
397
398
399#ifdef HAPROXY_MEMMAX
400 global.rlimit_memmax = HAPROXY_MEMMAX;
401#endif
402
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200403 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 start_date = now;
405
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200406 init_task();
407 init_session();
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200408 init_buffer();
409 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +0100410 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200411
412 cfg_polling_mechanism = POLL_USE_SELECT; /* select() is always available */
413#if defined(ENABLE_POLL)
414 cfg_polling_mechanism |= POLL_USE_POLL;
415#endif
416#if defined(ENABLE_EPOLL)
417 cfg_polling_mechanism |= POLL_USE_EPOLL;
418#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200419#if defined(ENABLE_SEPOLL)
420 cfg_polling_mechanism |= POLL_USE_SEPOLL;
421#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200422#if defined(ENABLE_KQUEUE)
423 cfg_polling_mechanism |= POLL_USE_KQUEUE;
424#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200425
426 pid = getpid();
427 progname = *argv;
428 while ((tmp = strchr(progname, '/')) != NULL)
429 progname = tmp + 1;
430
431 argc--; argv++;
432 while (argc > 0) {
433 char *flag;
434
435 if (**argv == '-') {
436 flag = *argv+1;
437
438 /* 1 arg */
439 if (*flag == 'v') {
440 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +0100441 if (flag[1] == 'v') /* -vv */
442 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200443 exit(0);
444 }
445#if defined(ENABLE_EPOLL)
446 else if (*flag == 'd' && flag[1] == 'e')
447 cfg_polling_mechanism &= ~POLL_USE_EPOLL;
448#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200449#if defined(ENABLE_SEPOLL)
450 else if (*flag == 'd' && flag[1] == 's')
451 cfg_polling_mechanism &= ~POLL_USE_SEPOLL;
452#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200453#if defined(ENABLE_POLL)
454 else if (*flag == 'd' && flag[1] == 'p')
455 cfg_polling_mechanism &= ~POLL_USE_POLL;
456#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +0200457#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200458 else if (*flag == 'd' && flag[1] == 'k')
459 cfg_polling_mechanism &= ~POLL_USE_KQUEUE;
460#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200461 else if (*flag == 'V')
462 arg_mode |= MODE_VERBOSE;
463 else if (*flag == 'd' && flag[1] == 'b')
464 arg_mode |= MODE_FOREGROUND;
465 else if (*flag == 'd')
466 arg_mode |= MODE_DEBUG;
467 else if (*flag == 'c')
468 arg_mode |= MODE_CHECK;
469 else if (*flag == 'D')
470 arg_mode |= MODE_DAEMON | MODE_QUIET;
471 else if (*flag == 'q')
472 arg_mode |= MODE_QUIET;
473 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
474 /* list of pids to finish ('f') or terminate ('t') */
475
476 if (flag[1] == 'f')
477 oldpids_sig = SIGUSR1; /* finish then exit */
478 else
479 oldpids_sig = SIGTERM; /* terminate immediately */
480 argv++; argc--;
481
482 if (argc > 0) {
483 oldpids = calloc(argc, sizeof(int));
484 while (argc > 0) {
485 oldpids[nb_oldpids] = atol(*argv);
486 if (oldpids[nb_oldpids] <= 0)
487 usage(old_argv);
488 argc--; argv++;
489 nb_oldpids++;
490 }
491 }
492 }
493 else { /* >=2 args */
494 argv++; argc--;
495 if (argc == 0)
496 usage(old_argv);
497
498 switch (*flag) {
499 case 'n' : cfg_maxconn = atol(*argv); break;
500 case 'm' : global.rlimit_memmax = atol(*argv); break;
501 case 'N' : cfg_maxpconn = atol(*argv); break;
502 case 'f' : cfg_cfgfile = *argv; break;
503 case 'p' : cfg_pidfile = *argv; break;
504 default: usage(old_argv);
505 }
506 }
507 }
508 else
509 usage(old_argv);
510 argv++; argc--;
511 }
512
513 global.mode = MODE_STARTING | /* during startup, we want most of the alerts */
514 (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_VERBOSE
515 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
516
517 if (!cfg_cfgfile)
518 usage(old_argv);
519
520 gethostname(hostname, MAX_HOSTNAME_LEN);
521
522 have_appsession = 0;
523 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
524 if (readcfgfile(cfg_cfgfile) < 0) {
525 Alert("Error reading configuration file : %s\n", cfg_cfgfile);
526 exit(1);
527 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200528
Willy Tarreaubaaee002006-06-26 02:48:02 +0200529 if (have_appsession)
530 appsession_init();
531
532 if (global.mode & MODE_CHECK) {
533 qfprintf(stdout, "Configuration file is valid : %s\n", cfg_cfgfile);
534 exit(0);
535 }
536
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200537 if (start_checks() < 0)
538 exit(1);
539
Willy Tarreaubaaee002006-06-26 02:48:02 +0200540 if (cfg_maxconn > 0)
541 global.maxconn = cfg_maxconn;
542
543 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200544 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200545 global.pidfile = strdup(cfg_pidfile);
546 }
547
548 if (global.maxconn == 0)
549 global.maxconn = DEFAULT_MAXCONN;
550
551 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
552
Willy Tarreau1db37712007-06-03 17:16:49 +0200553 if (global.tune.maxpollevents <= 0)
554 global.tune.maxpollevents = MAX_POLL_EVENTS;
555
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100556 if (global.tune.maxaccept <= 0) {
557 if (global.nbproc > 1)
558 global.tune.maxaccept = 8; /* leave some conns to other processes */
559 else
560 global.tune.maxaccept = -1; /* accept all incoming conns */
561 }
562
Willy Tarreaubaaee002006-06-26 02:48:02 +0200563 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
564 /* command line debug mode inhibits configuration mode */
565 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
566 }
567 global.mode |= (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_QUIET |
Willy Tarreaufbee7132007-10-18 13:53:22 +0200568 MODE_VERBOSE | MODE_DEBUG ));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569
570 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
571 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
572 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
573 }
574
575 if ((global.nbproc > 1) && !(global.mode & MODE_DAEMON)) {
576 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
577 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
578 global.nbproc = 1;
579 }
580
581 if (global.nbproc < 1)
582 global.nbproc = 1;
583
Willy Tarreaubaaee002006-06-26 02:48:02 +0200584 fdtab = (struct fdtab *)calloc(1,
585 sizeof(struct fdtab) * (global.maxsock));
586 for (i = 0; i < global.maxsock; i++) {
587 fdtab[i].state = FD_STCLOSE;
588 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200589
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200590 /*
591 * Note: we could register external pollers here.
592 * Built-in pollers have been registered before main().
593 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200594
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200595 if (!(cfg_polling_mechanism & POLL_USE_KQUEUE))
596 disable_poller("kqueue");
597
Willy Tarreau4f60f162007-04-08 16:39:58 +0200598 if (!(cfg_polling_mechanism & POLL_USE_EPOLL))
599 disable_poller("epoll");
600
Willy Tarreaude99e992007-04-16 00:53:59 +0200601 if (!(cfg_polling_mechanism & POLL_USE_SEPOLL))
602 disable_poller("sepoll");
603
Willy Tarreau4f60f162007-04-08 16:39:58 +0200604 if (!(cfg_polling_mechanism & POLL_USE_POLL))
605 disable_poller("poll");
606
607 if (!(cfg_polling_mechanism & POLL_USE_SELECT))
608 disable_poller("select");
609
610 /* Note: we could disable any poller by name here */
611
Willy Tarreau2ff76222007-04-09 19:29:56 +0200612 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
613 list_pollers(stderr);
614
Willy Tarreau4f60f162007-04-08 16:39:58 +0200615 if (!init_pollers()) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200616 Alert("No polling mechanism available.\n");
Willy Tarreau4f60f162007-04-08 16:39:58 +0200617 exit(1);
618 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200619 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
620 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200621 }
622
Willy Tarreaubaaee002006-06-26 02:48:02 +0200623}
624
625void deinit(void)
626{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200627 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200628 struct cap_hdr *h,*h_next;
629 struct server *s,*s_next;
630 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200631 struct acl_cond *cond, *condb;
632 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200633 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200634 struct switching_rule *rule, *ruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200635 struct redirect_rule *rdr, *rdrb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200636 struct uri_auth *uap, *ua = NULL;
637 struct user_auth *user;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200638 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200639
Willy Tarreaubaaee002006-06-26 02:48:02 +0200640 while (p) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200641 free(p->id);
642 free(p->check_req);
643 free(p->cookie_name);
644 free(p->cookie_domain);
645 free(p->url_param_name);
646 free(p->capture_name);
647 free(p->monitor_uri);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200648
Willy Tarreaua534fea2008-08-03 12:19:50 +0200649 for (i = 0; i < HTTP_ERR_SIZE; i++)
650 free(p->errmsg[i].str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200651
Willy Tarreaua534fea2008-08-03 12:19:50 +0200652 for (i = 0; i < p->nb_reqadd; i++)
653 free(p->req_add[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200654
Willy Tarreaua534fea2008-08-03 12:19:50 +0200655 for (i = 0; i < p->nb_rspadd; i++)
656 free(p->rsp_add[i]);
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200657
658 list_for_each_entry_safe(cond, condb, &p->block_cond, list) {
659 LIST_DEL(&cond->list);
660 prune_acl_cond(cond);
661 free(cond);
662 }
663
Willy Tarreaub80c2302007-11-30 20:51:32 +0100664 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
665 LIST_DEL(&cond->list);
666 prune_acl_cond(cond);
667 free(cond);
668 }
669
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200670 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200671 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200672 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200673 free((regex_t *)exp->preg);
674 }
675
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200676 if (exp->replace && exp->action != ACT_SETBE)
677 free((char *)exp->replace);
678 expb = exp;
679 exp = exp->next;
680 free(expb);
681 }
682
683 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200684 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200685 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200686 free((regex_t *)exp->preg);
687 }
688
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200689 if (exp->replace && exp->action != ACT_SETBE)
690 free((char *)exp->replace);
691 expb = exp;
692 exp = exp->next;
693 free(expb);
694 }
695
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200696 /* build a list of unique uri_auths */
697 if (!ua)
698 ua = p->uri_auth;
699 else {
700 /* check if p->uri_auth is unique */
701 for (uap = ua; uap; uap=uap->next)
702 if (uap == p->uri_auth)
703 break;
704
Willy Tarreauaccc4e12008-06-24 11:14:45 +0200705 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200706 /* add it, if it is */
707 p->uri_auth->next = ua;
708 ua = p->uri_auth;
709 }
710 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200711
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200712 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
713 LIST_DEL(&acl->list);
714 prune_acl(acl);
715 free(acl);
716 }
717
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200718 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
719 LIST_DEL(&rule->list);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200720 prune_acl_cond(rule->cond);
721 free(rule->cond);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200722 free(rule);
723 }
724
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200725 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
726 LIST_DEL(&rdr->list);
727 prune_acl_cond(rdr->cond);
728 free(rdr->cond);
729 free(rdr->rdr_str);
730 free(rdr);
731 }
732
Willy Tarreaua534fea2008-08-03 12:19:50 +0200733 free(p->appsession_name);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200734
735 h = p->req_cap;
736 while (h) {
737 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200738 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200739 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200740 free(h);
741 h = h_next;
742 }/* end while(h) */
743
744 h = p->rsp_cap;
745 while (h) {
746 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200747 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200748 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200749 free(h);
750 h = h_next;
751 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200752
Willy Tarreaubaaee002006-06-26 02:48:02 +0200753 s = p->srv;
754 while (s) {
755 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200756
757 if (s->check) {
758 task_delete(s->check);
759 task_free(s->check);
760 }
761
Willy Tarreaua534fea2008-08-03 12:19:50 +0200762 free(s->id);
763 free(s->cookie);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200764 free(s);
765 s = s_next;
766 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200767
Willy Tarreaubaaee002006-06-26 02:48:02 +0200768 l = p->listen;
769 while (l) {
770 l_next = l->next;
771 free(l);
772 l = l_next;
773 }/* end while(l) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200774
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200775 pool_destroy2(p->req_cap_pool);
776 pool_destroy2(p->rsp_cap_pool);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200777 pool_destroy2(p->hdr_idx_pool);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200778 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200779 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200780 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200781 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +0200782
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200783 while (ua) {
784 uap = ua;
785 ua = ua->next;
786
Willy Tarreaua534fea2008-08-03 12:19:50 +0200787 free(uap->uri_prefix);
788 free(uap->auth_realm);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200789
790 while (uap->users) {
791 user = uap->users;
792 uap->users = uap->users->next;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200793 free(user->user_pwd);
794 free(user);
795 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200796 free(uap);
797 }
798
Willy Tarreaudd815982007-10-16 12:25:14 +0200799 protocol_unbind_all();
800
Willy Tarreaua534fea2008-08-03 12:19:50 +0200801 free(global.chroot); global.chroot = NULL;
802 free(global.pidfile); global.pidfile = NULL;
803 free(fdtab); fdtab = NULL;
804 free(oldpids); oldpids = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200805
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200806 pool_destroy2(pool2_session);
Willy Tarreau7341d942007-05-13 19:56:02 +0200807 pool_destroy2(pool2_buffer);
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200808 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200809 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200810 pool_destroy2(pool2_capture);
Willy Tarreau63963c62007-05-13 21:29:55 +0200811 pool_destroy2(pool2_appsess);
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200812 pool_destroy2(pool2_pendconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200813
814 if (have_appsession) {
Willy Tarreau63963c62007-05-13 21:29:55 +0200815 pool_destroy2(apools.serverid);
816 pool_destroy2(apools.sessid);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200817 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200818
819 deinit_pollers();
820
Willy Tarreaubaaee002006-06-26 02:48:02 +0200821} /* end deinit() */
822
823/* sends the signal <sig> to all pids found in <oldpids> */
824static void tell_old_pids(int sig)
825{
826 int p;
827 for (p = 0; p < nb_oldpids; p++)
828 kill(oldpids[p], sig);
829}
830
Willy Tarreau4f60f162007-04-08 16:39:58 +0200831/*
832 * Runs the polling loop
833 *
834 * FIXME:
835 * - we still use 'listeners' to check whether we want to stop or not.
836 *
837 */
838void run_poll_loop()
839{
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200840 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200841
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200842 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200843 while (1) {
Willy Tarreau58b458d2008-06-29 22:40:23 +0200844 /* Check if we can expire some tasks */
845 wake_expired_tasks(&next);
846
847 /* Process a few tasks */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200848 process_runnable_tasks(&next);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200849
Willy Tarreau58b458d2008-06-29 22:40:23 +0200850 /* maintain all proxies in a consistent state. This should quickly
851 * become a task because it becomes expensive when there are huge
852 * numbers of proxies. */
853 maintain_proxies(&next);
854
Willy Tarreau4f60f162007-04-08 16:39:58 +0200855 /* stop when there's no connection left and we don't allow them anymore */
856 if (!actconn && listeners == 0)
857 break;
858
Willy Tarreau58b458d2008-06-29 22:40:23 +0200859 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200860 cur_poller.poll(&cur_poller, next);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200861 }
862}
863
864
Willy Tarreaubaaee002006-06-26 02:48:02 +0200865int main(int argc, char **argv)
866{
867 int err, retry;
868 struct rlimit limit;
869 FILE *pidfile = NULL;
870 init(argc, argv);
871
872 signal(SIGQUIT, dump);
873 signal(SIGUSR1, sig_soft_stop);
874 signal(SIGHUP, sig_dump_state);
875#ifdef DEBUG_MEMORY
876 signal(SIGINT, sig_int);
877 signal(SIGTERM, sig_term);
878#endif
879
880 /* on very high loads, a sigpipe sometimes happen just between the
881 * getsockopt() which tells "it's OK to write", and the following write :-(
882 */
883#ifndef MSG_NOSIGNAL
884 signal(SIGPIPE, SIG_IGN);
885#endif
886
887 /* We will loop at most 100 times with 10 ms delay each time.
888 * That's at most 1 second. We only send a signal to old pids
889 * if we cannot grab at least one port.
890 */
891 retry = MAX_START_RETRIES;
892 err = ERR_NONE;
893 while (retry >= 0) {
894 struct timeval w;
895 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +0100896 /* exit the loop on no error or fatal error */
897 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200898 break;
899 if (nb_oldpids == 0)
900 break;
901
902 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
903 * listening sockets. So on those platforms, it would be wiser to
904 * simply send SIGUSR1, which will not be undoable.
905 */
906 tell_old_pids(SIGTTOU);
907 /* give some time to old processes to stop listening */
908 w.tv_sec = 0;
909 w.tv_usec = 10*1000;
910 select(0, NULL, NULL, NULL, &w);
911 retry--;
912 }
913
914 /* Note: start_proxies() sends an alert when it fails. */
915 if (err != ERR_NONE) {
916 if (retry != MAX_START_RETRIES && nb_oldpids)
917 tell_old_pids(SIGTTIN);
918 exit(1);
919 }
920
921 if (listeners == 0) {
922 Alert("[%s.main()] No enabled listener found (check the <listen> keywords) ! Exiting.\n", argv[0]);
923 /* Note: we don't have to send anything to the old pids because we
924 * never stopped them. */
925 exit(1);
926 }
927
Willy Tarreaudd815982007-10-16 12:25:14 +0200928 if (protocol_bind_all() != ERR_NONE) {
929 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
930 protocol_unbind_all(); /* cleanup everything we can */
931 if (nb_oldpids)
932 tell_old_pids(SIGTTIN);
933 exit(1);
934 }
935
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936 /* prepare pause/play signals */
937 signal(SIGTTOU, sig_pause);
938 signal(SIGTTIN, sig_listen);
939
Willy Tarreaubaaee002006-06-26 02:48:02 +0200940 /* MODE_QUIET can inhibit alerts and warnings below this line */
941
942 global.mode &= ~MODE_STARTING;
943 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
944 /* detach from the tty */
945 fclose(stdin); fclose(stdout); fclose(stderr);
946 close(0); close(1); close(2);
947 }
948
949 /* open log & pid files before the chroot */
950 if (global.mode & MODE_DAEMON && global.pidfile != NULL) {
951 int pidfd;
952 unlink(global.pidfile);
953 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
954 if (pidfd < 0) {
955 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
956 if (nb_oldpids)
957 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +0200958 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200959 exit(1);
960 }
961 pidfile = fdopen(pidfd, "w");
962 }
963
Willy Tarreaubaaee002006-06-26 02:48:02 +0200964 /* ulimits */
965 if (!global.rlimit_nofile)
966 global.rlimit_nofile = global.maxsock;
967
968 if (global.rlimit_nofile) {
969 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
970 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
971 Warning("[%s.main()] Cannot raise FD limit to %d.\n", argv[0], global.rlimit_nofile);
972 }
973 }
974
975 if (global.rlimit_memmax) {
976 limit.rlim_cur = limit.rlim_max =
977 global.rlimit_memmax * 1048576 / global.nbproc;
978#ifdef RLIMIT_AS
979 if (setrlimit(RLIMIT_AS, &limit) == -1) {
980 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
981 argv[0], global.rlimit_memmax);
982 }
983#else
984 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
985 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
986 argv[0], global.rlimit_memmax);
987 }
988#endif
989 }
990
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100991#ifdef CONFIG_HAP_TCPSPLICE
992 if (global.last_checks & LSTCHK_TCPSPLICE) {
993 if (tcp_splice_start() < 0) {
994 Alert("[%s.main()] Cannot enable tcp_splice.\n"
995 " Make sure you have enough permissions and that the module is loadable.\n"
996 " Alternatively, you may disable the 'tcpsplice' options in the configuration.\n"
997 "", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +0200998 protocol_unbind_all();
Willy Tarreau6d1a9882007-01-07 02:03:04 +0100999 exit(1);
1000 }
1001 }
1002#endif
1003
Willy Tarreaub38651a2007-03-24 17:24:39 +01001004#ifdef CONFIG_HAP_CTTPROXY
1005 if (global.last_checks & LSTCHK_CTTPROXY) {
1006 int ret;
1007
1008 ret = check_cttproxy_version();
1009 if (ret < 0) {
1010 Alert("[%s.main()] Cannot enable cttproxy.\n%s",
1011 argv[0],
1012 (ret == -1) ? " Incorrect module version.\n"
1013 : " Make sure you have enough permissions and that the module is loaded.\n");
Willy Tarreaudd815982007-10-16 12:25:14 +02001014 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001015 exit(1);
1016 }
1017 }
1018#endif
1019
1020 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
1021 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
1022 "", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001023 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001024 exit(1);
1025 }
1026
Willy Tarreauf223cc02007-10-15 18:57:08 +02001027 /* chroot if needed */
1028 if (global.chroot != NULL) {
1029 if (chroot(global.chroot) == -1) {
1030 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
1031 if (nb_oldpids)
1032 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02001033 protocol_unbind_all();
Willy Tarreauf223cc02007-10-15 18:57:08 +02001034 exit(1);
1035 }
1036 chdir("/");
1037 }
1038
Willy Tarreaubaaee002006-06-26 02:48:02 +02001039 if (nb_oldpids)
1040 tell_old_pids(oldpids_sig);
1041
1042 /* Note that any error at this stage will be fatal because we will not
1043 * be able to restart the old pids.
1044 */
1045
1046 /* setgid / setuid */
1047 if (global.gid && setgid(global.gid) == -1) {
1048 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001049 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001050 exit(1);
1051 }
1052
1053 if (global.uid && setuid(global.uid) == -1) {
1054 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001055 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001056 exit(1);
1057 }
1058
1059 /* check ulimits */
1060 limit.rlim_cur = limit.rlim_max = 0;
1061 getrlimit(RLIMIT_NOFILE, &limit);
1062 if (limit.rlim_cur < global.maxsock) {
1063 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",
1064 argv[0], limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
1065 }
1066
1067 if (global.mode & MODE_DAEMON) {
1068 int ret = 0;
1069 int proc;
1070
1071 /* the father launches the required number of processes */
1072 for (proc = 0; proc < global.nbproc; proc++) {
1073 ret = fork();
1074 if (ret < 0) {
1075 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001076 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02001077 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001078 }
1079 else if (ret == 0) /* child breaks here */
1080 break;
1081 if (pidfile != NULL) {
1082 fprintf(pidfile, "%d\n", ret);
1083 fflush(pidfile);
1084 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01001085 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001086 }
1087 /* close the pidfile both in children and father */
1088 if (pidfile != NULL)
1089 fclose(pidfile);
1090 free(global.pidfile);
Krzysztof Oledzki56f1e8b2007-10-11 18:30:14 +02001091 global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001092
1093 if (proc == global.nbproc)
1094 exit(0); /* parent must leave */
1095
1096 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
1097 * that we can detach from the TTY. We MUST NOT do it in other cases since
1098 * it would have already be done, and 0-2 would have been affected to listening
1099 * sockets
1100 */
Willy Tarreau106cb762008-11-16 07:40:34 +01001101 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001102 /* detach from the tty */
1103 fclose(stdin); fclose(stdout); fclose(stderr);
1104 close(0); close(1); close(2); /* close all fd's */
Willy Tarreau106cb762008-11-16 07:40:34 +01001105 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001106 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
1107 }
1108 pid = getpid(); /* update child's pid */
1109 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02001110 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001111 }
1112
Willy Tarreaudd815982007-10-16 12:25:14 +02001113 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02001114 /*
1115 * That's it : the central polling loop. Run until we stop.
1116 */
1117 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001118
1119 /* Free all Hash Keys and all Hash elements */
1120 appsession_cleanup();
1121 /* Do some cleanup */
1122 deinit();
1123
1124 exit(0);
1125}
1126
1127
1128/*
1129 * Local variables:
1130 * c-indent-level: 8
1131 * c-basic-offset: 8
1132 * End:
1133 */