blob: 9096c91f2b662993878c7c44fcceb689f82fc309 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
4 * Copyright 2000-2006 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <fcntl.h>
14#include <unistd.h>
15#include <sys/types.h>
16#include <sys/socket.h>
17#include <sys/stat.h>
18
Willy Tarreau2dd0d472006-06-29 17:53:05 +020019#include <common/defaults.h>
20#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020021#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023
24#include <types/global.h>
25#include <types/polling.h>
26
27#include <proto/client.h>
28#include <proto/fd.h>
29#include <proto/log.h>
30#include <proto/proxy.h>
31
32
33int listeners; /* # of listeners */
34struct proxy *proxy = NULL; /* list of all existing proxies */
35
Willy Tarreau977b8e42006-12-29 14:19:17 +010036/*
37 * This function returns a string containing the type of the proxy in a format
38 * suitable for error messages, from its capabilities.
39 */
Willy Tarreau2b5652f2006-12-31 17:46:05 +010040const char *proxy_type_str(struct proxy *proxy)
Willy Tarreau977b8e42006-12-29 14:19:17 +010041{
Willy Tarreau2b5652f2006-12-31 17:46:05 +010042 int cap = proxy->cap;
Willy Tarreau977b8e42006-12-29 14:19:17 +010043 if ((cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
44 return "listener";
45 else if (cap & PR_CAP_FE)
46 return "frontend";
47 else if (cap & PR_CAP_BE)
48 return "backend";
49 else if (cap & PR_CAP_RS)
50 return "ruleset";
51 else
52 return "proxy";
53}
54
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
56/*
Willy Tarreau2ff76222007-04-09 19:29:56 +020057 * This function creates all proxy sockets. It should be done very early,
58 * typically before privileges are dropped. The sockets will be registered
59 * but not added to any fd_set, in order not to loose them across the fork().
60 * The proxies also start in IDLE state, meaning that it will be
61 * maintain_proxies that will finally complete their loading.
62 *
63 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
64 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +020065 */
66int start_proxies(int verbose)
67{
68 struct proxy *curproxy;
69 struct listener *listener;
70 int err = ERR_NONE;
71 int fd, pxerr;
72
73 for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) {
74 if (curproxy->state != PR_STNEW)
75 continue; /* already initialized */
76
77 pxerr = 0;
78 for (listener = curproxy->listen; listener != NULL; listener = listener->next) {
79 if (listener->fd != -1)
80 continue; /* already initialized */
81
82 if ((fd = socket(listener->addr.ss_family, SOCK_STREAM, IPPROTO_TCP)) == -1) {
83 if (verbose)
84 Alert("cannot create listening socket for proxy %s. Aborting.\n",
85 curproxy->id);
86 err |= ERR_RETRYABLE;
87 pxerr |= 1;
88 continue;
89 }
90
91 if (fd >= global.maxsock) {
92 Alert("socket(): not enough free sockets for proxy %s. Raise -n argument. Aborting.\n",
93 curproxy->id);
94 close(fd);
95 err |= ERR_FATAL;
96 pxerr |= 1;
97 break;
98 }
99
100 if ((fcntl(fd, F_SETFL, O_NONBLOCK) == -1) ||
101 (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY,
102 (char *) &one, sizeof(one)) == -1)) {
103 Alert("cannot make socket non-blocking for proxy %s. Aborting.\n",
104 curproxy->id);
105 close(fd);
106 err |= ERR_FATAL;
107 pxerr |= 1;
108 break;
109 }
110
111 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *) &one, sizeof(one)) == -1) {
112 Alert("cannot do so_reuseaddr for proxy %s. Continuing.\n",
113 curproxy->id);
114 }
115
116#ifdef SO_REUSEPORT
117 /* OpenBSD supports this. As it's present in old libc versions of Linux,
118 * it might return an error that we will silently ignore.
119 */
120 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (char *) &one, sizeof(one));
121#endif
122 if (bind(fd,
123 (struct sockaddr *)&listener->addr,
124 listener->addr.ss_family == AF_INET6 ?
125 sizeof(struct sockaddr_in6) :
126 sizeof(struct sockaddr_in)) == -1) {
127 if (verbose)
128 Alert("cannot bind socket for proxy %s. Aborting.\n",
129 curproxy->id);
130 close(fd);
131 err |= ERR_RETRYABLE;
132 pxerr |= 1;
133 continue;
134 }
135
136 if (listen(fd, curproxy->maxconn) == -1) {
137 if (verbose)
138 Alert("cannot listen to socket for proxy %s. Aborting.\n",
139 curproxy->id);
140 close(fd);
141 err |= ERR_RETRYABLE;
142 pxerr |= 1;
143 continue;
144 }
145
146 /* the socket is ready */
147 listener->fd = fd;
148
149 /* the function for the accept() event */
Willy Tarreau7a966482007-04-15 10:58:02 +0200150 fd_insert(fd);
Willy Tarreau54469402006-07-29 16:59:06 +0200151 fdtab[fd].cb[DIR_RD].f = &event_accept;
152 fdtab[fd].cb[DIR_WR].f = NULL; /* never called */
153 fdtab[fd].cb[DIR_RD].b = fdtab[fd].cb[DIR_WR].b = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200154 fdtab[fd].owner = (struct task *)curproxy; /* reference the proxy instead of a task */
155 fdtab[fd].state = FD_STLISTEN;
Willy Tarreau3d32d3a2007-04-15 11:31:05 +0200156 fdtab[fd].ev = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157 listeners++;
158 }
159
160 if (!pxerr) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200161 curproxy->state = PR_STIDLE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200162 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
163 }
164 }
165
166 return err;
167}
168
169
170/*
171 * this function enables proxies when there are enough free sessions,
172 * or stops them when the table is full. It is designed to be called from the
173 * select_loop(). It returns the time left before next expiration event
174 * during stop time, TIME_ETERNITY otherwise.
175 */
176int maintain_proxies(void)
177{
178 struct proxy *p;
179 struct listener *l;
180 int tleft; /* time left */
181
182 p = proxy;
183 tleft = TIME_ETERNITY; /* infinite time */
184
185 /* if there are enough free sessions, we'll activate proxies */
186 if (actconn < global.maxconn) {
187 while (p) {
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100188 if (p->feconn < p->maxconn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200189 if (p->state == PR_STIDLE) {
190 for (l = p->listen; l != NULL; l = l->next) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200191 EV_FD_SET(l->fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192 }
193 p->state = PR_STRUN;
194 }
195 }
196 else {
197 if (p->state == PR_STRUN) {
198 for (l = p->listen; l != NULL; l = l->next) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200199 EV_FD_CLR(l->fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200200 }
201 p->state = PR_STIDLE;
202 }
203 }
204 p = p->next;
205 }
206 }
207 else { /* block all proxies */
208 while (p) {
209 if (p->state == PR_STRUN) {
210 for (l = p->listen; l != NULL; l = l->next) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200211 EV_FD_CLR(l->fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200212 }
213 p->state = PR_STIDLE;
214 }
215 p = p->next;
216 }
217 }
218
219 if (stopping) {
220 p = proxy;
221 while (p) {
222 if (p->state != PR_STSTOPPED) {
223 int t;
224 t = tv_remain2(&now, &p->stop_time);
225 if (t == 0) {
226 Warning("Proxy %s stopped.\n", p->id);
227 send_log(p, LOG_WARNING, "Proxy %s stopped.\n", p->id);
228
229 for (l = p->listen; l != NULL; l = l->next) {
230 fd_delete(l->fd);
231 listeners--;
232 }
233 p->state = PR_STSTOPPED;
234 }
235 else {
236 tleft = MINTIME(t, tleft);
237 }
238 }
239 p = p->next;
240 }
241 }
242 return tleft;
243}
244
245
246/*
247 * this function disables health-check servers so that the process will quickly be ignored
248 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
249 * time will not be used since it would already not listen anymore to the socket.
250 */
251void soft_stop(void)
252{
253 struct proxy *p;
254
255 stopping = 1;
256 p = proxy;
257 tv_now(&now); /* else, the old time before select will be used */
258 while (p) {
259 if (p->state != PR_STSTOPPED) {
260 Warning("Stopping proxy %s in %d ms.\n", p->id, p->grace);
261 send_log(p, LOG_WARNING, "Stopping proxy %s in %d ms.\n", p->id, p->grace);
262 tv_delayfrom(&p->stop_time, &now, p->grace);
263 }
264 p = p->next;
265 }
266}
267
268
269/*
270 * Linux unbinds the listen socket after a SHUT_RD, and ignores SHUT_WR.
271 * Solaris refuses either shutdown().
272 * OpenBSD ignores SHUT_RD but closes upon SHUT_WR and refuses to rebind.
273 * So a common validation path involves SHUT_WR && listen && SHUT_RD.
274 * If disabling at least one listener returns an error, then the proxy
275 * state is set to PR_STERROR because we don't know how to resume from this.
276 */
277void pause_proxy(struct proxy *p)
278{
279 struct listener *l;
280 for (l = p->listen; l != NULL; l = l->next) {
281 if (shutdown(l->fd, SHUT_WR) == 0 &&
282 listen(l->fd, p->maxconn) == 0 &&
283 shutdown(l->fd, SHUT_RD) == 0) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200284 EV_FD_CLR(l->fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200285 if (p->state != PR_STERROR)
286 p->state = PR_STPAUSED;
287 }
288 else
289 p->state = PR_STERROR;
290 }
291}
292
293/*
294 * This function temporarily disables listening so that another new instance
295 * can start listening. It is designed to be called upon reception of a
296 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
297 * the proxy, or a SIGTTIN can be sent to listen again.
298 */
299void pause_proxies(void)
300{
301 int err;
302 struct proxy *p;
303
304 err = 0;
305 p = proxy;
306 tv_now(&now); /* else, the old time before select will be used */
307 while (p) {
308 if (p->state != PR_STERROR &&
309 p->state != PR_STSTOPPED &&
310 p->state != PR_STPAUSED) {
311 Warning("Pausing proxy %s.\n", p->id);
312 send_log(p, LOG_WARNING, "Pausing proxy %s.\n", p->id);
313 pause_proxy(p);
314 if (p->state != PR_STPAUSED) {
315 err |= 1;
316 Warning("Proxy %s failed to enter pause mode.\n", p->id);
317 send_log(p, LOG_WARNING, "Proxy %s failed to enter pause mode.\n", p->id);
318 }
319 }
320 p = p->next;
321 }
322 if (err) {
323 Warning("Some proxies refused to pause, performing soft stop now.\n");
324 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
325 soft_stop();
326 }
327}
328
329
330/*
331 * This function reactivates listening. This can be used after a call to
332 * sig_pause(), for example when a new instance has failed starting up.
333 * It is designed to be called upon reception of a SIGTTIN.
334 */
335void listen_proxies(void)
336{
337 struct proxy *p;
338 struct listener *l;
339
340 p = proxy;
341 tv_now(&now); /* else, the old time before select will be used */
342 while (p) {
343 if (p->state == PR_STPAUSED) {
344 Warning("Enabling proxy %s.\n", p->id);
345 send_log(p, LOG_WARNING, "Enabling proxy %s.\n", p->id);
346
347 for (l = p->listen; l != NULL; l = l->next) {
348 if (listen(l->fd, p->maxconn) == 0) {
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100349 if (actconn < global.maxconn && p->feconn < p->maxconn) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200350 EV_FD_SET(l->fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200351 p->state = PR_STRUN;
352 }
353 else
354 p->state = PR_STIDLE;
355 } else {
356 int port;
357
358 if (l->addr.ss_family == AF_INET6)
359 port = ntohs(((struct sockaddr_in6 *)(&l->addr))->sin6_port);
360 else
361 port = ntohs(((struct sockaddr_in *)(&l->addr))->sin_port);
362
363 Warning("Port %d busy while trying to enable proxy %s.\n",
364 port, p->id);
365 send_log(p, LOG_WARNING, "Port %d busy while trying to enable proxy %s.\n",
366 port, p->id);
367 /* Another port might have been enabled. Let's stop everything. */
368 pause_proxy(p);
369 break;
370 }
371 }
372 }
373 p = p->next;
374 }
375}
376
377
378/*
379 * Local variables:
380 * c-indent-level: 8
381 * c-basic-offset: 8
382 * End:
383 */