blob: c936bf05f7e610a85e2087db2d107dfc0dfd22ce [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, "
328 "cli=%d, srv=%d, cr=%d, cw=%d, sr=%d, sw=%d, "
329 "req=%d, rep=%d, clifd=%d\n",
Willy Tarreau42aae5c2007-04-29 17:43:56 +0200330 s, tv_ms_remain(&now, &t->expire),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200331 s->cli_state,
332 s->srv_state,
Willy Tarreauf161a342007-04-08 16:59:42 +0200333 EV_FD_ISSET(s->cli_fd, DIR_RD),
334 EV_FD_ISSET(s->cli_fd, DIR_WR),
335 EV_FD_ISSET(s->srv_fd, DIR_RD),
336 EV_FD_ISSET(s->srv_fd, DIR_WR),
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337 s->req->l, s->rep?s->rep->l:0, s->cli_fd
338 );
339 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200340#endif
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200341 /* dump memory usage then free everything possible */
342 dump_pools();
343 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200344}
345
346#ifdef DEBUG_MEMORY
347static void fast_stop(void)
348{
349 struct proxy *p;
350 p = proxy;
351 while (p) {
352 p->grace = 0;
353 p = p->next;
354 }
355 soft_stop();
356}
357
358void sig_int(int sig)
359{
360 /* This would normally be a hard stop,
361 but we want to be sure about deallocation,
362 and so on, so we do a soft stop with
363 0 GRACE time
364 */
365 fast_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200366 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200367 /* If we are killed twice, we decide to die*/
368 signal(sig, SIG_DFL);
369}
370
371void sig_term(int sig)
372{
373 /* This would normally be a hard stop,
374 but we want to be sure about deallocation,
375 and so on, so we do a soft stop with
376 0 GRACE time
377 */
378 fast_stop();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200379 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200380 /* If we are killed twice, we decide to die*/
381 signal(sig, SIG_DFL);
382}
383#endif
384
385
386/*
387 * This function initializes all the necessary variables. It only returns
388 * if everything is OK. If something fails, it exits.
389 */
390void init(int argc, char **argv)
391{
392 int i;
393 int arg_mode = 0; /* MODE_DEBUG, ... */
394 char *old_argv = *argv;
395 char *tmp;
396 char *cfg_pidfile = NULL;
397
Willy Tarreaubaaee002006-06-26 02:48:02 +0200398 /*
399 * Initialize the previously static variables.
400 */
401
402 totalconn = actconn = maxfd = listeners = stopping = 0;
403
404
405#ifdef HAPROXY_MEMMAX
406 global.rlimit_memmax = HAPROXY_MEMMAX;
407#endif
408
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200409 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 start_date = now;
411
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200412 init_task();
413 init_session();
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200414 init_buffer();
415 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +0100416 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417
418 cfg_polling_mechanism = POLL_USE_SELECT; /* select() is always available */
419#if defined(ENABLE_POLL)
420 cfg_polling_mechanism |= POLL_USE_POLL;
421#endif
422#if defined(ENABLE_EPOLL)
423 cfg_polling_mechanism |= POLL_USE_EPOLL;
424#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200425#if defined(ENABLE_SEPOLL)
426 cfg_polling_mechanism |= POLL_USE_SEPOLL;
427#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200428#if defined(ENABLE_KQUEUE)
429 cfg_polling_mechanism |= POLL_USE_KQUEUE;
430#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200431
432 pid = getpid();
433 progname = *argv;
434 while ((tmp = strchr(progname, '/')) != NULL)
435 progname = tmp + 1;
436
437 argc--; argv++;
438 while (argc > 0) {
439 char *flag;
440
441 if (**argv == '-') {
442 flag = *argv+1;
443
444 /* 1 arg */
445 if (*flag == 'v') {
446 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +0100447 if (flag[1] == 'v') /* -vv */
448 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200449 exit(0);
450 }
451#if defined(ENABLE_EPOLL)
452 else if (*flag == 'd' && flag[1] == 'e')
453 cfg_polling_mechanism &= ~POLL_USE_EPOLL;
454#endif
Willy Tarreaude99e992007-04-16 00:53:59 +0200455#if defined(ENABLE_SEPOLL)
456 else if (*flag == 'd' && flag[1] == 's')
457 cfg_polling_mechanism &= ~POLL_USE_SEPOLL;
458#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200459#if defined(ENABLE_POLL)
460 else if (*flag == 'd' && flag[1] == 'p')
461 cfg_polling_mechanism &= ~POLL_USE_POLL;
462#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +0200463#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200464 else if (*flag == 'd' && flag[1] == 'k')
465 cfg_polling_mechanism &= ~POLL_USE_KQUEUE;
466#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200467 else if (*flag == 'V')
468 arg_mode |= MODE_VERBOSE;
469 else if (*flag == 'd' && flag[1] == 'b')
470 arg_mode |= MODE_FOREGROUND;
471 else if (*flag == 'd')
472 arg_mode |= MODE_DEBUG;
473 else if (*flag == 'c')
474 arg_mode |= MODE_CHECK;
475 else if (*flag == 'D')
476 arg_mode |= MODE_DAEMON | MODE_QUIET;
477 else if (*flag == 'q')
478 arg_mode |= MODE_QUIET;
479 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
480 /* list of pids to finish ('f') or terminate ('t') */
481
482 if (flag[1] == 'f')
483 oldpids_sig = SIGUSR1; /* finish then exit */
484 else
485 oldpids_sig = SIGTERM; /* terminate immediately */
486 argv++; argc--;
487
488 if (argc > 0) {
489 oldpids = calloc(argc, sizeof(int));
490 while (argc > 0) {
491 oldpids[nb_oldpids] = atol(*argv);
492 if (oldpids[nb_oldpids] <= 0)
493 usage(old_argv);
494 argc--; argv++;
495 nb_oldpids++;
496 }
497 }
498 }
499 else { /* >=2 args */
500 argv++; argc--;
501 if (argc == 0)
502 usage(old_argv);
503
504 switch (*flag) {
505 case 'n' : cfg_maxconn = atol(*argv); break;
506 case 'm' : global.rlimit_memmax = atol(*argv); break;
507 case 'N' : cfg_maxpconn = atol(*argv); break;
508 case 'f' : cfg_cfgfile = *argv; break;
509 case 'p' : cfg_pidfile = *argv; break;
510 default: usage(old_argv);
511 }
512 }
513 }
514 else
515 usage(old_argv);
516 argv++; argc--;
517 }
518
519 global.mode = MODE_STARTING | /* during startup, we want most of the alerts */
520 (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_VERBOSE
521 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
522
523 if (!cfg_cfgfile)
524 usage(old_argv);
525
526 gethostname(hostname, MAX_HOSTNAME_LEN);
527
528 have_appsession = 0;
529 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
530 if (readcfgfile(cfg_cfgfile) < 0) {
531 Alert("Error reading configuration file : %s\n", cfg_cfgfile);
532 exit(1);
533 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200534
Willy Tarreaubaaee002006-06-26 02:48:02 +0200535 if (have_appsession)
536 appsession_init();
537
538 if (global.mode & MODE_CHECK) {
539 qfprintf(stdout, "Configuration file is valid : %s\n", cfg_cfgfile);
540 exit(0);
541 }
542
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +0200543 if (start_checks() < 0)
544 exit(1);
545
Willy Tarreaubaaee002006-06-26 02:48:02 +0200546 if (cfg_maxconn > 0)
547 global.maxconn = cfg_maxconn;
548
549 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200550 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200551 global.pidfile = strdup(cfg_pidfile);
552 }
553
554 if (global.maxconn == 0)
555 global.maxconn = DEFAULT_MAXCONN;
556
557 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
558
Willy Tarreau1db37712007-06-03 17:16:49 +0200559 if (global.tune.maxpollevents <= 0)
560 global.tune.maxpollevents = MAX_POLL_EVENTS;
561
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100562 if (global.tune.maxaccept <= 0) {
563 if (global.nbproc > 1)
564 global.tune.maxaccept = 8; /* leave some conns to other processes */
565 else
566 global.tune.maxaccept = -1; /* accept all incoming conns */
567 }
568
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
570 /* command line debug mode inhibits configuration mode */
571 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
572 }
573 global.mode |= (arg_mode & (MODE_DAEMON | MODE_FOREGROUND | MODE_QUIET |
Willy Tarreaufbee7132007-10-18 13:53:22 +0200574 MODE_VERBOSE | MODE_DEBUG ));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200575
576 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
577 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
578 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
579 }
580
581 if ((global.nbproc > 1) && !(global.mode & MODE_DAEMON)) {
582 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
583 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
584 global.nbproc = 1;
585 }
586
587 if (global.nbproc < 1)
588 global.nbproc = 1;
589
Willy Tarreaubaaee002006-06-26 02:48:02 +0200590 fdtab = (struct fdtab *)calloc(1,
591 sizeof(struct fdtab) * (global.maxsock));
592 for (i = 0; i < global.maxsock; i++) {
593 fdtab[i].state = FD_STCLOSE;
594 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200595
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200596 /*
597 * Note: we could register external pollers here.
598 * Built-in pollers have been registered before main().
599 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200600
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200601 if (!(cfg_polling_mechanism & POLL_USE_KQUEUE))
602 disable_poller("kqueue");
603
Willy Tarreau4f60f162007-04-08 16:39:58 +0200604 if (!(cfg_polling_mechanism & POLL_USE_EPOLL))
605 disable_poller("epoll");
606
Willy Tarreaude99e992007-04-16 00:53:59 +0200607 if (!(cfg_polling_mechanism & POLL_USE_SEPOLL))
608 disable_poller("sepoll");
609
Willy Tarreau4f60f162007-04-08 16:39:58 +0200610 if (!(cfg_polling_mechanism & POLL_USE_POLL))
611 disable_poller("poll");
612
613 if (!(cfg_polling_mechanism & POLL_USE_SELECT))
614 disable_poller("select");
615
616 /* Note: we could disable any poller by name here */
617
Willy Tarreau2ff76222007-04-09 19:29:56 +0200618 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
619 list_pollers(stderr);
620
Willy Tarreau4f60f162007-04-08 16:39:58 +0200621 if (!init_pollers()) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200622 Alert("No polling mechanism available.\n");
Willy Tarreau4f60f162007-04-08 16:39:58 +0200623 exit(1);
624 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200625 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
626 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200627 }
628
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629}
630
631void deinit(void)
632{
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200633 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634 struct cap_hdr *h,*h_next;
635 struct server *s,*s_next;
636 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200637 struct acl_cond *cond, *condb;
638 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200639 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200640 struct switching_rule *rule, *ruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200641 struct redirect_rule *rdr, *rdrb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200642 struct uri_auth *uap, *ua = NULL;
643 struct user_auth *user;
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200644 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200645
Willy Tarreaubaaee002006-06-26 02:48:02 +0200646 while (p) {
Willy Tarreaua534fea2008-08-03 12:19:50 +0200647 free(p->id);
648 free(p->check_req);
649 free(p->cookie_name);
650 free(p->cookie_domain);
651 free(p->url_param_name);
652 free(p->capture_name);
653 free(p->monitor_uri);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200654
Willy Tarreaua534fea2008-08-03 12:19:50 +0200655 for (i = 0; i < HTTP_ERR_SIZE; i++)
656 free(p->errmsg[i].str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200657
Willy Tarreaua534fea2008-08-03 12:19:50 +0200658 for (i = 0; i < p->nb_reqadd; i++)
659 free(p->req_add[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200660
Willy Tarreaua534fea2008-08-03 12:19:50 +0200661 for (i = 0; i < p->nb_rspadd; i++)
662 free(p->rsp_add[i]);
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200663
664 list_for_each_entry_safe(cond, condb, &p->block_cond, list) {
665 LIST_DEL(&cond->list);
666 prune_acl_cond(cond);
667 free(cond);
668 }
669
Willy Tarreaub80c2302007-11-30 20:51:32 +0100670 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
671 LIST_DEL(&cond->list);
672 prune_acl_cond(cond);
673 free(cond);
674 }
675
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200676 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200677 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200678 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200679 free((regex_t *)exp->preg);
680 }
681
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200682 if (exp->replace && exp->action != ACT_SETBE)
683 free((char *)exp->replace);
684 expb = exp;
685 exp = exp->next;
686 free(expb);
687 }
688
689 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200690 if (exp->preg) {
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200691 regfree((regex_t *)exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200692 free((regex_t *)exp->preg);
693 }
694
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200695 if (exp->replace && exp->action != ACT_SETBE)
696 free((char *)exp->replace);
697 expb = exp;
698 exp = exp->next;
699 free(expb);
700 }
701
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200702 /* build a list of unique uri_auths */
703 if (!ua)
704 ua = p->uri_auth;
705 else {
706 /* check if p->uri_auth is unique */
707 for (uap = ua; uap; uap=uap->next)
708 if (uap == p->uri_auth)
709 break;
710
Willy Tarreauaccc4e12008-06-24 11:14:45 +0200711 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200712 /* add it, if it is */
713 p->uri_auth->next = ua;
714 ua = p->uri_auth;
715 }
716 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200717
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200718 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
719 LIST_DEL(&acl->list);
720 prune_acl(acl);
721 free(acl);
722 }
723
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200724 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
725 LIST_DEL(&rule->list);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200726 prune_acl_cond(rule->cond);
727 free(rule->cond);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200728 free(rule);
729 }
730
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200731 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
732 LIST_DEL(&rdr->list);
733 prune_acl_cond(rdr->cond);
734 free(rdr->cond);
735 free(rdr->rdr_str);
736 free(rdr);
737 }
738
Willy Tarreaua534fea2008-08-03 12:19:50 +0200739 free(p->appsession_name);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200740
741 h = p->req_cap;
742 while (h) {
743 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200744 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200745 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200746 free(h);
747 h = h_next;
748 }/* end while(h) */
749
750 h = p->rsp_cap;
751 while (h) {
752 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +0200753 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200754 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200755 free(h);
756 h = h_next;
757 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200758
Willy Tarreaubaaee002006-06-26 02:48:02 +0200759 s = p->srv;
760 while (s) {
761 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200762
763 if (s->check) {
764 task_delete(s->check);
765 task_free(s->check);
766 }
767
Willy Tarreaua534fea2008-08-03 12:19:50 +0200768 free(s->id);
769 free(s->cookie);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200770 free(s);
771 s = s_next;
772 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200773
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774 l = p->listen;
775 while (l) {
776 l_next = l->next;
777 free(l);
778 l = l_next;
779 }/* end while(l) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200780
Willy Tarreaucf7f3202007-05-13 22:46:04 +0200781 pool_destroy2(p->req_cap_pool);
782 pool_destroy2(p->rsp_cap_pool);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200783 pool_destroy2(p->hdr_idx_pool);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200784 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200785 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200786 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200787 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +0200788
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200789 while (ua) {
790 uap = ua;
791 ua = ua->next;
792
Willy Tarreaua534fea2008-08-03 12:19:50 +0200793 free(uap->uri_prefix);
794 free(uap->auth_realm);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200795
796 while (uap->users) {
797 user = uap->users;
798 uap->users = uap->users->next;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200799 free(user->user_pwd);
800 free(user);
801 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200802 free(uap);
803 }
804
Willy Tarreaudd815982007-10-16 12:25:14 +0200805 protocol_unbind_all();
806
Willy Tarreaua534fea2008-08-03 12:19:50 +0200807 free(global.chroot); global.chroot = NULL;
808 free(global.pidfile); global.pidfile = NULL;
809 free(fdtab); fdtab = NULL;
810 free(oldpids); oldpids = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +0200811
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200812 pool_destroy2(pool2_session);
Willy Tarreau7341d942007-05-13 19:56:02 +0200813 pool_destroy2(pool2_buffer);
Willy Tarreau332f8bf2007-05-13 21:36:56 +0200814 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200815 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +0200816 pool_destroy2(pool2_capture);
Willy Tarreau63963c62007-05-13 21:29:55 +0200817 pool_destroy2(pool2_appsess);
Willy Tarreaue4d7e552007-05-13 20:19:55 +0200818 pool_destroy2(pool2_pendconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819
820 if (have_appsession) {
Willy Tarreau63963c62007-05-13 21:29:55 +0200821 pool_destroy2(apools.serverid);
822 pool_destroy2(apools.sessid);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200823 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200824
825 deinit_pollers();
826
Willy Tarreaubaaee002006-06-26 02:48:02 +0200827} /* end deinit() */
828
829/* sends the signal <sig> to all pids found in <oldpids> */
830static void tell_old_pids(int sig)
831{
832 int p;
833 for (p = 0; p < nb_oldpids; p++)
834 kill(oldpids[p], sig);
835}
836
Willy Tarreau4f60f162007-04-08 16:39:58 +0200837/*
838 * Runs the polling loop
839 *
840 * FIXME:
841 * - we still use 'listeners' to check whether we want to stop or not.
842 *
843 */
844void run_poll_loop()
845{
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200846 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200847
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200848 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200849 while (1) {
Willy Tarreau58b458d2008-06-29 22:40:23 +0200850 /* Check if we can expire some tasks */
851 wake_expired_tasks(&next);
852
853 /* Process a few tasks */
Willy Tarreaud825eef2007-05-12 22:35:00 +0200854 process_runnable_tasks(&next);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200855
Willy Tarreau58b458d2008-06-29 22:40:23 +0200856 /* maintain all proxies in a consistent state. This should quickly
857 * become a task because it becomes expensive when there are huge
858 * numbers of proxies. */
859 maintain_proxies(&next);
860
Willy Tarreau4f60f162007-04-08 16:39:58 +0200861 /* stop when there's no connection left and we don't allow them anymore */
862 if (!actconn && listeners == 0)
863 break;
864
Willy Tarreau58b458d2008-06-29 22:40:23 +0200865 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200866 cur_poller.poll(&cur_poller, next);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200867 }
868}
869
870
Willy Tarreaubaaee002006-06-26 02:48:02 +0200871int main(int argc, char **argv)
872{
873 int err, retry;
874 struct rlimit limit;
875 FILE *pidfile = NULL;
876 init(argc, argv);
877
878 signal(SIGQUIT, dump);
879 signal(SIGUSR1, sig_soft_stop);
880 signal(SIGHUP, sig_dump_state);
881#ifdef DEBUG_MEMORY
882 signal(SIGINT, sig_int);
883 signal(SIGTERM, sig_term);
884#endif
885
886 /* on very high loads, a sigpipe sometimes happen just between the
887 * getsockopt() which tells "it's OK to write", and the following write :-(
888 */
889#ifndef MSG_NOSIGNAL
890 signal(SIGPIPE, SIG_IGN);
891#endif
892
893 /* We will loop at most 100 times with 10 ms delay each time.
894 * That's at most 1 second. We only send a signal to old pids
895 * if we cannot grab at least one port.
896 */
897 retry = MAX_START_RETRIES;
898 err = ERR_NONE;
899 while (retry >= 0) {
900 struct timeval w;
901 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +0100902 /* exit the loop on no error or fatal error */
903 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200904 break;
905 if (nb_oldpids == 0)
906 break;
907
908 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
909 * listening sockets. So on those platforms, it would be wiser to
910 * simply send SIGUSR1, which will not be undoable.
911 */
912 tell_old_pids(SIGTTOU);
913 /* give some time to old processes to stop listening */
914 w.tv_sec = 0;
915 w.tv_usec = 10*1000;
916 select(0, NULL, NULL, NULL, &w);
917 retry--;
918 }
919
920 /* Note: start_proxies() sends an alert when it fails. */
921 if (err != ERR_NONE) {
922 if (retry != MAX_START_RETRIES && nb_oldpids)
923 tell_old_pids(SIGTTIN);
924 exit(1);
925 }
926
927 if (listeners == 0) {
928 Alert("[%s.main()] No enabled listener found (check the <listen> keywords) ! Exiting.\n", argv[0]);
929 /* Note: we don't have to send anything to the old pids because we
930 * never stopped them. */
931 exit(1);
932 }
933
Willy Tarreaudd815982007-10-16 12:25:14 +0200934 if (protocol_bind_all() != ERR_NONE) {
935 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
936 protocol_unbind_all(); /* cleanup everything we can */
937 if (nb_oldpids)
938 tell_old_pids(SIGTTIN);
939 exit(1);
940 }
941
Willy Tarreaubaaee002006-06-26 02:48:02 +0200942 /* prepare pause/play signals */
943 signal(SIGTTOU, sig_pause);
944 signal(SIGTTIN, sig_listen);
945
946 if (global.mode & MODE_DAEMON) {
947 global.mode &= ~MODE_VERBOSE;
948 global.mode |= MODE_QUIET;
949 }
950
951 /* MODE_QUIET can inhibit alerts and warnings below this line */
952
953 global.mode &= ~MODE_STARTING;
954 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
955 /* detach from the tty */
956 fclose(stdin); fclose(stdout); fclose(stderr);
957 close(0); close(1); close(2);
958 }
959
960 /* open log & pid files before the chroot */
961 if (global.mode & MODE_DAEMON && global.pidfile != NULL) {
962 int pidfd;
963 unlink(global.pidfile);
964 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
965 if (pidfd < 0) {
966 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
967 if (nb_oldpids)
968 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +0200969 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970 exit(1);
971 }
972 pidfile = fdopen(pidfd, "w");
973 }
974
Willy Tarreaubaaee002006-06-26 02:48:02 +0200975 /* ulimits */
976 if (!global.rlimit_nofile)
977 global.rlimit_nofile = global.maxsock;
978
979 if (global.rlimit_nofile) {
980 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
981 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
982 Warning("[%s.main()] Cannot raise FD limit to %d.\n", argv[0], global.rlimit_nofile);
983 }
984 }
985
986 if (global.rlimit_memmax) {
987 limit.rlim_cur = limit.rlim_max =
988 global.rlimit_memmax * 1048576 / global.nbproc;
989#ifdef RLIMIT_AS
990 if (setrlimit(RLIMIT_AS, &limit) == -1) {
991 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
992 argv[0], global.rlimit_memmax);
993 }
994#else
995 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
996 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
997 argv[0], global.rlimit_memmax);
998 }
999#endif
1000 }
1001
Willy Tarreau6d1a9882007-01-07 02:03:04 +01001002#ifdef CONFIG_HAP_TCPSPLICE
1003 if (global.last_checks & LSTCHK_TCPSPLICE) {
1004 if (tcp_splice_start() < 0) {
1005 Alert("[%s.main()] Cannot enable tcp_splice.\n"
1006 " Make sure you have enough permissions and that the module is loadable.\n"
1007 " Alternatively, you may disable the 'tcpsplice' options in the configuration.\n"
1008 "", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001009 protocol_unbind_all();
Willy Tarreau6d1a9882007-01-07 02:03:04 +01001010 exit(1);
1011 }
1012 }
1013#endif
1014
Willy Tarreaub38651a2007-03-24 17:24:39 +01001015#ifdef CONFIG_HAP_CTTPROXY
1016 if (global.last_checks & LSTCHK_CTTPROXY) {
1017 int ret;
1018
1019 ret = check_cttproxy_version();
1020 if (ret < 0) {
1021 Alert("[%s.main()] Cannot enable cttproxy.\n%s",
1022 argv[0],
1023 (ret == -1) ? " Incorrect module version.\n"
1024 : " Make sure you have enough permissions and that the module is loaded.\n");
Willy Tarreaudd815982007-10-16 12:25:14 +02001025 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001026 exit(1);
1027 }
1028 }
1029#endif
1030
1031 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
1032 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
1033 "", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001034 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01001035 exit(1);
1036 }
1037
Willy Tarreauf223cc02007-10-15 18:57:08 +02001038 /* chroot if needed */
1039 if (global.chroot != NULL) {
1040 if (chroot(global.chroot) == -1) {
1041 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
1042 if (nb_oldpids)
1043 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02001044 protocol_unbind_all();
Willy Tarreauf223cc02007-10-15 18:57:08 +02001045 exit(1);
1046 }
1047 chdir("/");
1048 }
1049
Willy Tarreaubaaee002006-06-26 02:48:02 +02001050 if (nb_oldpids)
1051 tell_old_pids(oldpids_sig);
1052
1053 /* Note that any error at this stage will be fatal because we will not
1054 * be able to restart the old pids.
1055 */
1056
1057 /* setgid / setuid */
1058 if (global.gid && setgid(global.gid) == -1) {
1059 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001060 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001061 exit(1);
1062 }
1063
1064 if (global.uid && setuid(global.uid) == -1) {
1065 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Willy Tarreaudd815982007-10-16 12:25:14 +02001066 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001067 exit(1);
1068 }
1069
1070 /* check ulimits */
1071 limit.rlim_cur = limit.rlim_max = 0;
1072 getrlimit(RLIMIT_NOFILE, &limit);
1073 if (limit.rlim_cur < global.maxsock) {
1074 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",
1075 argv[0], limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
1076 }
1077
1078 if (global.mode & MODE_DAEMON) {
1079 int ret = 0;
1080 int proc;
1081
1082 /* the father launches the required number of processes */
1083 for (proc = 0; proc < global.nbproc; proc++) {
1084 ret = fork();
1085 if (ret < 0) {
1086 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02001087 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02001088 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001089 }
1090 else if (ret == 0) /* child breaks here */
1091 break;
1092 if (pidfile != NULL) {
1093 fprintf(pidfile, "%d\n", ret);
1094 fflush(pidfile);
1095 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01001096 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001097 }
1098 /* close the pidfile both in children and father */
1099 if (pidfile != NULL)
1100 fclose(pidfile);
1101 free(global.pidfile);
Krzysztof Oledzki56f1e8b2007-10-11 18:30:14 +02001102 global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001103
1104 if (proc == global.nbproc)
1105 exit(0); /* parent must leave */
1106
1107 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
1108 * that we can detach from the TTY. We MUST NOT do it in other cases since
1109 * it would have already be done, and 0-2 would have been affected to listening
1110 * sockets
1111 */
1112 if (!(global.mode & MODE_QUIET)) {
1113 /* detach from the tty */
1114 fclose(stdin); fclose(stdout); fclose(stderr);
1115 close(0); close(1); close(2); /* close all fd's */
1116 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
1117 }
1118 pid = getpid(); /* update child's pid */
1119 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02001120 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001121 }
1122
Willy Tarreaudd815982007-10-16 12:25:14 +02001123 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02001124 /*
1125 * That's it : the central polling loop. Run until we stop.
1126 */
1127 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001128
1129 /* Free all Hash Keys and all Hash elements */
1130 appsession_cleanup();
1131 /* Do some cleanup */
1132 deinit();
1133
1134 exit(0);
1135}
1136
1137
1138/*
1139 * Local variables:
1140 * c-indent-level: 8
1141 * c-basic-offset: 8
1142 * End:
1143 */