blob: a76ca6b04357aba45c840c602591c3fe44706eb1 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau272adea2014-03-31 10:39:59 +020014#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020015#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016
17#include <common/cfgparse.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020018#include <common/config.h>
Willy Tarreaudff55432012-10-10 17:51:05 +020019#include <common/errors.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010020#include <common/namespace.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020021#include <common/time.h>
22
Willy Tarreau272adea2014-03-31 10:39:59 +020023#include <types/global.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020024#include <types/dns.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020025
Simon Hormanb1900d52015-01-30 11:22:54 +090026#include <proto/checks.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020027#include <proto/port_range.h>
28#include <proto/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020029#include <proto/queue.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020030#include <proto/raw_sock.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020031#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020032#include <proto/stream.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020033#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020034#include <proto/dns.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020035
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020036static void srv_update_state(struct server *srv, int version, char **params);
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
Willy Tarreau21faa912012-10-10 08:27:36 +020038/* List head of all known server keywords */
39static struct srv_kw_list srv_keywords = {
40 .list = LIST_HEAD_INIT(srv_keywords.list)
41};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020042
Simon Hormana3608442013-11-01 16:46:15 +090043int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020044{
Willy Tarreau892337c2014-05-13 23:41:20 +020045 if ((s->state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020046 return s->down_time;
47
48 return now.tv_sec - s->last_change + s->down_time;
49}
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050051int srv_lastsession(const struct server *s)
52{
53 if (s->counters.last_sess)
54 return now.tv_sec - s->counters.last_sess;
55
56 return -1;
57}
58
Simon Horman4a741432013-02-23 15:35:38 +090059int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020060{
Simon Horman4a741432013-02-23 15:35:38 +090061 const struct server *s = check->server;
62
Willy Tarreauff5ae352013-12-11 20:36:34 +010063 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090064 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010065
Willy Tarreau892337c2014-05-13 23:41:20 +020066 if ((s->state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090067 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010068
Simon Horman4a741432013-02-23 15:35:38 +090069 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010070}
71
Willy Tarreau21faa912012-10-10 08:27:36 +020072/*
73 * Registers the server keyword list <kwl> as a list of valid keywords for next
74 * parsing sessions.
75 */
76void srv_register_keywords(struct srv_kw_list *kwl)
77{
78 LIST_ADDQ(&srv_keywords.list, &kwl->list);
79}
80
81/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
82 * keyword is found with a NULL ->parse() function, then an attempt is made to
83 * find one with a valid ->parse() function. This way it is possible to declare
84 * platform-dependant, known keywords as NULL, then only declare them as valid
85 * if some options are met. Note that if the requested keyword contains an
86 * opening parenthesis, everything from this point is ignored.
87 */
88struct srv_kw *srv_find_kw(const char *kw)
89{
90 int index;
91 const char *kwend;
92 struct srv_kw_list *kwl;
93 struct srv_kw *ret = NULL;
94
95 kwend = strchr(kw, '(');
96 if (!kwend)
97 kwend = kw + strlen(kw);
98
99 list_for_each_entry(kwl, &srv_keywords.list, list) {
100 for (index = 0; kwl->kw[index].kw != NULL; index++) {
101 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
102 kwl->kw[index].kw[kwend-kw] == 0) {
103 if (kwl->kw[index].parse)
104 return &kwl->kw[index]; /* found it !*/
105 else
106 ret = &kwl->kw[index]; /* may be OK */
107 }
108 }
109 }
110 return ret;
111}
112
113/* Dumps all registered "server" keywords to the <out> string pointer. The
114 * unsupported keywords are only dumped if their supported form was not
115 * found.
116 */
117void srv_dump_kws(char **out)
118{
119 struct srv_kw_list *kwl;
120 int index;
121
122 *out = NULL;
123 list_for_each_entry(kwl, &srv_keywords.list, list) {
124 for (index = 0; kwl->kw[index].kw != NULL; index++) {
125 if (kwl->kw[index].parse ||
126 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
127 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
128 kwl->scope,
129 kwl->kw[index].kw,
130 kwl->kw[index].skip ? " <arg>" : "",
131 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
132 kwl->kw[index].parse ? "" : " (not supported)");
133 }
134 }
135 }
136}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100137
Willy Tarreaudff55432012-10-10 17:51:05 +0200138/* parse the "id" server keyword */
139static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
140{
141 struct eb32_node *node;
142
143 if (!*args[*cur_arg + 1]) {
144 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
145 return ERR_ALERT | ERR_FATAL;
146 }
147
148 newsrv->puid = atol(args[*cur_arg + 1]);
149 newsrv->conf.id.key = newsrv->puid;
150
151 if (newsrv->puid <= 0) {
152 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
153 return ERR_ALERT | ERR_FATAL;
154 }
155
156 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
157 if (node) {
158 struct server *target = container_of(node, struct server, conf.id);
159 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
160 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
161 target->id);
162 return ERR_ALERT | ERR_FATAL;
163 }
164
165 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200166 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200167 return 0;
168}
169
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200170/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200171 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200172 * shutdown.
173 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200174void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200175{
Willy Tarreau87b09662015-04-03 00:22:06 +0200176 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200177
Willy Tarreau87b09662015-04-03 00:22:06 +0200178 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
179 if (stream->srv_conn == srv)
180 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200181}
182
183/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200184 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200185 * the reason for the shutdown.
186 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200187void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200188{
189 struct server *srv;
190
191 for (srv = px->srv; srv != NULL; srv = srv->next)
192 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200193 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200194}
195
Willy Tarreaubda92272014-05-20 21:55:30 +0200196/* Appends some information to a message string related to a server going UP or
197 * DOWN. If both <forced> and <reason> are null and the server tracks another
198 * one, a "via" information will be provided to know where the status came from.
199 * If <reason> is non-null, the entire string will be appended after a comma and
200 * a space (eg: to report some information from the check that changed the state).
Willy Tarreau87b09662015-04-03 00:22:06 +0200201 * If <xferred> is non-negative, some information about requeued streams are
Willy Tarreaubda92272014-05-20 21:55:30 +0200202 * provided.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200203 */
Willy Tarreaubda92272014-05-20 21:55:30 +0200204void srv_append_status(struct chunk *msg, struct server *s, const char *reason, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200205{
Willy Tarreaubda92272014-05-20 21:55:30 +0200206 if (reason)
207 chunk_appendf(msg, ", %s", reason);
208 else if (!forced && s->track)
209 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200210
211 if (xferred >= 0) {
212 if (s->state == SRV_ST_STOPPED)
213 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
214 " %d sessions active, %d requeued, %d remaining in queue",
215 s->proxy->srv_act, s->proxy->srv_bck,
216 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
217 s->cur_sess, xferred, s->nbpend);
218 else
219 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
220 " %d sessions requeued, %d total in queue",
221 s->proxy->srv_act, s->proxy->srv_bck,
222 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
223 xferred, s->nbpend);
224 }
225}
226
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200227/* Marks server <s> down, regardless of its checks' statuses, notifies by all
228 * available means, recounts the remaining servers on the proxy and transfers
Willy Tarreau87b09662015-04-03 00:22:06 +0200229 * queued streams whenever possible to other servers. It automatically
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200230 * recomputes the number of servers, but not the map. Maintenance servers are
231 * ignored. It reports <reason> if non-null as the reason for going down. Note
232 * that it makes use of the trash to build the log strings, so <reason> must
233 * not be placed there.
234 */
235void srv_set_stopped(struct server *s, const char *reason)
236{
237 struct server *srv;
238 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
239 int srv_was_stopping = (s->state == SRV_ST_STOPPING);
Simon Horman64e34162015-02-06 11:11:57 +0900240 int log_level;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200241 int xferred;
242
243 if ((s->admin & SRV_ADMF_MAINT) || s->state == SRV_ST_STOPPED)
244 return;
245
246 s->last_change = now.tv_sec;
247 s->state = SRV_ST_STOPPED;
248 if (s->proxy->lbprm.set_server_status_down)
249 s->proxy->lbprm.set_server_status_down(s);
250
251 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200252 srv_shutdown_streams(s, SF_ERR_DOWN);
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200253
Willy Tarreau87b09662015-04-03 00:22:06 +0200254 /* we might have streams queued on this server and waiting for
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200255 * a connection. Those which are redispatchable will be queued
256 * to another server or to the proxy itself.
257 */
258 xferred = pendconn_redistribute(s);
259
260 chunk_printf(&trash,
261 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
262 s->proxy->id, s->id);
263
264 srv_append_status(&trash, s, reason, xferred, 0);
265 Warning("%s.\n", trash.str);
266
267 /* we don't send an alert if the server was previously paused */
Simon Horman64e34162015-02-06 11:11:57 +0900268 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
269 send_log(s->proxy, log_level, "%s.\n", trash.str);
270 send_email_alert(s, log_level, "%s", trash.str);
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200271
272 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
273 set_backend_down(s->proxy);
274
275 s->counters.down_trans++;
276
277 for (srv = s->trackers; srv; srv = srv->tracknext)
278 srv_set_stopped(srv, NULL);
279}
280
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200281/* Marks server <s> up regardless of its checks' statuses and provided it isn't
282 * in maintenance. Notifies by all available means, recounts the remaining
283 * servers on the proxy and tries to grab requests from the proxy. It
284 * automatically recomputes the number of servers, but not the map. Maintenance
285 * servers are ignored. It reports <reason> if non-null as the reason for going
286 * up. Note that it makes use of the trash to build the log strings, so <reason>
287 * must not be placed there.
288 */
289void srv_set_running(struct server *s, const char *reason)
290{
291 struct server *srv;
292 int xferred;
293
294 if (s->admin & SRV_ADMF_MAINT)
295 return;
296
297 if (s->state == SRV_ST_STARTING || s->state == SRV_ST_RUNNING)
298 return;
299
300 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
301 if (s->proxy->last_change < now.tv_sec) // ignore negative times
302 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
303 s->proxy->last_change = now.tv_sec;
304 }
305
306 if (s->state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
307 s->down_time += now.tv_sec - s->last_change;
308
309 s->last_change = now.tv_sec;
310
311 s->state = SRV_ST_STARTING;
312 if (s->slowstart > 0)
313 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
314 else
315 s->state = SRV_ST_RUNNING;
316
317 server_recalc_eweight(s);
318
319 /* If the server is set with "on-marked-up shutdown-backup-sessions",
320 * and it's not a backup server and its effective weight is > 0,
Willy Tarreau87b09662015-04-03 00:22:06 +0200321 * then it can accept new connections, so we shut down all streams
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200322 * on all backup servers.
323 */
324 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
325 !(s->flags & SRV_F_BACKUP) && s->eweight)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200326 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200327
328 /* check if we can handle some connections queued at the proxy. We
329 * will take as many as we can handle.
330 */
331 xferred = pendconn_grab_from_px(s);
332
333 chunk_printf(&trash,
334 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
335 s->proxy->id, s->id);
336
337 srv_append_status(&trash, s, reason, xferred, 0);
338 Warning("%s.\n", trash.str);
339 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman4cd477f2015-04-30 13:10:34 +0900340 send_email_alert(s, LOG_NOTICE, "%s", trash.str);
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200341
342 for (srv = s->trackers; srv; srv = srv->tracknext)
343 srv_set_running(srv, NULL);
344}
345
Willy Tarreau8eb77842014-05-21 13:54:57 +0200346/* Marks server <s> stopping regardless of its checks' statuses and provided it
347 * isn't in maintenance. Notifies by all available means, recounts the remaining
348 * servers on the proxy and tries to grab requests from the proxy. It
349 * automatically recomputes the number of servers, but not the map. Maintenance
350 * servers are ignored. It reports <reason> if non-null as the reason for going
351 * up. Note that it makes use of the trash to build the log strings, so <reason>
352 * must not be placed there.
353 */
354void srv_set_stopping(struct server *s, const char *reason)
355{
356 struct server *srv;
357 int xferred;
358
359 if (s->admin & SRV_ADMF_MAINT)
360 return;
361
362 if (s->state == SRV_ST_STOPPING)
363 return;
364
365 s->last_change = now.tv_sec;
366 s->state = SRV_ST_STOPPING;
367 if (s->proxy->lbprm.set_server_status_down)
368 s->proxy->lbprm.set_server_status_down(s);
369
Willy Tarreau87b09662015-04-03 00:22:06 +0200370 /* we might have streams queued on this server and waiting for
Willy Tarreau8eb77842014-05-21 13:54:57 +0200371 * a connection. Those which are redispatchable will be queued
372 * to another server or to the proxy itself.
373 */
374 xferred = pendconn_redistribute(s);
375
376 chunk_printf(&trash,
377 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
378 s->proxy->id, s->id);
379
380 srv_append_status(&trash, s, reason, xferred, 0);
381
382 Warning("%s.\n", trash.str);
383 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
384
385 if (!s->proxy->srv_bck && !s->proxy->srv_act)
386 set_backend_down(s->proxy);
387
388 for (srv = s->trackers; srv; srv = srv->tracknext)
389 srv_set_stopping(srv, NULL);
390}
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200391
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200392/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
393 * enforce either maint mode or drain mode. It is not allowed to set more than
394 * one flag at once. The equivalent "inherited" flag is propagated to all
395 * tracking servers. Maintenance mode disables health checks (but not agent
396 * checks). When either the flag is already set or no flag is passed, nothing
397 * is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200398 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200399void srv_set_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200400{
401 struct check *check = &s->check;
402 struct server *srv;
403 int xferred;
404
405 if (!mode)
406 return;
407
408 /* stop going down as soon as we meet a server already in the same state */
409 if (s->admin & mode)
410 return;
411
412 s->admin |= mode;
413
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200414 /* stop going down if the equivalent flag was already present (forced or inherited) */
415 if (((mode & SRV_ADMF_MAINT) && (s->admin & ~mode & SRV_ADMF_MAINT)) ||
416 ((mode & SRV_ADMF_DRAIN) && (s->admin & ~mode & SRV_ADMF_DRAIN)))
417 return;
418
419 /* Maintenance must also disable health checks */
420 if (mode & SRV_ADMF_MAINT) {
421 if (s->check.state & CHK_ST_ENABLED) {
422 s->check.state |= CHK_ST_PAUSED;
423 check->health = 0;
424 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200425
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200426 if (s->state == SRV_ST_STOPPED) { /* server was already down */
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200427 chunk_printf(&trash,
428 "%sServer %s/%s was DOWN and now enters maintenance",
429 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
430
Willy Tarreaubda92272014-05-20 21:55:30 +0200431 srv_append_status(&trash, s, NULL, -1, (mode & SRV_ADMF_FMAINT));
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200432
433 Warning("%s.\n", trash.str);
434 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
435 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200436 else { /* server was still running */
437 int srv_was_stopping = (s->state == SRV_ST_STOPPING) || (s->admin & SRV_ADMF_DRAIN);
438 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
439
440 check->health = 0; /* failure */
441 s->last_change = now.tv_sec;
442 s->state = SRV_ST_STOPPED;
443 if (s->proxy->lbprm.set_server_status_down)
444 s->proxy->lbprm.set_server_status_down(s);
445
446 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200447 srv_shutdown_streams(s, SF_ERR_DOWN);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200448
Willy Tarreau87b09662015-04-03 00:22:06 +0200449 /* we might have streams queued on this server and waiting for
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200450 * a connection. Those which are redispatchable will be queued
451 * to another server or to the proxy itself.
452 */
453 xferred = pendconn_redistribute(s);
454
455 chunk_printf(&trash,
456 "%sServer %s/%s is going DOWN for maintenance",
457 s->flags & SRV_F_BACKUP ? "Backup " : "",
458 s->proxy->id, s->id);
459
460 srv_append_status(&trash, s, NULL, xferred, (mode & SRV_ADMF_FMAINT));
461
462 Warning("%s.\n", trash.str);
463 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n", trash.str);
464
465 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
466 set_backend_down(s->proxy);
467
468 s->counters.down_trans++;
469 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200470 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200471
472 /* drain state is applied only if not yet in maint */
473 if ((mode & SRV_ADMF_DRAIN) && !(s->admin & SRV_ADMF_MAINT)) {
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200474 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
475
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200476 s->last_change = now.tv_sec;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200477 if (s->proxy->lbprm.set_server_status_down)
478 s->proxy->lbprm.set_server_status_down(s);
479
Willy Tarreau87b09662015-04-03 00:22:06 +0200480 /* we might have streams queued on this server and waiting for
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200481 * a connection. Those which are redispatchable will be queued
482 * to another server or to the proxy itself.
483 */
484 xferred = pendconn_redistribute(s);
485
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200486 chunk_printf(&trash, "%sServer %s/%s enters drain state",
487 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200488
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200489 srv_append_status(&trash, s, NULL, xferred, (mode & SRV_ADMF_FDRAIN));
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200490
491 Warning("%s.\n", trash.str);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200492 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Simon Horman4cd477f2015-04-30 13:10:34 +0900493 send_email_alert(s, LOG_NOTICE, "%s", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200494
495 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
496 set_backend_down(s->proxy);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200497 }
498
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200499 /* compute the inherited flag to propagate */
500 if (mode & SRV_ADMF_MAINT)
501 mode = SRV_ADMF_IMAINT;
502 else if (mode & SRV_ADMF_DRAIN)
503 mode = SRV_ADMF_IDRAIN;
504
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200505 for (srv = s->trackers; srv; srv = srv->tracknext)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200506 srv_set_admin_flag(srv, mode);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200507}
508
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200509/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
510 * stop enforcing either maint mode or drain mode. It is not allowed to set more
511 * than one flag at once. The equivalent "inherited" flag is propagated to all
512 * tracking servers. Leaving maintenance mode re-enables health checks. When
513 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200514 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200515void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200516{
517 struct check *check = &s->check;
518 struct server *srv;
519 int xferred = -1;
520
521 if (!mode)
522 return;
523
524 /* stop going down as soon as we see the flag is not there anymore */
525 if (!(s->admin & mode))
526 return;
527
528 s->admin &= ~mode;
529
530 if (s->admin & SRV_ADMF_MAINT) {
531 /* remaining in maintenance mode, let's inform precisely about the
532 * situation.
533 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200534 if (mode & SRV_ADMF_FMAINT) {
535 chunk_printf(&trash,
536 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
537 s->flags & SRV_F_BACKUP ? "Backup " : "",
538 s->proxy->id, s->id);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200539
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200540 if (s->track) /* normally it's mandatory here */
541 chunk_appendf(&trash, " via %s/%s",
542 s->track->proxy->id, s->track->id);
543 Warning("%s.\n", trash.str);
544 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
545 }
546 else if (mode & SRV_ADMF_IMAINT) {
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200547 chunk_printf(&trash,
548 "%sServer %s/%s remains in forced maintenance",
549 s->flags & SRV_F_BACKUP ? "Backup " : "",
550 s->proxy->id, s->id);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200551 Warning("%s.\n", trash.str);
552 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
553 }
554 /* don't report anything when leaving drain mode and remaining in maintenance */
555 }
556 else if (mode & SRV_ADMF_MAINT) {
557 /* OK here we're leaving maintenance, we have many things to check,
558 * because the server might possibly be coming back up depending on
559 * its state. In practice, leaving maintenance means that we should
560 * immediately turn to UP (more or less the slowstart) under the
561 * following conditions :
562 * - server is neither checked nor tracked
563 * - server tracks another server which is not checked
564 * - server tracks another server which is already up
565 * Which sums up as something simpler :
566 * "either the tracking server is up or the server's checks are disabled
567 * or up". Otherwise we only re-enable health checks. There's a special
568 * case associated to the stopping state which can be inherited. Note
569 * that the server might still be in drain mode, which is naturally dealt
570 * with by the lower level functions.
571 */
572
573 if (s->check.state & CHK_ST_ENABLED) {
574 s->check.state &= ~CHK_ST_PAUSED;
575 check->health = check->rise; /* start OK but check immediately */
576 }
577
578 if ((!s->track || s->track->state != SRV_ST_STOPPED) &&
579 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
580 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
581 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
582 if (s->proxy->last_change < now.tv_sec) // ignore negative times
583 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
584 s->proxy->last_change = now.tv_sec;
585 }
586
587 if (s->last_change < now.tv_sec) // ignore negative times
588 s->down_time += now.tv_sec - s->last_change;
589 s->last_change = now.tv_sec;
590
591 if (s->track && s->track->state == SRV_ST_STOPPING)
592 s->state = SRV_ST_STOPPING;
593 else {
594 s->state = SRV_ST_STARTING;
595 if (s->slowstart > 0)
596 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
597 else
598 s->state = SRV_ST_RUNNING;
599 }
600
601 server_recalc_eweight(s);
602
603 /* If the server is set with "on-marked-up shutdown-backup-sessions",
604 * and it's not a backup server and its effective weight is > 0,
Willy Tarreau87b09662015-04-03 00:22:06 +0200605 * then it can accept new connections, so we shut down all streams
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200606 * on all backup servers.
607 */
608 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
609 !(s->flags & SRV_F_BACKUP) && s->eweight)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200610 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200611
612 /* check if we can handle some connections queued at the proxy. We
613 * will take as many as we can handle.
614 */
615 xferred = pendconn_grab_from_px(s);
616 }
617
618 if (mode & SRV_ADMF_FMAINT) {
619 chunk_printf(&trash,
620 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
621 s->flags & SRV_F_BACKUP ? "Backup " : "",
622 s->proxy->id, s->id,
623 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP",
624 (s->admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200625 }
626 else {
627 chunk_printf(&trash,
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200628 "%sServer %s/%s is %s/%s (leaving maintenance)",
629 s->flags & SRV_F_BACKUP ? "Backup " : "",
630 s->proxy->id, s->id,
631 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP",
632 (s->admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
633 srv_append_status(&trash, s, NULL, xferred, 0);
634 }
635 Warning("%s.\n", trash.str);
636 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
637 }
638 else if ((mode & SRV_ADMF_DRAIN) && (s->admin & SRV_ADMF_DRAIN)) {
639 /* remaining in drain mode after removing one of its flags */
640
641 if (mode & SRV_ADMF_FDRAIN) {
642 chunk_printf(&trash,
643 "%sServer %s/%s is leaving forced drain but remains in drain mode",
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200644 s->flags & SRV_F_BACKUP ? "Backup " : "",
645 s->proxy->id, s->id);
646
647 if (s->track) /* normally it's mandatory here */
648 chunk_appendf(&trash, " via %s/%s",
649 s->track->proxy->id, s->track->id);
650 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200651 else {
652 chunk_printf(&trash,
653 "%sServer %s/%s remains in forced drain mode",
654 s->flags & SRV_F_BACKUP ? "Backup " : "",
655 s->proxy->id, s->id);
656 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200657 Warning("%s.\n", trash.str);
658 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200659 }
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200660 else if (mode & SRV_ADMF_DRAIN) {
661 /* OK completely leaving drain mode */
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200662 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
663 if (s->proxy->last_change < now.tv_sec) // ignore negative times
664 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
665 s->proxy->last_change = now.tv_sec;
666 }
667
668 if (s->last_change < now.tv_sec) // ignore negative times
669 s->down_time += now.tv_sec - s->last_change;
670 s->last_change = now.tv_sec;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200671 server_recalc_eweight(s);
672
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200673 if (mode & SRV_ADMF_FDRAIN) {
674 chunk_printf(&trash,
675 "%sServer %s/%s is %s (leaving forced drain)",
676 s->flags & SRV_F_BACKUP ? "Backup " : "",
677 s->proxy->id, s->id,
678 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP");
679 }
680 else {
681 chunk_printf(&trash,
682 "%sServer %s/%s is %s (leaving drain)",
683 s->flags & SRV_F_BACKUP ? "Backup " : "",
684 s->proxy->id, s->id,
685 (s->state == SRV_ST_STOPPED) ? "DOWN" : "UP");
686 if (s->track) /* normally it's mandatory here */
687 chunk_appendf(&trash, " via %s/%s",
688 s->track->proxy->id, s->track->id);
689 }
690 Warning("%s.\n", trash.str);
691 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200692 }
693
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200694 /* stop going down if the equivalent flag is still present (forced or inherited) */
695 if (((mode & SRV_ADMF_MAINT) && (s->admin & SRV_ADMF_MAINT)) ||
696 ((mode & SRV_ADMF_DRAIN) && (s->admin & SRV_ADMF_DRAIN)))
697 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200698
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200699 if (mode & SRV_ADMF_MAINT)
700 mode = SRV_ADMF_IMAINT;
701 else if (mode & SRV_ADMF_DRAIN)
702 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200703
704 for (srv = s->trackers; srv; srv = srv->tracknext)
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +0200705 srv_clr_admin_flag(srv, mode);
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200706}
707
Willy Tarreaudff55432012-10-10 17:51:05 +0200708/* Note: must not be declared <const> as its list will be overwritten.
709 * Please take care of keeping this list alphabetically sorted, doing so helps
710 * all code contributors.
711 * Optional keywords are also declared with a NULL ->parse() function so that
712 * the config parser can report an appropriate error when a known keyword was
713 * not enabled.
714 */
715static struct srv_kw_list srv_kws = { "ALL", { }, {
716 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
717 { NULL, NULL, 0 },
718}};
719
720__attribute__((constructor))
721static void __listener_init(void)
722{
723 srv_register_keywords(&srv_kws);
724}
725
Willy Tarreau004e0452013-11-21 11:22:01 +0100726/* Recomputes the server's eweight based on its state, uweight, the current time,
727 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
728 * state is automatically disabled if the time is elapsed.
729 */
730void server_recalc_eweight(struct server *sv)
731{
732 struct proxy *px = sv->proxy;
733 unsigned w;
734
735 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
736 /* go to full throttle if the slowstart interval is reached */
Willy Tarreau892337c2014-05-13 23:41:20 +0200737 if (sv->state == SRV_ST_STARTING)
738 sv->state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +0100739 }
740
741 /* We must take care of not pushing the server to full throttle during slow starts.
742 * It must also start immediately, at least at the minimal step when leaving maintenance.
743 */
Willy Tarreau892337c2014-05-13 23:41:20 +0200744 if ((sv->state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +0100745 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
746 else
747 w = px->lbprm.wdiv;
748
749 sv->eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
750
751 /* now propagate the status change to any LB algorithms */
752 if (px->lbprm.update_server_eweight)
753 px->lbprm.update_server_eweight(sv);
Willy Tarreau9943d312014-05-22 16:20:59 +0200754 else if (srv_is_usable(sv)) {
Willy Tarreau004e0452013-11-21 11:22:01 +0100755 if (px->lbprm.set_server_status_up)
756 px->lbprm.set_server_status_up(sv);
757 }
758 else {
759 if (px->lbprm.set_server_status_down)
760 px->lbprm.set_server_status_down(sv);
761 }
762}
763
Willy Tarreaubaaee002006-06-26 02:48:02 +0200764/*
Simon Horman7d09b9a2013-02-12 10:45:51 +0900765 * Parses weight_str and configures sv accordingly.
766 * Returns NULL on success, error message string otherwise.
767 */
768const char *server_parse_weight_change_request(struct server *sv,
769 const char *weight_str)
770{
771 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +0900772 long int w;
773 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900774
775 px = sv->proxy;
776
777 /* if the weight is terminated with '%', it is set relative to
778 * the initial weight, otherwise it is absolute.
779 */
780 if (!*weight_str)
781 return "Require <weight> or <weight%>.\n";
782
Simon Hormanb796afa2013-02-12 10:45:53 +0900783 w = strtol(weight_str, &end, 10);
784 if (end == weight_str)
785 return "Empty weight string empty or preceded by garbage";
786 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +0900787 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +0900788 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +0900789 /* Avoid integer overflow */
790 if (w > 25600)
791 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900792 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +0900793 if (w > 256)
794 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +0900795 }
796 else if (w < 0 || w > 256)
797 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +0900798 else if (end[0] != '\0')
799 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +0900800
801 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
802 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
803
804 sv->uweight = w;
Willy Tarreau004e0452013-11-21 11:22:01 +0100805 server_recalc_eweight(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +0900806
807 return NULL;
808}
809
Baptiste Assmann3d8f8312015-04-13 22:54:33 +0200810/*
811 * Parses <addr_str> and configures <sv> accordingly.
812 * Returns:
813 * - error string on error
814 * - NULL on success
815 */
816const char *server_parse_addr_change_request(struct server *sv,
817 const char *addr_str)
818{
819 unsigned char ip[INET6_ADDRSTRLEN];
820
821 if (inet_pton(AF_INET6, addr_str, ip)) {
822 update_server_addr(sv, ip, AF_INET6, "stats command\n");
823 return NULL;
824 }
825 if (inet_pton(AF_INET, addr_str, ip)) {
826 update_server_addr(sv, ip, AF_INET, "stats command\n");
827 return NULL;
828 }
829
830 return "Could not understand IP address format.\n";
831}
832
Willy Tarreau272adea2014-03-31 10:39:59 +0200833int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy)
834{
835 struct server *newsrv = NULL;
836 const char *err;
837 char *errmsg = NULL;
838 int err_code = 0;
839 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +0200840 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +0200841
842 if (!strcmp(args[0], "server") || !strcmp(args[0], "default-server")) { /* server address */
843 int cur_arg;
844 short realport = 0;
845 int do_agent = 0, do_check = 0, defsrv = (*args[0] == 'd');
846
847 if (!defsrv && curproxy == defproxy) {
848 Alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
849 err_code |= ERR_ALERT | ERR_FATAL;
850 goto out;
851 }
852 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
853 err_code |= ERR_ALERT | ERR_FATAL;
854
855 if (!*args[2]) {
856 Alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
857 file, linenum, args[0]);
858 err_code |= ERR_ALERT | ERR_FATAL;
859 goto out;
860 }
861
862 err = invalid_char(args[1]);
863 if (err && !defsrv) {
864 Alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
865 file, linenum, *err, args[1]);
866 err_code |= ERR_ALERT | ERR_FATAL;
867 goto out;
868 }
869
870 if (!defsrv) {
871 struct sockaddr_storage *sk;
872 int port1, port2;
873 struct protocol *proto;
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200874 struct dns_resolution *curr_resolution;
Willy Tarreau272adea2014-03-31 10:39:59 +0200875
876 if ((newsrv = (struct server *)calloc(1, sizeof(struct server))) == NULL) {
877 Alert("parsing [%s:%d] : out of memory.\n", file, linenum);
878 err_code |= ERR_ALERT | ERR_ABORT;
879 goto out;
880 }
881
882 /* the servers are linked backwards first */
883 newsrv->next = curproxy->srv;
884 curproxy->srv = newsrv;
885 newsrv->proxy = curproxy;
886 newsrv->conf.file = strdup(file);
887 newsrv->conf.line = linenum;
888
889 newsrv->obj_type = OBJ_TYPE_SERVER;
890 LIST_INIT(&newsrv->actconns);
891 LIST_INIT(&newsrv->pendconns);
Willy Tarreau600802a2015-08-04 17:19:06 +0200892 LIST_INIT(&newsrv->priv_conns);
Willy Tarreau173a1c62015-08-05 10:31:57 +0200893 LIST_INIT(&newsrv->idle_conns);
Willy Tarreau7017cb02015-08-05 16:35:23 +0200894 LIST_INIT(&newsrv->safe_conns);
Willy Tarreau272adea2014-03-31 10:39:59 +0200895 do_check = 0;
896 do_agent = 0;
Willy Tarreauc93cd162014-05-13 15:54:22 +0200897 newsrv->flags = 0;
Willy Tarreau20125212014-05-13 19:44:56 +0200898 newsrv->admin = 0;
Willy Tarreau892337c2014-05-13 23:41:20 +0200899 newsrv->state = SRV_ST_RUNNING; /* early server setup */
Willy Tarreau272adea2014-03-31 10:39:59 +0200900 newsrv->last_change = now.tv_sec;
901 newsrv->id = strdup(args[1]);
902
903 /* several ways to check the port component :
904 * - IP => port=+0, relative (IPv4 only)
905 * - IP: => port=+0, relative
906 * - IP:N => port=N, absolute
907 * - IP:+N => port=+N, relative
908 * - IP:-N => port=-N, relative
909 */
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200910 sk = str2sa_range(args[2], &port1, &port2, &errmsg, NULL, &fqdn, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +0200911 if (!sk) {
912 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
913 err_code |= ERR_ALERT | ERR_FATAL;
914 goto out;
915 }
916
917 proto = protocol_by_family(sk->ss_family);
918 if (!proto || !proto->connect) {
919 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
920 file, linenum, args[0], args[1]);
921 err_code |= ERR_ALERT | ERR_FATAL;
922 goto out;
923 }
924
925 if (!port1 || !port2) {
926 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +0200927 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +0200928 }
929 else if (port1 != port2) {
930 /* port range */
931 Alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
932 file, linenum, args[0], args[1], args[2]);
933 err_code |= ERR_ALERT | ERR_FATAL;
934 goto out;
935 }
936 else {
937 /* used by checks */
938 realport = port1;
939 }
940
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200941 /* save hostname and create associated name resolution */
Willy Tarreau07101d52015-09-08 16:16:35 +0200942 newsrv->hostname = fqdn;
943 if (!fqdn)
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200944 goto skip_name_resolution;
945
Willy Tarreau07101d52015-09-08 16:16:35 +0200946 fqdn = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200947 if ((curr_resolution = calloc(1, sizeof(struct dns_resolution))) == NULL)
948 goto skip_name_resolution;
949
950 curr_resolution->hostname_dn_len = dns_str_to_dn_label_len(newsrv->hostname);
951 if ((curr_resolution->hostname_dn = calloc(curr_resolution->hostname_dn_len + 1, sizeof(char))) == NULL)
952 goto skip_name_resolution;
953 if ((dns_str_to_dn_label(newsrv->hostname, curr_resolution->hostname_dn, curr_resolution->hostname_dn_len + 1)) == NULL) {
954 Alert("parsing [%s:%d] : Invalid hostname '%s'\n",
955 file, linenum, args[2]);
956 err_code |= ERR_ALERT | ERR_FATAL;
957 goto out;
958 }
959
960 curr_resolution->requester = newsrv;
961 curr_resolution->requester_cb = snr_resolution_cb;
962 curr_resolution->requester_error_cb = snr_resolution_error_cb;
963 curr_resolution->status = RSLV_STATUS_NONE;
964 curr_resolution->step = RSLV_STEP_NONE;
965 /* a first resolution has been done by the configuration parser */
Baptiste Assmannf046f112015-08-27 22:12:46 +0200966 curr_resolution->last_resolution = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +0200967 newsrv->resolution = curr_resolution;
968
969 skip_name_resolution:
Willy Tarreau272adea2014-03-31 10:39:59 +0200970 newsrv->addr = *sk;
Cyril Bonté9ce13112014-11-15 22:41:27 +0100971 newsrv->xprt = newsrv->check.xprt = newsrv->agent.xprt = &raw_sock;
Willy Tarreau272adea2014-03-31 10:39:59 +0200972
Thierry FOURNIERbb2ae642015-01-14 11:31:49 +0100973 if (!protocol_by_family(newsrv->addr.ss_family)) {
Willy Tarreau272adea2014-03-31 10:39:59 +0200974 Alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
975 file, linenum, newsrv->addr.ss_family, args[2]);
976 err_code |= ERR_ALERT | ERR_FATAL;
977 goto out;
978 }
979
980 newsrv->check.use_ssl = curproxy->defsrv.check.use_ssl;
981 newsrv->check.port = curproxy->defsrv.check.port;
982 newsrv->check.inter = curproxy->defsrv.check.inter;
983 newsrv->check.fastinter = curproxy->defsrv.check.fastinter;
984 newsrv->check.downinter = curproxy->defsrv.check.downinter;
985 newsrv->agent.use_ssl = curproxy->defsrv.agent.use_ssl;
986 newsrv->agent.port = curproxy->defsrv.agent.port;
James Brown55f9ff12015-10-21 18:19:05 -0700987 if (curproxy->defsrv.agent.send_string != NULL)
988 newsrv->agent.send_string = strdup(curproxy->defsrv.agent.send_string);
989 newsrv->agent.send_string_len = curproxy->defsrv.agent.send_string_len;
Willy Tarreau272adea2014-03-31 10:39:59 +0200990 newsrv->agent.inter = curproxy->defsrv.agent.inter;
991 newsrv->agent.fastinter = curproxy->defsrv.agent.fastinter;
992 newsrv->agent.downinter = curproxy->defsrv.agent.downinter;
993 newsrv->maxqueue = curproxy->defsrv.maxqueue;
994 newsrv->minconn = curproxy->defsrv.minconn;
995 newsrv->maxconn = curproxy->defsrv.maxconn;
996 newsrv->slowstart = curproxy->defsrv.slowstart;
997 newsrv->onerror = curproxy->defsrv.onerror;
998 newsrv->onmarkeddown = curproxy->defsrv.onmarkeddown;
999 newsrv->onmarkedup = curproxy->defsrv.onmarkedup;
1000 newsrv->consecutive_errors_limit
1001 = curproxy->defsrv.consecutive_errors_limit;
1002#ifdef OPENSSL
1003 newsrv->use_ssl = curproxy->defsrv.use_ssl;
1004#endif
1005 newsrv->uweight = newsrv->iweight
1006 = curproxy->defsrv.iweight;
1007
1008 newsrv->check.status = HCHK_STATUS_INI;
1009 newsrv->check.rise = curproxy->defsrv.check.rise;
1010 newsrv->check.fall = curproxy->defsrv.check.fall;
1011 newsrv->check.health = newsrv->check.rise; /* up, but will fall down at first failure */
1012 newsrv->check.server = newsrv;
Simon Hormane16c1b32015-01-30 11:22:57 +09001013 newsrv->check.tcpcheck_rules = &curproxy->tcpcheck_rules;
Willy Tarreau272adea2014-03-31 10:39:59 +02001014
1015 newsrv->agent.status = HCHK_STATUS_INI;
1016 newsrv->agent.rise = curproxy->defsrv.agent.rise;
1017 newsrv->agent.fall = curproxy->defsrv.agent.fall;
1018 newsrv->agent.health = newsrv->agent.rise; /* up, but will fall down at first failure */
1019 newsrv->agent.server = newsrv;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001020 newsrv->resolver_family_priority = curproxy->defsrv.resolver_family_priority;
1021 if (newsrv->resolver_family_priority == AF_UNSPEC)
1022 newsrv->resolver_family_priority = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02001023
1024 cur_arg = 3;
1025 } else {
1026 newsrv = &curproxy->defsrv;
1027 cur_arg = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001028 newsrv->resolver_family_priority = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02001029 }
1030
1031 while (*args[cur_arg]) {
1032 if (!strcmp(args[cur_arg], "agent-check")) {
1033 global.maxsock++;
1034 do_agent = 1;
1035 cur_arg += 1;
1036 } else if (!strcmp(args[cur_arg], "agent-inter")) {
1037 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1038 if (err) {
1039 Alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
1040 file, linenum, *err, newsrv->id);
1041 err_code |= ERR_ALERT | ERR_FATAL;
1042 goto out;
1043 }
1044 if (val <= 0) {
1045 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1046 file, linenum, val, args[cur_arg], newsrv->id);
1047 err_code |= ERR_ALERT | ERR_FATAL;
1048 goto out;
1049 }
1050 newsrv->agent.inter = val;
1051 cur_arg += 2;
1052 }
1053 else if (!strcmp(args[cur_arg], "agent-port")) {
1054 global.maxsock++;
1055 newsrv->agent.port = atol(args[cur_arg + 1]);
1056 cur_arg += 2;
1057 }
James Brown55f9ff12015-10-21 18:19:05 -07001058 else if (!strcmp(args[cur_arg], "agent-send")) {
1059 global.maxsock++;
1060 free(newsrv->agent.send_string);
1061 newsrv->agent.send_string_len = strlen(args[cur_arg + 1]);
1062 newsrv->agent.send_string = calloc(1, newsrv->agent.send_string_len + 1);
1063 memcpy(newsrv->agent.send_string, args[cur_arg + 1], newsrv->agent.send_string_len);
1064 cur_arg += 2;
1065 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001066 else if (!defsrv && !strcmp(args[cur_arg], "cookie")) {
1067 newsrv->cookie = strdup(args[cur_arg + 1]);
1068 newsrv->cklen = strlen(args[cur_arg + 1]);
1069 cur_arg += 2;
1070 }
1071 else if (!defsrv && !strcmp(args[cur_arg], "redir")) {
1072 newsrv->rdr_pfx = strdup(args[cur_arg + 1]);
1073 newsrv->rdr_len = strlen(args[cur_arg + 1]);
1074 cur_arg += 2;
1075 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001076 else if (!strcmp(args[cur_arg], "resolvers")) {
1077 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
1078 cur_arg += 2;
1079 }
1080 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
1081 if (!strcmp(args[cur_arg + 1], "ipv4"))
1082 newsrv->resolver_family_priority = AF_INET;
1083 else if (!strcmp(args[cur_arg + 1], "ipv6"))
1084 newsrv->resolver_family_priority = AF_INET6;
1085 else {
1086 Alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
1087 file, linenum, args[cur_arg]);
1088 err_code |= ERR_ALERT | ERR_FATAL;
1089 goto out;
1090 }
1091 cur_arg += 2;
1092 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001093 else if (!strcmp(args[cur_arg], "rise")) {
1094 if (!*args[cur_arg + 1]) {
1095 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1096 file, linenum, args[cur_arg]);
1097 err_code |= ERR_ALERT | ERR_FATAL;
1098 goto out;
1099 }
1100
1101 newsrv->check.rise = atol(args[cur_arg + 1]);
1102 if (newsrv->check.rise <= 0) {
1103 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1104 file, linenum, args[cur_arg]);
1105 err_code |= ERR_ALERT | ERR_FATAL;
1106 goto out;
1107 }
1108
1109 if (newsrv->check.health)
1110 newsrv->check.health = newsrv->check.rise;
1111 cur_arg += 2;
1112 }
1113 else if (!strcmp(args[cur_arg], "fall")) {
1114 newsrv->check.fall = atol(args[cur_arg + 1]);
1115
1116 if (!*args[cur_arg + 1]) {
1117 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1118 file, linenum, args[cur_arg]);
1119 err_code |= ERR_ALERT | ERR_FATAL;
1120 goto out;
1121 }
1122
1123 if (newsrv->check.fall <= 0) {
1124 Alert("parsing [%s:%d]: '%s' has to be > 0.\n",
1125 file, linenum, args[cur_arg]);
1126 err_code |= ERR_ALERT | ERR_FATAL;
1127 goto out;
1128 }
1129
1130 cur_arg += 2;
1131 }
1132 else if (!strcmp(args[cur_arg], "inter")) {
1133 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1134 if (err) {
1135 Alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
1136 file, linenum, *err, newsrv->id);
1137 err_code |= ERR_ALERT | ERR_FATAL;
1138 goto out;
1139 }
1140 if (val <= 0) {
1141 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1142 file, linenum, val, args[cur_arg], newsrv->id);
1143 err_code |= ERR_ALERT | ERR_FATAL;
1144 goto out;
1145 }
1146 newsrv->check.inter = val;
1147 cur_arg += 2;
1148 }
1149 else if (!strcmp(args[cur_arg], "fastinter")) {
1150 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1151 if (err) {
1152 Alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
1153 file, linenum, *err, newsrv->id);
1154 err_code |= ERR_ALERT | ERR_FATAL;
1155 goto out;
1156 }
1157 if (val <= 0) {
1158 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1159 file, linenum, val, args[cur_arg], newsrv->id);
1160 err_code |= ERR_ALERT | ERR_FATAL;
1161 goto out;
1162 }
1163 newsrv->check.fastinter = val;
1164 cur_arg += 2;
1165 }
1166 else if (!strcmp(args[cur_arg], "downinter")) {
1167 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1168 if (err) {
1169 Alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
1170 file, linenum, *err, newsrv->id);
1171 err_code |= ERR_ALERT | ERR_FATAL;
1172 goto out;
1173 }
1174 if (val <= 0) {
1175 Alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
1176 file, linenum, val, args[cur_arg], newsrv->id);
1177 err_code |= ERR_ALERT | ERR_FATAL;
1178 goto out;
1179 }
1180 newsrv->check.downinter = val;
1181 cur_arg += 2;
1182 }
1183 else if (!defsrv && !strcmp(args[cur_arg], "addr")) {
1184 struct sockaddr_storage *sk;
1185 int port1, port2;
1186 struct protocol *proto;
1187
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +02001188 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL, NULL, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +02001189 if (!sk) {
1190 Alert("parsing [%s:%d] : '%s' : %s\n",
1191 file, linenum, args[cur_arg], errmsg);
1192 err_code |= ERR_ALERT | ERR_FATAL;
1193 goto out;
1194 }
1195
1196 proto = protocol_by_family(sk->ss_family);
1197 if (!proto || !proto->connect) {
1198 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1199 file, linenum, args[cur_arg], args[cur_arg + 1]);
1200 err_code |= ERR_ALERT | ERR_FATAL;
1201 goto out;
1202 }
1203
1204 if (port1 != port2) {
1205 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1206 file, linenum, args[cur_arg], args[cur_arg + 1]);
1207 err_code |= ERR_ALERT | ERR_FATAL;
1208 goto out;
1209 }
1210
Simon Horman41f58762015-01-30 11:22:56 +09001211 newsrv->check.addr = newsrv->agent.addr = *sk;
Willy Tarreau272adea2014-03-31 10:39:59 +02001212 cur_arg += 2;
1213 }
1214 else if (!strcmp(args[cur_arg], "port")) {
1215 newsrv->check.port = atol(args[cur_arg + 1]);
1216 cur_arg += 2;
1217 }
1218 else if (!defsrv && !strcmp(args[cur_arg], "backup")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001219 newsrv->flags |= SRV_F_BACKUP;
Willy Tarreau272adea2014-03-31 10:39:59 +02001220 cur_arg ++;
1221 }
1222 else if (!defsrv && !strcmp(args[cur_arg], "non-stick")) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001223 newsrv->flags |= SRV_F_NON_STICK;
Willy Tarreau272adea2014-03-31 10:39:59 +02001224 cur_arg ++;
1225 }
1226 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy")) {
David Safb76832014-05-08 23:42:08 -04001227 newsrv->pp_opts |= SRV_PP_V1;
Willy Tarreau272adea2014-03-31 10:39:59 +02001228 cur_arg ++;
1229 }
David Safb76832014-05-08 23:42:08 -04001230 else if (!defsrv && !strcmp(args[cur_arg], "send-proxy-v2")) {
1231 newsrv->pp_opts |= SRV_PP_V2;
1232 cur_arg ++;
1233 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001234 else if (!defsrv && !strcmp(args[cur_arg], "check-send-proxy")) {
1235 newsrv->check.send_proxy = 1;
1236 cur_arg ++;
1237 }
1238 else if (!strcmp(args[cur_arg], "weight")) {
1239 int w;
1240 w = atol(args[cur_arg + 1]);
1241 if (w < 0 || w > SRV_UWGHT_MAX) {
1242 Alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
1243 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
1244 err_code |= ERR_ALERT | ERR_FATAL;
1245 goto out;
1246 }
1247 newsrv->uweight = newsrv->iweight = w;
1248 cur_arg += 2;
1249 }
1250 else if (!strcmp(args[cur_arg], "minconn")) {
1251 newsrv->minconn = atol(args[cur_arg + 1]);
1252 cur_arg += 2;
1253 }
1254 else if (!strcmp(args[cur_arg], "maxconn")) {
1255 newsrv->maxconn = atol(args[cur_arg + 1]);
1256 cur_arg += 2;
1257 }
1258 else if (!strcmp(args[cur_arg], "maxqueue")) {
1259 newsrv->maxqueue = atol(args[cur_arg + 1]);
1260 cur_arg += 2;
1261 }
1262 else if (!strcmp(args[cur_arg], "slowstart")) {
1263 /* slowstart is stored in seconds */
1264 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
1265 if (err) {
1266 Alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
1267 file, linenum, *err, newsrv->id);
1268 err_code |= ERR_ALERT | ERR_FATAL;
1269 goto out;
1270 }
1271 newsrv->slowstart = (val + 999) / 1000;
1272 cur_arg += 2;
1273 }
1274 else if (!defsrv && !strcmp(args[cur_arg], "track")) {
1275
1276 if (!*args[cur_arg + 1]) {
1277 Alert("parsing [%s:%d]: 'track' expects [<proxy>/]<server> as argument.\n",
1278 file, linenum);
1279 err_code |= ERR_ALERT | ERR_FATAL;
1280 goto out;
1281 }
1282
1283 newsrv->trackit = strdup(args[cur_arg + 1]);
1284
1285 cur_arg += 2;
1286 }
1287 else if (!defsrv && !strcmp(args[cur_arg], "check")) {
1288 global.maxsock++;
1289 do_check = 1;
1290 cur_arg += 1;
1291 }
1292 else if (!defsrv && !strcmp(args[cur_arg], "disabled")) {
Baptiste Assmann9f5ada32015-08-08 15:49:13 +02001293 newsrv->admin |= SRV_ADMF_CMAINT;
Baptiste Assmann54a47302015-09-18 10:30:03 +02001294 newsrv->admin |= SRV_ADMF_FMAINT;
Willy Tarreau892337c2014-05-13 23:41:20 +02001295 newsrv->state = SRV_ST_STOPPED;
Willy Tarreau272adea2014-03-31 10:39:59 +02001296 newsrv->check.state |= CHK_ST_PAUSED;
1297 newsrv->check.health = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001298 cur_arg += 1;
1299 }
1300 else if (!defsrv && !strcmp(args[cur_arg], "observe")) {
1301 if (!strcmp(args[cur_arg + 1], "none"))
1302 newsrv->observe = HANA_OBS_NONE;
1303 else if (!strcmp(args[cur_arg + 1], "layer4"))
1304 newsrv->observe = HANA_OBS_LAYER4;
1305 else if (!strcmp(args[cur_arg + 1], "layer7")) {
1306 if (curproxy->mode != PR_MODE_HTTP) {
1307 Alert("parsing [%s:%d]: '%s' can only be used in http proxies.\n",
1308 file, linenum, args[cur_arg + 1]);
1309 err_code |= ERR_ALERT;
1310 }
1311 newsrv->observe = HANA_OBS_LAYER7;
1312 }
1313 else {
1314 Alert("parsing [%s:%d]: '%s' expects one of 'none', "
1315 "'layer4', 'layer7' but got '%s'\n",
1316 file, linenum, args[cur_arg], args[cur_arg + 1]);
1317 err_code |= ERR_ALERT | ERR_FATAL;
1318 goto out;
1319 }
1320
1321 cur_arg += 2;
1322 }
1323 else if (!strcmp(args[cur_arg], "on-error")) {
1324 if (!strcmp(args[cur_arg + 1], "fastinter"))
1325 newsrv->onerror = HANA_ONERR_FASTINTER;
1326 else if (!strcmp(args[cur_arg + 1], "fail-check"))
1327 newsrv->onerror = HANA_ONERR_FAILCHK;
1328 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
1329 newsrv->onerror = HANA_ONERR_SUDDTH;
1330 else if (!strcmp(args[cur_arg + 1], "mark-down"))
1331 newsrv->onerror = HANA_ONERR_MARKDWN;
1332 else {
1333 Alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
1334 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
1335 file, linenum, args[cur_arg], args[cur_arg + 1]);
1336 err_code |= ERR_ALERT | ERR_FATAL;
1337 goto out;
1338 }
1339
1340 cur_arg += 2;
1341 }
1342 else if (!strcmp(args[cur_arg], "on-marked-down")) {
1343 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
1344 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
1345 else {
1346 Alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
1347 file, linenum, args[cur_arg], args[cur_arg + 1]);
1348 err_code |= ERR_ALERT | ERR_FATAL;
1349 goto out;
1350 }
1351
1352 cur_arg += 2;
1353 }
1354 else if (!strcmp(args[cur_arg], "on-marked-up")) {
1355 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
1356 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
1357 else {
1358 Alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
1359 file, linenum, args[cur_arg], args[cur_arg + 1]);
1360 err_code |= ERR_ALERT | ERR_FATAL;
1361 goto out;
1362 }
1363
1364 cur_arg += 2;
1365 }
1366 else if (!strcmp(args[cur_arg], "error-limit")) {
1367 if (!*args[cur_arg + 1]) {
1368 Alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
1369 file, linenum, args[cur_arg]);
1370 err_code |= ERR_ALERT | ERR_FATAL;
1371 goto out;
1372 }
1373
1374 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
1375
1376 if (newsrv->consecutive_errors_limit <= 0) {
1377 Alert("parsing [%s:%d]: %s has to be > 0.\n",
1378 file, linenum, args[cur_arg]);
1379 err_code |= ERR_ALERT | ERR_FATAL;
1380 goto out;
1381 }
1382 cur_arg += 2;
1383 }
1384 else if (!defsrv && !strcmp(args[cur_arg], "source")) { /* address to which we bind when connecting */
1385 int port_low, port_high;
1386 struct sockaddr_storage *sk;
1387 struct protocol *proto;
1388
1389 if (!*args[cur_arg + 1]) {
1390 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, and '%s' <name> as argument.\n",
1391 file, linenum, "source", "usesrc", "interface");
1392 err_code |= ERR_ALERT | ERR_FATAL;
1393 goto out;
1394 }
1395
1396 newsrv->conn_src.opts |= CO_SRC_BIND;
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +02001397 sk = str2sa_range(args[cur_arg + 1], &port_low, &port_high, &errmsg, NULL, NULL, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +02001398 if (!sk) {
1399 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1400 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1401 err_code |= ERR_ALERT | ERR_FATAL;
1402 goto out;
1403 }
1404
1405 proto = protocol_by_family(sk->ss_family);
1406 if (!proto || !proto->connect) {
1407 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1408 file, linenum, args[cur_arg], args[cur_arg+1]);
1409 err_code |= ERR_ALERT | ERR_FATAL;
1410 goto out;
1411 }
1412
1413 newsrv->conn_src.source_addr = *sk;
1414
1415 if (port_low != port_high) {
1416 int i;
1417
1418 if (!port_low || !port_high) {
1419 Alert("parsing [%s:%d] : %s does not support port offsets (found '%s').\n",
1420 file, linenum, args[cur_arg], args[cur_arg + 1]);
1421 err_code |= ERR_ALERT | ERR_FATAL;
1422 goto out;
1423 }
1424
1425 if (port_low <= 0 || port_low > 65535 ||
1426 port_high <= 0 || port_high > 65535 ||
1427 port_low > port_high) {
1428 Alert("parsing [%s:%d] : invalid source port range %d-%d.\n",
1429 file, linenum, port_low, port_high);
1430 err_code |= ERR_ALERT | ERR_FATAL;
1431 goto out;
1432 }
1433 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
1434 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1435 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1436 }
1437
1438 cur_arg += 2;
1439 while (*(args[cur_arg])) {
1440 if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside */
Willy Tarreau29fbe512015-08-20 19:35:14 +02001441#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreau272adea2014-03-31 10:39:59 +02001442 if (!*args[cur_arg + 1]) {
1443 Alert("parsing [%s:%d] : '%s' expects <addr>[:<port>], 'client', 'clientip', or 'hdr_ip(name,#)' as argument.\n",
1444 file, linenum, "usesrc");
1445 err_code |= ERR_ALERT | ERR_FATAL;
1446 goto out;
1447 }
1448 if (!strcmp(args[cur_arg + 1], "client")) {
1449 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1450 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1451 } else if (!strcmp(args[cur_arg + 1], "clientip")) {
1452 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1453 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1454 } else if (!strncmp(args[cur_arg + 1], "hdr_ip(", 7)) {
1455 char *name, *end;
1456
1457 name = args[cur_arg+1] + 7;
1458 while (isspace(*name))
1459 name++;
1460
1461 end = name;
1462 while (*end && !isspace(*end) && *end != ',' && *end != ')')
1463 end++;
1464
1465 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1466 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1467 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
1468 newsrv->conn_src.bind_hdr_len = end - name;
1469 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1470 newsrv->conn_src.bind_hdr_name[end-name] = '\0';
1471 newsrv->conn_src.bind_hdr_occ = -1;
1472
1473 /* now look for an occurrence number */
1474 while (isspace(*end))
1475 end++;
1476 if (*end == ',') {
1477 end++;
1478 name = end;
1479 if (*end == '-')
1480 end++;
1481 while (isdigit((int)*end))
1482 end++;
1483 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end-name);
1484 }
1485
1486 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
1487 Alert("parsing [%s:%d] : usesrc hdr_ip(name,num) does not support negative"
1488 " occurrences values smaller than %d.\n",
1489 file, linenum, MAX_HDR_HISTORY);
1490 err_code |= ERR_ALERT | ERR_FATAL;
1491 goto out;
1492 }
1493 } else {
1494 struct sockaddr_storage *sk;
1495 int port1, port2;
1496
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +02001497 sk = str2sa_range(args[cur_arg + 1], &port1, &port2, &errmsg, NULL, NULL, 1);
Willy Tarreau272adea2014-03-31 10:39:59 +02001498 if (!sk) {
1499 Alert("parsing [%s:%d] : '%s %s' : %s\n",
1500 file, linenum, args[cur_arg], args[cur_arg+1], errmsg);
1501 err_code |= ERR_ALERT | ERR_FATAL;
1502 goto out;
1503 }
1504
1505 proto = protocol_by_family(sk->ss_family);
1506 if (!proto || !proto->connect) {
1507 Alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
1508 file, linenum, args[cur_arg], args[cur_arg+1]);
1509 err_code |= ERR_ALERT | ERR_FATAL;
1510 goto out;
1511 }
1512
1513 if (port1 != port2) {
1514 Alert("parsing [%s:%d] : '%s' : port ranges and offsets are not allowed in '%s'\n",
1515 file, linenum, args[cur_arg], args[cur_arg + 1]);
1516 err_code |= ERR_ALERT | ERR_FATAL;
1517 goto out;
1518 }
1519 newsrv->conn_src.tproxy_addr = *sk;
1520 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1521 }
1522 global.last_checks |= LSTCHK_NETADM;
Willy Tarreau272adea2014-03-31 10:39:59 +02001523 cur_arg += 2;
1524 continue;
1525#else /* no TPROXY support */
1526 Alert("parsing [%s:%d] : '%s' not allowed here because support for TPROXY was not compiled in.\n",
1527 file, linenum, "usesrc");
1528 err_code |= ERR_ALERT | ERR_FATAL;
1529 goto out;
Willy Tarreau29fbe512015-08-20 19:35:14 +02001530#endif /* defined(CONFIG_HAP_TRANSPARENT) */
Willy Tarreau272adea2014-03-31 10:39:59 +02001531 } /* "usesrc" */
1532
1533 if (!strcmp(args[cur_arg], "interface")) { /* specifically bind to this interface */
1534#ifdef SO_BINDTODEVICE
1535 if (!*args[cur_arg + 1]) {
1536 Alert("parsing [%s:%d] : '%s' : missing interface name.\n",
1537 file, linenum, args[0]);
1538 err_code |= ERR_ALERT | ERR_FATAL;
1539 goto out;
1540 }
1541 free(newsrv->conn_src.iface_name);
1542 newsrv->conn_src.iface_name = strdup(args[cur_arg + 1]);
1543 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1544 global.last_checks |= LSTCHK_NETADM;
1545#else
1546 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1547 file, linenum, args[0], args[cur_arg]);
1548 err_code |= ERR_ALERT | ERR_FATAL;
1549 goto out;
1550#endif
1551 cur_arg += 2;
1552 continue;
1553 }
1554 /* this keyword in not an option of "source" */
1555 break;
1556 } /* while */
1557 }
1558 else if (!defsrv && !strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
1559 Alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
1560 file, linenum, "usesrc", "source");
1561 err_code |= ERR_ALERT | ERR_FATAL;
1562 goto out;
1563 }
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001564 else if (!defsrv && !strcmp(args[cur_arg], "namespace")) {
1565#ifdef CONFIG_HAP_NS
1566 char *arg = args[cur_arg + 1];
1567 if (!strcmp(arg, "*")) {
1568 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
1569 } else {
1570 newsrv->netns = netns_store_lookup(arg, strlen(arg));
1571
1572 if (newsrv->netns == NULL)
1573 newsrv->netns = netns_store_insert(arg);
1574
1575 if (newsrv->netns == NULL) {
1576 Alert("Cannot open namespace '%s'.\n", args[cur_arg + 1]);
1577 err_code |= ERR_ALERT | ERR_FATAL;
1578 goto out;
1579 }
1580 }
1581#else
1582 Alert("parsing [%s:%d] : '%s' : '%s' option not implemented.\n",
1583 file, linenum, args[0], args[cur_arg]);
1584 err_code |= ERR_ALERT | ERR_FATAL;
1585 goto out;
1586#endif
1587 cur_arg += 2;
1588 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001589 else {
1590 static int srv_dumped;
1591 struct srv_kw *kw;
1592 char *err;
1593
1594 kw = srv_find_kw(args[cur_arg]);
1595 if (kw) {
1596 char *err = NULL;
1597 int code;
1598
1599 if (!kw->parse) {
1600 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n",
1601 file, linenum, args[0], args[1], args[cur_arg]);
1602 cur_arg += 1 + kw->skip ;
1603 err_code |= ERR_ALERT | ERR_FATAL;
1604 goto out;
1605 }
1606
1607 if (defsrv && !kw->default_ok) {
1608 Alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
1609 file, linenum, args[0], args[1], args[cur_arg]);
1610 cur_arg += 1 + kw->skip ;
1611 err_code |= ERR_ALERT;
1612 continue;
1613 }
1614
1615 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
1616 err_code |= code;
1617
1618 if (code) {
1619 if (err && *err) {
1620 indent_msg(&err, 2);
1621 Alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], err);
1622 }
1623 else
1624 Alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1625 file, linenum, args[0], args[1], args[cur_arg]);
1626 if (code & ERR_FATAL) {
1627 free(err);
1628 cur_arg += 1 + kw->skip;
1629 goto out;
1630 }
1631 }
1632 free(err);
1633 cur_arg += 1 + kw->skip;
1634 continue;
1635 }
1636
1637 err = NULL;
1638 if (!srv_dumped) {
1639 srv_dump_kws(&err);
1640 indent_msg(&err, 4);
1641 srv_dumped = 1;
1642 }
1643
1644 Alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
1645 file, linenum, args[0], args[1], args[cur_arg],
1646 err ? " Registered keywords :" : "", err ? err : "");
1647 free(err);
1648
1649 err_code |= ERR_ALERT | ERR_FATAL;
1650 goto out;
1651 }
1652 }
1653
Willy Tarreau272adea2014-03-31 10:39:59 +02001654 if (do_check) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001655 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001656
1657 if (newsrv->trackit) {
1658 Alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1659 file, linenum);
1660 err_code |= ERR_ALERT | ERR_FATAL;
1661 goto out;
1662 }
1663
1664 /* If neither a port nor an addr was specified and no check transport
1665 * layer is forced, then the transport layer used by the checks is the
1666 * same as for the production traffic. Otherwise we use raw_sock by
1667 * default, unless one is specified.
1668 */
Simon Horman41f58762015-01-30 11:22:56 +09001669 if (!newsrv->check.port && !is_addr(&newsrv->check.addr)) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001670#ifdef USE_OPENSSL
1671 newsrv->check.use_ssl |= (newsrv->use_ssl || (newsrv->proxy->options & PR_O_TCPCHK_SSL));
1672#endif
David Safb76832014-05-08 23:42:08 -04001673 newsrv->check.send_proxy |= (newsrv->pp_opts);
Willy Tarreau272adea2014-03-31 10:39:59 +02001674 }
1675 /* try to get the port from check_core.addr if check.port not set */
1676 if (!newsrv->check.port)
Simon Horman41f58762015-01-30 11:22:56 +09001677 newsrv->check.port = get_host_port(&newsrv->check.addr);
Willy Tarreau272adea2014-03-31 10:39:59 +02001678
1679 if (!newsrv->check.port)
1680 newsrv->check.port = realport; /* by default */
1681
1682 if (!newsrv->check.port) {
1683 /* not yet valid, because no port was set on
1684 * the server either. We'll check if we have
1685 * a known port on the first listener.
1686 */
1687 struct listener *l;
1688
1689 list_for_each_entry(l, &curproxy->conf.listeners, by_fe) {
1690 newsrv->check.port = get_host_port(&l->addr);
1691 if (newsrv->check.port)
1692 break;
1693 }
1694 }
1695 /*
1696 * We need at least a service port, a check port or the first tcp-check rule must
Willy Tarreau5cf0b522014-05-09 23:59:19 +02001697 * be a 'connect' one when checking an IPv4/IPv6 server.
Willy Tarreau272adea2014-03-31 10:39:59 +02001698 */
Willy Tarreau5cf0b522014-05-09 23:59:19 +02001699 if (!newsrv->check.port &&
Simon Horman41f58762015-01-30 11:22:56 +09001700 (is_inet_addr(&newsrv->check.addr) ||
1701 (!is_addr(&newsrv->check.addr) && is_inet_addr(&newsrv->addr)))) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001702 struct tcpcheck_rule *n = NULL, *r = NULL;
1703 struct list *l;
1704
1705 r = (struct tcpcheck_rule *)newsrv->proxy->tcpcheck_rules.n;
1706 if (!r) {
1707 Alert("parsing [%s:%d] : server %s has neither service port nor check port. Check has been disabled.\n",
1708 file, linenum, newsrv->id);
1709 err_code |= ERR_ALERT | ERR_FATAL;
1710 goto out;
1711 }
Baptiste Assmannbaf97942015-12-04 06:49:31 +01001712 /* search the first action (connect / send / expect) in the list */
1713 l = &newsrv->proxy->tcpcheck_rules;
1714 list_for_each_entry(n, l, list) {
1715 r = (struct tcpcheck_rule *)n->list.n;
1716 if (r->action != TCPCHK_ACT_COMMENT)
1717 break;
1718 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001719 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
1720 Alert("parsing [%s:%d] : server %s has neither service port nor check port nor tcp_check rule 'connect' with port information. Check has been disabled.\n",
1721 file, linenum, newsrv->id);
1722 err_code |= ERR_ALERT | ERR_FATAL;
1723 goto out;
1724 }
1725 else {
1726 /* scan the tcp-check ruleset to ensure a port has been configured */
1727 l = &newsrv->proxy->tcpcheck_rules;
1728 list_for_each_entry(n, l, list) {
Baptiste Assmann3dd73be2015-12-04 06:57:25 +01001729 r = (struct tcpcheck_rule *)n->list.n;
Willy Tarreau272adea2014-03-31 10:39:59 +02001730 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
1731 Alert("parsing [%s:%d] : server %s has neither service port nor check port, and a tcp_check rule 'connect' with no port information. Check has been disabled.\n",
1732 file, linenum, newsrv->id);
1733 err_code |= ERR_ALERT | ERR_FATAL;
1734 goto out;
1735 }
1736 }
1737 }
1738 }
1739
1740 /* note: check type will be set during the config review phase */
Simon Hormanb1900d52015-01-30 11:22:54 +09001741 ret = init_check(&newsrv->check, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02001742 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001743 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1744 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001745 goto out;
1746 }
1747
Baptiste Assmanna68ca962015-04-14 01:15:08 +02001748 if (newsrv->resolution)
1749 newsrv->resolution->resolver_family_priority = newsrv->resolver_family_priority;
1750
Willy Tarreau272adea2014-03-31 10:39:59 +02001751 newsrv->check.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED;
1752 }
1753
1754 if (do_agent) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001755 const char *ret;
Willy Tarreau272adea2014-03-31 10:39:59 +02001756
1757 if (!newsrv->agent.port) {
1758 Alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1759 file, linenum, newsrv->id);
1760 err_code |= ERR_ALERT | ERR_FATAL;
1761 goto out;
1762 }
1763
1764 if (!newsrv->agent.inter)
1765 newsrv->agent.inter = newsrv->check.inter;
1766
Simon Hormanb1900d52015-01-30 11:22:54 +09001767 ret = init_check(&newsrv->agent, PR_O2_LB_AGENT_CHK);
Willy Tarreau272adea2014-03-31 10:39:59 +02001768 if (ret) {
Simon Hormanb1900d52015-01-30 11:22:54 +09001769 Alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
1770 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02001771 goto out;
1772 }
1773
1774 newsrv->agent.state |= CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
1775 }
1776
1777 if (!defsrv) {
Willy Tarreauc93cd162014-05-13 15:54:22 +02001778 if (newsrv->flags & SRV_F_BACKUP)
Willy Tarreau272adea2014-03-31 10:39:59 +02001779 curproxy->srv_bck++;
1780 else
1781 curproxy->srv_act++;
1782
Willy Tarreauc5150da2014-05-13 19:27:31 +02001783 srv_lb_commit_status(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02001784 }
1785 }
Willy Tarreau07101d52015-09-08 16:16:35 +02001786 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02001787 return 0;
1788
1789 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02001790 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02001791 free(errmsg);
1792 return err_code;
1793}
1794
Baptiste Assmann19a106d2015-07-08 22:03:56 +02001795/* Returns a pointer to the first server matching either id <id>.
1796 * NULL is returned if no match is found.
1797 * the lookup is performed in the backend <bk>
1798 */
1799struct server *server_find_by_id(struct proxy *bk, int id)
1800{
1801 struct eb32_node *eb32;
1802 struct server *curserver;
1803
1804 if (!bk || (id ==0))
1805 return NULL;
1806
1807 /* <bk> has no backend capabilities, so it can't have a server */
1808 if (!(bk->cap & PR_CAP_BE))
1809 return NULL;
1810
1811 curserver = NULL;
1812
1813 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
1814 if (eb32)
1815 curserver = container_of(eb32, struct server, conf.id);
1816
1817 return curserver;
1818}
1819
1820/* Returns a pointer to the first server matching either name <name>, or id
1821 * if <name> starts with a '#'. NULL is returned if no match is found.
1822 * the lookup is performed in the backend <bk>
1823 */
1824struct server *server_find_by_name(struct proxy *bk, const char *name)
1825{
1826 struct server *curserver;
1827
1828 if (!bk || !name)
1829 return NULL;
1830
1831 /* <bk> has no backend capabilities, so it can't have a server */
1832 if (!(bk->cap & PR_CAP_BE))
1833 return NULL;
1834
1835 curserver = NULL;
1836 if (*name == '#') {
1837 curserver = server_find_by_id(bk, atoi(name + 1));
1838 if (curserver)
1839 return curserver;
1840 }
1841 else {
1842 curserver = bk->srv;
1843
1844 while (curserver && (strcmp(curserver->id, name) != 0))
1845 curserver = curserver->next;
1846
1847 if (curserver)
1848 return curserver;
1849 }
1850
1851 return NULL;
1852}
1853
1854struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
1855{
1856 struct server *byname;
1857 struct server *byid;
1858
1859 if (!name && !id)
1860 return NULL;
1861
1862 if (diff)
1863 *diff = 0;
1864
1865 byname = byid = NULL;
1866
1867 if (name) {
1868 byname = server_find_by_name(bk, name);
1869 if (byname && (!id || byname->puid == id))
1870 return byname;
1871 }
1872
1873 /* remaining possibilities :
1874 * - name not set
1875 * - name set but not found
1876 * - name found but ID doesn't match
1877 */
1878 if (id) {
1879 byid = server_find_by_id(bk, id);
1880 if (byid) {
1881 if (byname) {
1882 /* use id only if forced by configuration */
1883 if (byid->flags & SRV_F_FORCED_ID) {
1884 if (diff)
1885 *diff |= 2;
1886 return byid;
1887 }
1888 else {
1889 if (diff)
1890 *diff |= 1;
1891 return byname;
1892 }
1893 }
1894
1895 /* remaining possibilities:
1896 * - name not set
1897 * - name set but not found
1898 */
1899 if (name && diff)
1900 *diff |= 2;
1901 return byid;
1902 }
1903
1904 /* id bot found */
1905 if (byname) {
1906 if (diff)
1907 *diff |= 1;
1908 return byname;
1909 }
1910 }
1911
1912 return NULL;
1913}
1914
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001915/* Update a server state using the parameters available in the params list */
1916static void srv_update_state(struct server *srv, int version, char **params)
1917{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001918 char *p;
Willy Tarreau31138fa2015-09-29 18:38:47 +02001919 struct chunk *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001920
1921 /* fields since version 1
1922 * and common to all other upcoming versions
1923 */
1924 struct sockaddr_storage addr;
1925 enum srv_state srv_op_state;
1926 enum srv_admin srv_admin_state;
1927 unsigned srv_uweight, srv_iweight;
1928 unsigned long srv_last_time_change;
1929 short srv_check_status;
1930 enum chk_result srv_check_result;
1931 int srv_check_health;
1932 int srv_check_state, srv_agent_state;
1933 int bk_f_forced_id;
1934 int srv_f_forced_id;
1935
Willy Tarreau31138fa2015-09-29 18:38:47 +02001936 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001937 switch (version) {
1938 case 1:
1939 /*
1940 * now we can proceed with server's state update:
1941 * srv_addr: params[0]
1942 * srv_op_state: params[1]
1943 * srv_admin_state: params[2]
1944 * srv_uweight: params[3]
1945 * srv_iweight: params[4]
1946 * srv_last_time_change: params[5]
1947 * srv_check_status: params[6]
1948 * srv_check_result: params[7]
1949 * srv_check_health: params[8]
1950 * srv_check_state: params[9]
1951 * srv_agent_state: params[10]
1952 * bk_f_forced_id: params[11]
1953 * srv_f_forced_id: params[12]
1954 */
1955
1956 /* validating srv_op_state */
1957 p = NULL;
1958 errno = 0;
1959 srv_op_state = strtol(params[1], &p, 10);
1960 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
1961 (srv_op_state != SRV_ST_STOPPED &&
1962 srv_op_state != SRV_ST_STARTING &&
1963 srv_op_state != SRV_ST_RUNNING &&
1964 srv_op_state != SRV_ST_STOPPING)) {
1965 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
1966 }
1967
1968 /* validating srv_admin_state */
1969 p = NULL;
1970 errno = 0;
1971 srv_admin_state = strtol(params[2], &p, 10);
1972 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
1973 (srv_admin_state != 0 &&
1974 srv_admin_state != SRV_ADMF_FMAINT &&
1975 srv_admin_state != SRV_ADMF_IMAINT &&
1976 srv_admin_state != SRV_ADMF_CMAINT &&
1977 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
1978 srv_admin_state != SRV_ADMF_FDRAIN &&
1979 srv_admin_state != SRV_ADMF_IDRAIN)) {
1980 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
1981 }
1982
1983 /* validating srv_uweight */
1984 p = NULL;
1985 errno = 0;
1986 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02001987 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001988 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
1989
1990 /* validating srv_iweight */
1991 p = NULL;
1992 errno = 0;
1993 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02001994 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02001995 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
1996
1997 /* validating srv_last_time_change */
1998 p = NULL;
1999 errno = 0;
2000 srv_last_time_change = strtol(params[5], &p, 10);
2001 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2002 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2003
2004 /* validating srv_check_status */
2005 p = NULL;
2006 errno = 0;
2007 srv_check_status = strtol(params[6], &p, 10);
2008 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2009 (srv_check_status >= HCHK_STATUS_SIZE))
2010 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2011
2012 /* validating srv_check_result */
2013 p = NULL;
2014 errno = 0;
2015 srv_check_result = strtol(params[7], &p, 10);
2016 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2017 (srv_check_result != CHK_RES_UNKNOWN &&
2018 srv_check_result != CHK_RES_NEUTRAL &&
2019 srv_check_result != CHK_RES_FAILED &&
2020 srv_check_result != CHK_RES_PASSED &&
2021 srv_check_result != CHK_RES_CONDPASS)) {
2022 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2023 }
2024
2025 /* validating srv_check_health */
2026 p = NULL;
2027 errno = 0;
2028 srv_check_health = strtol(params[8], &p, 10);
2029 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2030 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2031
2032 /* validating srv_check_state */
2033 p = NULL;
2034 errno = 0;
2035 srv_check_state = strtol(params[9], &p, 10);
2036 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2037 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2038 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2039
2040 /* validating srv_agent_state */
2041 p = NULL;
2042 errno = 0;
2043 srv_agent_state = strtol(params[10], &p, 10);
2044 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2045 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2046 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2047
2048 /* validating bk_f_forced_id */
2049 p = NULL;
2050 errno = 0;
2051 bk_f_forced_id = strtol(params[11], &p, 10);
2052 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2053 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2054
2055 /* validating srv_f_forced_id */
2056 p = NULL;
2057 errno = 0;
2058 srv_f_forced_id = strtol(params[12], &p, 10);
2059 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2060 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2061
2062
2063 /* don't apply anything if one error has been detected */
Willy Tarreau31138fa2015-09-29 18:38:47 +02002064 if (msg->len)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002065 goto out;
2066
2067 /* recover operational state and apply it to this server
2068 * and all servers tracking this one */
2069 switch (srv_op_state) {
2070 case SRV_ST_STOPPED:
2071 srv->check.health = 0;
2072 srv_set_stopped(srv, "changed from server-state after a reload");
2073 break;
2074 case SRV_ST_STARTING:
2075 srv->state = srv_op_state;
2076 break;
2077 case SRV_ST_STOPPING:
2078 srv->check.health = srv->check.rise + srv->check.fall - 1;
2079 srv_set_stopping(srv, "changed from server-state after a reload");
2080 break;
2081 case SRV_ST_RUNNING:
2082 srv->check.health = srv->check.rise + srv->check.fall - 1;
2083 srv_set_running(srv, "");
2084 break;
2085 }
2086
2087 /* When applying server state, the following rules apply:
2088 * - in case of a configuration change, we apply the setting from the new
2089 * configuration, regardless of old running state
2090 * - if no configuration change, we apply old running state only if old running
2091 * state is different from new configuration state
2092 */
2093 /* configuration has changed */
2094 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->admin & SRV_ADMF_CMAINT)) {
2095 if (srv->admin & SRV_ADMF_CMAINT)
2096 srv_adm_set_maint(srv);
2097 else
2098 srv_adm_set_ready(srv);
2099 }
2100 /* configuration is the same, let's compate old running state and new conf state */
2101 else {
2102 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->admin & SRV_ADMF_CMAINT))
2103 srv_adm_set_maint(srv);
2104 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->admin & SRV_ADMF_CMAINT))
2105 srv_adm_set_ready(srv);
2106 }
2107 /* apply drain mode if server is currently enabled */
2108 if (!(srv->admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
2109 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
2110 * (srv->iweight is the weight set up in configuration)
2111 * so we don't want to apply it when srv_iweight is 0 and
2112 * srv->iweight is greater than 0. Purpose is to give the
2113 * chance to the admin to re-enable this server from configuration
2114 * file by setting a new weight > 0.
2115 */
2116 if ((srv_iweight == 0) && (srv->iweight > 0)) {
2117 srv_adm_set_drain(srv);
2118 }
2119 }
2120
2121 srv->last_change = date.tv_sec - srv_last_time_change;
2122 srv->check.status = srv_check_status;
2123 srv->check.result = srv_check_result;
2124 srv->check.health = srv_check_health;
2125
2126 /* Only case we want to apply is removing ENABLED flag which could have been
2127 * done by the "disable health" command over the stats socket
2128 */
2129 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2130 (srv_check_state & CHK_ST_CONFIGURED) &&
2131 !(srv_check_state & CHK_ST_ENABLED))
2132 srv->check.state &= ~CHK_ST_ENABLED;
2133
2134 /* Only case we want to apply is removing ENABLED flag which could have been
2135 * done by the "disable agent" command over the stats socket
2136 */
2137 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2138 (srv_agent_state & CHK_ST_CONFIGURED) &&
2139 !(srv_agent_state & CHK_ST_ENABLED))
2140 srv->agent.state &= ~CHK_ST_ENABLED;
2141
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002142 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2143 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002144 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002145 * It means that a configuration file change has precedence over a unix socket change
2146 * for server's weight
2147 *
2148 * by default, HAProxy applies the following weight when parsing the configuration
2149 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002150 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002151 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002152 srv->uweight = srv_uweight;
2153 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002154 server_recalc_eweight(srv);
2155
2156 /* update server IP only if DNS resolution is used on the server */
2157 if (srv->resolution) {
2158 memset(&addr, 0, sizeof(struct sockaddr_storage));
2159 if (str2ip2(params[0], &addr, 0))
2160 memcpy(&srv->addr, &addr, sizeof(struct sockaddr_storage));
2161 else
2162 chunk_appendf(msg, ", can't parse IP: %s", params[0]);
2163 }
2164 break;
2165 default:
2166 chunk_appendf(msg, ", version '%d' not supported", version);
2167 }
2168
2169 out:
Willy Tarreau31138fa2015-09-29 18:38:47 +02002170 if (msg->len)
2171 Warning("server-state application failed for server '%s/%s'%s",
2172 srv->proxy->id, srv->id, msg->str);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002173}
2174
2175/* This function parses all the proxies and only take care of the backends (since we're looking for server)
2176 * For each proxy, it does the following:
2177 * - opens its server state file (either one or local one)
2178 * - read whole file, line by line
2179 * - analyse each line to check if it matches our current backend:
2180 * - backend name matches
2181 * - backend id matches if id is forced and name doesn't match
2182 * - if the server pointed by the line is found, then state is applied
2183 *
2184 * If the running backend uuid or id differs from the state file, then HAProxy reports
2185 * a warning.
2186 */
2187void apply_server_state(void)
2188{
2189 char *cur, *end;
2190 char mybuf[SRV_STATE_LINE_MAXLEN];
2191 int mybuflen;
2192 char *params[SRV_STATE_FILE_MAX_FIELDS];
2193 char *srv_params[SRV_STATE_FILE_MAX_FIELDS];
2194 int arg, srv_arg, version, diff;
2195 FILE *f;
2196 char *filepath;
2197 char globalfilepath[MAXPATHLEN + 1];
2198 char localfilepath[MAXPATHLEN + 1];
2199 int len, fileopenerr, globalfilepathlen, localfilepathlen;
2200 extern struct proxy *proxy;
2201 struct proxy *curproxy, *bk;
2202 struct server *srv;
2203
2204 globalfilepathlen = 0;
2205 /* create the globalfilepath variable */
2206 if (global.server_state_file) {
2207 /* absolute path or no base directory provided */
2208 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
2209 len = strlen(global.server_state_file);
2210 if (len > MAXPATHLEN) {
2211 globalfilepathlen = 0;
2212 goto globalfileerror;
2213 }
2214 memcpy(globalfilepath, global.server_state_file, len);
2215 globalfilepath[len] = '\0';
2216 globalfilepathlen = len;
2217 }
2218 else if (global.server_state_base) {
2219 len = strlen(global.server_state_base);
2220 globalfilepathlen += len;
2221
2222 if (globalfilepathlen > MAXPATHLEN) {
2223 globalfilepathlen = 0;
2224 goto globalfileerror;
2225 }
2226 strncpy(globalfilepath, global.server_state_base, len);
2227 globalfilepath[globalfilepathlen] = 0;
2228
2229 /* append a slash if needed */
2230 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
2231 if (globalfilepathlen + 1 > MAXPATHLEN) {
2232 globalfilepathlen = 0;
2233 goto globalfileerror;
2234 }
2235 globalfilepath[globalfilepathlen++] = '/';
2236 }
2237
2238 len = strlen(global.server_state_file);
2239 if (globalfilepathlen + len > MAXPATHLEN) {
2240 globalfilepathlen = 0;
2241 goto globalfileerror;
2242 }
2243 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
2244 globalfilepathlen += len;
2245 globalfilepath[globalfilepathlen++] = 0;
2246 }
2247 }
2248 globalfileerror:
2249 if (globalfilepathlen == 0)
2250 globalfilepath[0] = '\0';
2251
2252 /* read servers state from local file */
2253 for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) {
2254 /* servers are only in backends */
2255 if (!(curproxy->cap & PR_CAP_BE))
2256 continue;
2257 fileopenerr = 0;
2258 filepath = NULL;
2259
2260 /* search server state file path and name */
2261 switch (curproxy->load_server_state_from_file) {
2262 /* read servers state from global file */
2263 case PR_SRV_STATE_FILE_GLOBAL:
2264 /* there was an error while generating global server state file path */
2265 if (globalfilepathlen == 0)
2266 continue;
2267 filepath = globalfilepath;
2268 fileopenerr = 1;
2269 break;
2270 /* this backend has its own file */
2271 case PR_SRV_STATE_FILE_LOCAL:
2272 localfilepathlen = 0;
2273 localfilepath[0] = '\0';
2274 len = 0;
2275 /* create the localfilepath variable */
2276 /* absolute path or no base directory provided */
2277 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
2278 len = strlen(curproxy->server_state_file_name);
2279 if (len > MAXPATHLEN) {
2280 localfilepathlen = 0;
2281 goto localfileerror;
2282 }
2283 memcpy(localfilepath, curproxy->server_state_file_name, len);
2284 localfilepath[len] = '\0';
2285 localfilepathlen = len;
2286 }
2287 else if (global.server_state_base) {
2288 len = strlen(global.server_state_base);
2289 localfilepathlen += len;
2290
2291 if (localfilepathlen > MAXPATHLEN) {
2292 localfilepathlen = 0;
2293 goto localfileerror;
2294 }
2295 strncpy(localfilepath, global.server_state_base, len);
2296 localfilepath[localfilepathlen] = 0;
2297
2298 /* append a slash if needed */
2299 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
2300 if (localfilepathlen + 1 > MAXPATHLEN) {
2301 localfilepathlen = 0;
2302 goto localfileerror;
2303 }
2304 localfilepath[localfilepathlen++] = '/';
2305 }
2306
2307 len = strlen(curproxy->server_state_file_name);
2308 if (localfilepathlen + len > MAXPATHLEN) {
2309 localfilepathlen = 0;
2310 goto localfileerror;
2311 }
2312 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
2313 localfilepathlen += len;
2314 localfilepath[localfilepathlen++] = 0;
2315 }
2316 filepath = localfilepath;
2317 localfileerror:
2318 if (localfilepathlen == 0)
2319 localfilepath[0] = '\0';
2320
2321 break;
2322 case PR_SRV_STATE_FILE_NONE:
2323 default:
2324 continue;
2325 }
2326
2327 /* preload global state file */
2328 errno = 0;
2329 f = fopen(filepath, "r");
2330 if (errno && fileopenerr)
2331 Warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
2332 if (!f)
2333 continue;
2334
2335 mybuf[0] = '\0';
2336 mybuflen = 0;
2337 version = 0;
2338
2339 /* first character of first line of the file must contain the version of the export */
Dragan Dosencf4fb032015-11-04 23:03:26 +01002340 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL) {
2341 Warning("Can't read first line of the server state file '%s'\n", filepath);
2342 goto fileclose;
2343 }
2344
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002345 cur = mybuf;
2346 version = atoi(cur);
2347 if ((version < SRV_STATE_FILE_VERSION_MIN) ||
2348 (version > SRV_STATE_FILE_VERSION_MAX))
Dragan Dosencf4fb032015-11-04 23:03:26 +01002349 goto fileclose;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002350
2351 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
2352 int bk_f_forced_id = 0;
2353 int check_id = 0;
2354 int check_name = 0;
2355
2356 mybuflen = strlen(mybuf);
2357 cur = mybuf;
2358 end = cur + mybuflen;
2359
2360 bk = NULL;
2361 srv = NULL;
2362
2363 /* we need at least one character */
2364 if (mybuflen == 0)
2365 continue;
2366
2367 /* ignore blank characters at the beginning of the line */
2368 while (isspace(*cur))
2369 ++cur;
2370
2371 if (cur == end)
2372 continue;
2373
2374 /* ignore comment line */
2375 if (*cur == '#')
2376 continue;
2377
2378 /* we're now ready to move the line into *srv_params[] */
2379 params[0] = cur;
2380 arg = 1;
2381 srv_arg = 0;
2382 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
2383 if (isspace(*cur)) {
2384 *cur = '\0';
2385 ++cur;
2386 while (isspace(*cur))
2387 ++cur;
2388 switch (version) {
2389 case 1:
2390 /*
2391 * srv_addr: params[4] => srv_params[0]
2392 * srv_op_state: params[5] => srv_params[1]
2393 * srv_admin_state: params[6] => srv_params[2]
2394 * srv_uweight: params[7] => srv_params[3]
2395 * srv_iweight: params[8] => srv_params[4]
2396 * srv_last_time_change: params[9] => srv_params[5]
2397 * srv_check_status: params[10] => srv_params[6]
2398 * srv_check_result: params[11] => srv_params[7]
2399 * srv_check_health: params[12] => srv_params[8]
2400 * srv_check_state: params[13] => srv_params[9]
2401 * srv_agent_state: params[14] => srv_params[10]
2402 * bk_f_forced_id: params[15] => srv_params[11]
2403 * srv_f_forced_id: params[16] => srv_params[12]
2404 */
2405 if (arg >= 4) {
2406 srv_params[srv_arg] = cur;
2407 ++srv_arg;
2408 }
2409 break;
2410 }
2411
2412 params[arg] = cur;
2413 ++arg;
2414 }
2415 else {
2416 ++cur;
2417 }
2418 }
2419
2420 /* if line is incomplete line, then ignore it.
2421 * otherwise, update useful flags */
2422 switch (version) {
2423 case 1:
2424 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1)
2425 continue;
2426 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
2427 check_id = (atoi(params[0]) == curproxy->uuid);
2428 check_name = (strcmp(curproxy->id, params[1]) == 0);
2429 break;
2430 }
2431
2432 diff = 0;
2433 bk = curproxy;
2434
2435 /* if backend can't be found, let's continue */
2436 if (!check_id && !check_name)
2437 continue;
2438 else if (!check_id && check_name) {
2439 Warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
2440 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
2441 }
2442 else if (check_id && !check_name) {
2443 Warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
2444 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
2445 /* if name doesn't match, we still want to update curproxy if the backend id
2446 * was forced in previous the previous configuration */
2447 if (!bk_f_forced_id)
2448 continue;
2449 }
2450
2451 /* look for the server by its id: param[2] */
2452 /* else look for the server by its name: param[3] */
2453 diff = 0;
2454 srv = server_find_best_match(bk, params[3], atoi(params[2]), &diff);
2455
2456 if (!srv) {
2457 /* if no server found, then warning and continue with next line */
2458 Warning("can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
2459 params[3], params[2], params[0], params[1]);
2460 send_log(bk, LOG_NOTICE, "can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
2461 params[3], params[2], params[0], params[1]);
2462 continue;
2463 }
2464 else if (diff & PR_FBM_MISMATCH_ID) {
2465 Warning("In backend '%s' (id: '%d'): server ID mismatch: from server state file: '%s', from running config %d\n", bk->id, bk->uuid, params[2], srv->puid);
2466 send_log(bk, LOG_NOTICE, "In backend '%s' (id: %d): server ID mismatch: from server state file: '%s', from running config %d\n", bk->id, bk->uuid, params[2], srv->puid);
2467 }
2468 else if (diff & PR_FBM_MISMATCH_NAME) {
2469 Warning("In backend '%s' (id: %d): server name mismatch: from server state file: '%s', from running config '%s'\n", bk->id, bk->uuid, params[3], srv->id);
2470 send_log(bk, LOG_NOTICE, "In backend '%s' (id: %d): server name mismatch: from server state file: '%s', from running config '%s'\n", bk->id, bk->uuid, params[3], srv->id);
2471 }
2472
2473 /* now we can proceed with server's state update */
2474 srv_update_state(srv, version, srv_params);
2475 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01002476fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002477 fclose(f);
2478 }
2479}
2480
Simon Horman7d09b9a2013-02-12 10:45:51 +09002481/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02002482 * update a server's current IP address.
2483 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
2484 * ip is in network format.
2485 * updater is a string which contains an information about the requester of the update.
2486 * updater is used if not NULL.
2487 *
2488 * A log line and a stderr warning message is generated based on server's backend options.
2489 */
2490int update_server_addr(struct server *s, void *ip, int ip_sin_family, char *updater)
2491{
2492 /* generates a log line and a warning on stderr */
2493 if (1) {
2494 /* book enough space for both IPv4 and IPv6 */
2495 char oldip[INET6_ADDRSTRLEN];
2496 char newip[INET6_ADDRSTRLEN];
2497
2498 memset(oldip, '\0', INET6_ADDRSTRLEN);
2499 memset(newip, '\0', INET6_ADDRSTRLEN);
2500
2501 /* copy old IP address in a string */
2502 switch (s->addr.ss_family) {
2503 case AF_INET:
2504 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
2505 break;
2506 case AF_INET6:
2507 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
2508 break;
2509 };
2510
2511 /* copy new IP address in a string */
2512 switch (ip_sin_family) {
2513 case AF_INET:
2514 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
2515 break;
2516 case AF_INET6:
2517 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
2518 break;
2519 };
2520
2521 /* save log line into a buffer */
2522 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
2523 s->proxy->id, s->id, oldip, newip, updater);
2524
2525 /* write the buffer on stderr */
2526 Warning("%s.\n", trash.str);
2527
2528 /* send a log */
2529 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
2530 }
2531
2532 /* save the new IP family */
2533 s->addr.ss_family = ip_sin_family;
2534 /* save the new IP address */
2535 switch (ip_sin_family) {
2536 case AF_INET:
2537 ((struct sockaddr_in *)&s->addr)->sin_addr.s_addr = *(uint32_t *)ip;
2538 break;
2539 case AF_INET6:
2540 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
2541 break;
2542 };
2543
2544 return 0;
2545}
2546
2547/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002548 * update server status based on result of name resolution
2549 * returns:
2550 * 0 if server status is updated
2551 * 1 if server status has not changed
2552 */
2553int snr_update_srv_status(struct server *s)
2554{
2555 struct dns_resolution *resolution = s->resolution;
2556
2557 switch (resolution->status) {
2558 case RSLV_STATUS_NONE:
2559 /* status when HAProxy has just (re)started */
2560 trigger_resolution(s);
2561 break;
2562
2563 default:
2564 break;
2565 }
2566
2567 return 1;
2568}
2569
2570/*
2571 * Server Name Resolution valid response callback
2572 * It expects:
2573 * - <nameserver>: the name server which answered the valid response
2574 * - <response>: buffer containing a valid DNS response
2575 * - <response_len>: size of <response>
2576 * It performs the following actions:
2577 * - ignore response if current ip found and server family not met
2578 * - update with first new ip found if family is met and current IP is not found
2579 * returns:
2580 * 0 on error
2581 * 1 when no error or safe ignore
2582 */
2583int snr_resolution_cb(struct dns_resolution *resolution, struct dns_nameserver *nameserver, unsigned char *response, int response_len)
2584{
2585 struct server *s;
2586 void *serverip, *firstip;
2587 short server_sin_family, firstip_sin_family;
2588 unsigned char *response_end;
2589 int ret;
2590 struct chunk *chk = get_trash_chunk();
2591
2592 /* initializing variables */
2593 response_end = response + response_len; /* pointer to mark the end of the response */
2594 firstip = NULL; /* pointer to the first valid response found */
2595 /* it will be used as the new IP if a change is required */
2596 firstip_sin_family = AF_UNSPEC;
2597 serverip = NULL; /* current server IP address */
2598
2599 /* shortcut to the server whose name is being resolved */
2600 s = (struct server *)resolution->requester;
2601
2602 /* initializing server IP pointer */
2603 server_sin_family = s->addr.ss_family;
2604 switch (server_sin_family) {
2605 case AF_INET:
2606 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
2607 break;
2608
2609 case AF_INET6:
2610 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
2611 break;
2612
2613 default:
2614 goto invalid;
2615 }
2616
2617 ret = dns_get_ip_from_response(response, response_end, resolution->hostname_dn, resolution->hostname_dn_len,
2618 serverip, server_sin_family, resolution->resolver_family_priority, &firstip,
2619 &firstip_sin_family);
2620
2621 switch (ret) {
2622 case DNS_UPD_NO:
2623 if (resolution->status != RSLV_STATUS_VALID) {
2624 resolution->status = RSLV_STATUS_VALID;
2625 resolution->last_status_change = now_ms;
2626 }
2627 goto stop_resolution;
2628
2629 case DNS_UPD_SRVIP_NOT_FOUND:
2630 goto save_ip;
2631
2632 case DNS_UPD_CNAME:
2633 if (resolution->status != RSLV_STATUS_VALID) {
2634 resolution->status = RSLV_STATUS_VALID;
2635 resolution->last_status_change = now_ms;
2636 }
2637 goto invalid;
2638
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02002639 case DNS_UPD_NO_IP_FOUND:
2640 if (resolution->status != RSLV_STATUS_OTHER) {
2641 resolution->status = RSLV_STATUS_OTHER;
2642 resolution->last_status_change = now_ms;
2643 }
2644 goto stop_resolution;
2645
Baptiste Assmannfad03182015-10-28 02:03:32 +01002646 case DNS_UPD_NAME_ERROR:
2647 /* if this is not the last expected response, we ignore it */
2648 if (resolution->nb_responses < nameserver->resolvers->count_nameservers)
2649 return 0;
2650 /* update resolution status to OTHER error type */
2651 if (resolution->status != RSLV_STATUS_OTHER) {
2652 resolution->status = RSLV_STATUS_OTHER;
2653 resolution->last_status_change = now_ms;
2654 }
2655 goto stop_resolution;
2656
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002657 default:
2658 goto invalid;
2659
2660 }
2661
2662 save_ip:
2663 nameserver->counters.update += 1;
2664 if (resolution->status != RSLV_STATUS_VALID) {
2665 resolution->status = RSLV_STATUS_VALID;
2666 resolution->last_status_change = now_ms;
2667 }
2668
2669 /* save the first ip we found */
2670 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
2671 update_server_addr(s, firstip, firstip_sin_family, (char *)chk->str);
2672
2673 stop_resolution:
2674 /* update last resolution date and time */
2675 resolution->last_resolution = now_ms;
2676 /* reset current status flag */
2677 resolution->step = RSLV_STEP_NONE;
2678 /* reset values */
2679 dns_reset_resolution(resolution);
2680
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002681 dns_update_resolvers_timeout(nameserver->resolvers);
2682
2683 snr_update_srv_status(s);
2684 return 0;
2685
2686 invalid:
2687 nameserver->counters.invalid += 1;
2688 if (resolution->nb_responses >= nameserver->resolvers->count_nameservers)
2689 goto stop_resolution;
2690
2691 snr_update_srv_status(s);
2692 return 0;
2693}
2694
2695/*
2696 * Server Name Resolution error management callback
2697 * returns:
2698 * 0 on error
2699 * 1 when no error or safe ignore
2700 */
2701int snr_resolution_error_cb(struct dns_resolution *resolution, int error_code)
2702{
2703 struct server *s;
2704 struct dns_resolvers *resolvers;
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002705 int res_preferred_afinet, res_preferred_afinet6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002706
2707 /* shortcut to the server whose name is being resolved */
2708 s = (struct server *)resolution->requester;
2709 resolvers = resolution->resolvers;
2710
2711 /* can be ignored if this is not the last response */
2712 if ((error_code != DNS_RESP_TIMEOUT) && (resolution->nb_responses < resolvers->count_nameservers)) {
2713 return 1;
2714 }
2715
2716 switch (error_code) {
2717 case DNS_RESP_INVALID:
2718 case DNS_RESP_WRONG_NAME:
2719 if (resolution->status != RSLV_STATUS_INVALID) {
2720 resolution->status = RSLV_STATUS_INVALID;
2721 resolution->last_status_change = now_ms;
2722 }
2723 break;
2724
2725 case DNS_RESP_ANCOUNT_ZERO:
Baptiste Assmann0df5d962015-09-02 21:58:32 +02002726 case DNS_RESP_TRUNCATED:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002727 case DNS_RESP_ERROR:
Baptiste Assmann96972bc2015-09-09 00:46:58 +02002728 case DNS_RESP_NO_EXPECTED_RECORD:
Baptiste Assmann90447582015-09-02 22:20:56 +02002729 res_preferred_afinet = resolution->resolver_family_priority == AF_INET && resolution->query_type == DNS_RTYPE_A;
2730 res_preferred_afinet6 = resolution->resolver_family_priority == AF_INET6 && resolution->query_type == DNS_RTYPE_AAAA;
2731
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002732 if ((res_preferred_afinet || res_preferred_afinet6)
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002733 || (resolution->try > 0)) {
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002734 /* let's change the query type */
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002735 if (res_preferred_afinet6) {
Baptiste Assmann90447582015-09-02 22:20:56 +02002736 /* fallback from AAAA to A */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002737 resolution->query_type = DNS_RTYPE_A;
Baptiste Assmann90447582015-09-02 22:20:56 +02002738 }
2739 else if (res_preferred_afinet) {
2740 /* fallback from A to AAAA */
2741 resolution->query_type = DNS_RTYPE_AAAA;
2742 }
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002743 else {
2744 resolution->try -= 1;
Andrew Hayworthe6a4a322015-10-19 22:29:51 +00002745 if (resolution->resolver_family_priority == AF_INET) {
2746 resolution->query_type = DNS_RTYPE_A;
2747 } else {
2748 resolution->query_type = DNS_RTYPE_AAAA;
2749 }
Baptiste Assmannf778bb42015-09-09 00:54:38 +02002750 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002751
2752 dns_send_query(resolution);
2753
2754 /*
2755 * move the resolution to the last element of the FIFO queue
2756 * and update timeout wakeup based on the new first entry
2757 */
2758 if (dns_check_resolution_queue(resolvers) > 1) {
2759 /* second resolution becomes first one */
Baptiste Assmann11c4e4e2015-09-02 22:15:58 +02002760 LIST_DEL(&resolution->list);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002761 /* ex first resolution goes to the end of the queue */
2762 LIST_ADDQ(&resolvers->curr_resolution, &resolution->list);
2763 }
2764 dns_update_resolvers_timeout(resolvers);
2765 goto leave;
2766 }
2767 else {
2768 if (resolution->status != RSLV_STATUS_OTHER) {
2769 resolution->status = RSLV_STATUS_OTHER;
2770 resolution->last_status_change = now_ms;
2771 }
2772 }
2773 break;
2774
2775 case DNS_RESP_NX_DOMAIN:
2776 if (resolution->status != RSLV_STATUS_NX) {
2777 resolution->status = RSLV_STATUS_NX;
2778 resolution->last_status_change = now_ms;
2779 }
2780 break;
2781
2782 case DNS_RESP_REFUSED:
2783 if (resolution->status != RSLV_STATUS_REFUSED) {
2784 resolution->status = RSLV_STATUS_REFUSED;
2785 resolution->last_status_change = now_ms;
2786 }
2787 break;
2788
2789 case DNS_RESP_CNAME_ERROR:
2790 break;
2791
2792 case DNS_RESP_TIMEOUT:
2793 if (resolution->status != RSLV_STATUS_TIMEOUT) {
2794 resolution->status = RSLV_STATUS_TIMEOUT;
2795 resolution->last_status_change = now_ms;
2796 }
2797 break;
2798 }
2799
2800 /* update last resolution date and time */
2801 resolution->last_resolution = now_ms;
2802 /* reset current status flag */
2803 resolution->step = RSLV_STEP_NONE;
2804 /* reset values */
2805 dns_reset_resolution(resolution);
2806
2807 LIST_DEL(&resolution->list);
2808 dns_update_resolvers_timeout(resolvers);
2809
2810 leave:
2811 snr_update_srv_status(s);
2812 return 1;
2813}
2814
2815/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02002816 * Local variables:
2817 * c-indent-level: 8
2818 * c-basic-offset: 8
2819 * End:
2820 */